:root {
  --white: #FFFFFF;
  --wash: #F5F5F1;
  --ink: #0B1220;
  --text: #1A1F2E;
  --muted: #566274;
  --hair: #E4E4DE;
  --hair-strong: #C7C7BE;

  /* accent palette — used with restraint */
  --brand: #1E40AF;         /* deep confident blue */
  --brand-soft: #DDE6FF;
  --accent: #F97316;        /* warm orange — one place only */
  --accent-soft: #FFE4CF;
  --green: #16A34A;

  --font: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --max: 1240px;
  --radius: 6px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv11", "ss01", "tnum";
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─────────────  nav  ───────────── */
.nav {
  border-bottom: 1px solid var(--hair);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.nav__mark {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.nav__mark-mono {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  background: var(--ink);
  letter-spacing: -0.01em;
  padding: 5px 9px;
  border-radius: var(--radius);
}
.nav__mark-name {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  transition: color 140ms ease;
}
.nav__links a:hover { color: var(--brand); }

.dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

/* ─────────────  hero  ───────────── */
.hero {
  background:
    radial-gradient(1200px 500px at 90% -10%, var(--brand-soft), transparent 65%),
    radial-gradient(900px 400px at -10% 110%, var(--accent-soft), transparent 60%),
    var(--white);
  border-bottom: 1px solid var(--hair);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) var(--gutter) clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__copy { min-width: 0; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 28px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-weight: 400;
}

.hero__title {
  font-weight: 500;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 18ch;
  text-wrap: balance;
}
.hero__title-em {
  color: var(--brand);
  font-weight: 500;
}

.hero__lede {
  font-size: clamp(16.5px, 1.35vw, 18.5px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 40px;
}

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--primary:hover {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 24px -12px rgba(30, 64, 175, 0.55);
}
.btn--primary span:last-child {
  transition: transform 180ms ease;
}
.btn--primary:hover span:last-child { transform: translateX(4px); }
.btn--ghost {
  background: var(--white);
  color: var(--text);
  border-color: var(--hair-strong);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

/* hero image */
.hero__figure {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(11, 18, 32, 0.35),
    0 10px 30px -15px rgba(11, 18, 32, 0.2);
}
.hero__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.hero__figure:hover img { transform: scale(1.03); }
.hero__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.hero__badge span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
}
.hero__badge span:first-child::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
}

/* hero band */
.hero__band {
  border-top: 1px solid var(--hair);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
.hero__band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__band-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
  margin-right: 8px;
}
.hero__band-pill {
  font-size: 13px;
  color: var(--text);
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: 999px;
}

/* ─────────────  section  ───────────── */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) var(--gutter);
  border-bottom: 1px solid var(--hair);
}
.section--wash {
  background: var(--wash);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid var(--hair);
}
.section--wash > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section--dark {
  background: var(--ink);
  color: var(--white);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  border-bottom: 0;
}
.section--dark > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section__head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: baseline;
}
.section__num {
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  padding-top: 6px;
}
.section__head--light .section__num { color: rgba(255,255,255,0.5); }
.section__head--light .section__title { color: var(--white); }
.section__head--light .section__sub { color: rgba(255,255,255,0.7); }

.section__title {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 14px;
  max-width: 22ch;
  text-wrap: balance;
}
.section__sub {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0;
  max-width: 640px;
}

/* ─────────────  services (image cards)  ───────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--hair-strong);
  box-shadow:
    0 24px 40px -24px rgba(11, 18, 32, 0.18),
    0 8px 16px -8px rgba(11, 18, 32, 0.08);
}
.svc-card__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--wash);
}
.svc-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__body { padding: 24px 24px 28px; }
.svc-card__ord {
  font-size: 12px;
  color: var(--brand);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.svc-card__title {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 12px;
}
.svc-card__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
}
.svc-card__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-card__tags li {
  font-size: 12px;
  color: var(--text);
  padding: 4px 10px;
  background: var(--wash);
  border-radius: 999px;
}

/* ─────────────  work / plate grid  ───────────── */
.plate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.plate-grid__lead {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 11;
}
.plate-grid__lead img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.plate-grid__lead:hover img { transform: scale(1.03); }
.plate-grid__lead figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text);
}
.plate-grid__cap-num {
  font-weight: 600;
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}
.plate-grid__cap-text { color: var(--text); }

.plate-grid__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.plate-grid__thumb {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.plate-grid__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.plate-grid__thumb:hover img { transform: scale(1.05); }
.plate-grid__thumb figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.stat {
  padding: 32px 20px 8px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-bottom: 12px;
}
.stat:nth-child(1) .stat__num { color: var(--accent); }
.stat:nth-child(2) .stat__num { color: #93B5FF; }
.stat:nth-child(3) .stat__num { color: #4ADE80; }
.stat:nth-child(4) .stat__num { color: var(--white); }
.stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.02em;
}

/* ─────────────  why  ───────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why {
  padding: 32px 28px 36px;
  background: var(--white);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, box-shadow 220ms ease;
  position: relative;
}
.why:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -24px rgba(11, 18, 32, 0.14);
}
.why__mark {
  font-size: 15px;
  font-weight: 600;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.why__mark--a { background: var(--brand-soft); color: var(--brand); }
.why__mark--b { background: var(--accent-soft); color: var(--accent); }
.why__mark--c { background: #DCFCE7; color: var(--green); }

.why__title {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 12px;
}
.why__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ─────────────  statement card  ───────────── */
.statement-section { border-bottom: 0; }
.statement-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.statement-card__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}
.statement-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 18, 32, 0.85) 0%,
    rgba(11, 18, 32, 0.55) 50%,
    rgba(11, 18, 32, 0.2) 100%
  );
  z-index: 0;
}
.statement-card__body {
  position: relative;
  z-index: 1;
  padding: 48px clamp(28px, 5vw, 56px) 44px;
  max-width: 900px;
  color: var(--white);
}
.statement-card__text {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.32;
  letter-spacing: -0.018em;
  color: var(--white);
  font-weight: 400;
  margin: 0 0 24px;
  text-wrap: balance;
}
.statement-card__text em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}
.statement-card__attr {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.statement-card__rule {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

/* ─────────────  foot  ───────────── */
.foot {
  padding: 28px var(--gutter);
  border-top: 1px solid var(--hair);
}
.foot__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

/* ─────────────  responsive  ───────────── */
@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.14); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
  .plate-grid { grid-template-columns: 1fr; }
  .plate-grid__side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .plate-grid__thumb { aspect-ratio: 4 / 3; }
}
@media (max-width: 780px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__figure { aspect-ratio: 5 / 4; }
  .nav__mark-name { display: none; }
  .nav__links { gap: 18px; }
  .svc-grid, .why-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section__head { grid-template-columns: 1fr; gap: 10px; }
  .section__num { padding-top: 0; }
  .plate-grid__side { grid-template-columns: 1fr; }
  .foot__inner { flex-direction: column; }
}

a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
