@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #364958;
  --red: #98473E;
  --paper: #FFFFFF;
  --peach: #65AFFF;
  --navy: #364958;
  --gold: #A37C40;
  --gold-14: rgba(163, 124, 64, 0.14);
  --ink-08: rgba(54, 73, 88, 0.08);
  --ink-14: rgba(54, 73, 88, 0.14);
  --ink-22: rgba(54, 73, 88, 0.22);
  --navy-06: rgba(54, 73, 88, 0.06);
  --navy-10: rgba(54, 73, 88, 0.10);
  --navy-18: rgba(54, 73, 88, 0.18);
  --paper-08: rgba(255, 255, 255, 0.08);
  --paper-12: rgba(255, 255, 255, 0.12);
  --paper-76: rgba(255, 255, 255, 0.76);
  --peach-34: rgba(101, 175, 255, 0.34);
  --red-10: rgba(152, 71, 62, 0.10);
  --red-18: rgba(152, 71, 62, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 80px rgba(54, 73, 88, 0.10);
  --max: 1220px;
  --serif: "Barlow", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Barlow", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--peach); color: var(--navy); }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 14px; border-radius: 999px;
  background: var(--paper); color: var(--navy); border: 1px solid var(--navy);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper-76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--navy-10);
}
.header-inner {
  width: min(calc(100% - 32px), var(--max)); margin: 0 auto;
  min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { color: var(--navy); font-size: .95rem; letter-spacing: -.01em; }
.brand-copy span { margin-top: 4px; color: var(--ink); font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; opacity: .72; }
.nav-wrap { display: flex; align-items: center; gap: 12px; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { text-decoration: none; padding: 10px 11px; border-radius: 999px; color: var(--navy); font-size: .9rem; font-weight: 650; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--navy-06); }
.nav-toggle { display: none; border: 1px solid var(--navy-18); background: var(--paper); color: var(--navy); width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 18px; height: 1.5px; background: currentColor; }
.nav-toggle::before { transform: translateY(-5px); }
.nav-toggle::after { transform: translateY(4px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 0 18px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; font-weight: 750; font-size: .9rem; letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: var(--paper); box-shadow: 0 10px 26px var(--navy-18); }
.btn-primary:hover { box-shadow: 0 14px 34px var(--navy-18); }
.btn-secondary { background: transparent; border-color: var(--navy-18); color: var(--navy); }
.btn-red { background: var(--red); color: var(--paper); box-shadow: 0 10px 26px var(--red-18); }
.btn-light { background: var(--paper); color: var(--navy); }
.btn-small { min-height: 40px; padding: 0 15px; font-size: .82rem; }

main { overflow: clip; }
.section { padding: clamp(78px, 9vw, 132px) 0; }
.section-tight { padding: clamp(54px, 6vw, 84px) 0; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid; align-items: center;
  background:
    linear-gradient(var(--navy-06) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-06) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}
.hero::after {
  content: ""; position: absolute; width: min(46vw, 620px); aspect-ratio: 1; right: -12vw; top: 4vh;
  border-radius: 50%; background: var(--peach-34); filter: blur(2px); z-index: 0;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(48px, 7vw, 104px); align-items: center; padding: 68px 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .17em; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.hero h1, .page-hero h1 {
  margin: 20px 0 24px; max-width: 12ch;
  font-family: var(--serif); color: var(--navy); font-weight: 500;
  font-size: clamp(3.6rem, 8vw, 7.9rem); line-height: .9; letter-spacing: -.058em;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero .lead, .page-hero .lead { max-width: 700px; font-size: clamp(1.06rem, 2vw, 1.28rem); line-height: 1.6; color: var(--ink); opacity: .86; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-meta { margin-top: 58px; display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: .8rem; color: var(--navy); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.logo-stage {
  position: relative; min-height: 600px; display: grid; place-items: center;
}
.logo-stage::before, .logo-stage::after { content: ""; position: absolute; border: 1px solid var(--navy-18); border-radius: 50%; }
.logo-stage::before { inset: 8%; }
.logo-stage::after { inset: 18%; }
.logo-card {
  position: relative; z-index: 2; width: min(100%, 500px); aspect-ratio: 1 / 1;
  display: grid; place-items: center; padding: 38px;
  background: var(--paper); border: 1px solid var(--navy-18); border-radius: 42px;
  box-shadow: var(--shadow);
}
.logo-card img { width: 88%; filter: drop-shadow(0 18px 34px var(--navy-10)); }
.logo-card .corner { position: absolute; font-size: .64rem; text-transform: uppercase; letter-spacing: .14em; color: var(--navy); opacity: .62; }
.logo-card .corner.tl { top: 18px; left: 20px; }
.logo-card .corner.br { right: 20px; bottom: 18px; text-align: right; }

.kicker-row { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 46px; }
.section-title { margin: 8px 0 0; font-family: var(--serif); font-weight: 500; color: var(--navy); font-size: clamp(2.5rem, 5vw, 5.3rem); line-height: .98; letter-spacing: -.045em; max-width: 12ch; }
.section-note { max-width: 430px; font-size: .98rem; opacity: .78; }

.band-dark { background: var(--navy); color: var(--paper); }
.band-dark .section-title, .band-dark .eyebrow { color: var(--paper); }
.band-dark .eyebrow::before { background: var(--gold); }
.band-dark .eyebrow { color: var(--gold); }
.band-dark .section-note { color: var(--paper); opacity: .72; }
.band-peach { background: var(--peach); }

.discipline-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--paper-12); border-left: 1px solid var(--paper-12); }
.discipline {
  min-height: 340px; padding: 30px; display: flex; flex-direction: column;
  border-right: 1px solid var(--paper-12); border-bottom: 1px solid var(--paper-12);
  background: transparent; text-decoration: none; color: var(--paper); position: relative; overflow: hidden;
}
.discipline::after { content: "↗"; position: absolute; right: 26px; top: 24px; font-size: 1.2rem; color: var(--gold); transition: transform .2s ease; }
.discipline:hover::after { transform: translate(3px,-3px); }
.discipline-index { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.discipline h3 { margin: auto 0 10px; font-family: var(--serif); font-weight: 500; font-size: 2rem; line-height: 1.05; }
.discipline p { margin: 0; font-size: .92rem; color: var(--paper); opacity: .72; }

.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.work-card { position: relative; padding: clamp(26px, 3vw, 38px); min-height: 410px; border: 1px solid var(--navy-18); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 10px 36px var(--navy-06); overflow: hidden; display: flex; flex-direction: column; }
.work-card.large { grid-column: span 7; min-height: 520px; }
.work-card.medium { grid-column: span 5; min-height: 520px; }
.work-card.third { grid-column: span 4; min-height: 430px; }
.work-card .tag, .status-chip { display: inline-flex; align-items: center; width: fit-content; min-height: 30px; padding: 0 10px; border-radius: 999px; border: 1px solid var(--navy-18); color: var(--navy); font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; background: var(--paper); }
.status-chip.live { background: var(--red); color: var(--paper); border-color: var(--red); }
.work-card h3 { margin: auto 0 12px; font-family: var(--serif); font-weight: 500; color: var(--navy); font-size: clamp(2.1rem, 4vw, 4.1rem); line-height: .98; letter-spacing: -.04em; max-width: 11ch; }
.work-card p { max-width: 58ch; margin: 0; opacity: .78; }
.work-card .card-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-weight: 800; text-decoration: none; font-size: .9rem; }
.work-card .card-link::after { content: "→"; }
.work-card .visual-word { position: absolute; right: -16px; top: 52px; color: var(--navy-06); font-family: var(--serif); font-size: clamp(5rem, 12vw, 10rem); line-height: .8; letter-spacing: -.08em; pointer-events: none; }
.work-card.featured { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.work-card.featured h3 { color: var(--paper); }
.work-card.featured .visual-word { color: var(--paper-08); }
.work-card.featured .card-link { color: var(--peach); }
.work-card.featured .tag { color: var(--paper); border-color: var(--paper-12); background: transparent; }

.statement { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.statement .quote { margin: 0; font-family: var(--serif); color: var(--navy); font-size: clamp(2.4rem, 5.3vw, 5.4rem); line-height: 1.02; letter-spacing: -.045em; }
.statement-copy { border-top: 1px solid var(--navy-18); padding-top: 26px; }
.statement-copy p { margin: 0 0 20px; max-width: 62ch; font-size: 1.02rem; opacity: .82; }

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--navy-18); border-left: 1px solid var(--navy-18); }
.process-step { min-height: 270px; padding: 28px; border-right: 1px solid var(--navy-18); border-bottom: 1px solid var(--navy-18); }
.process-step .num { color: var(--red); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.process-step h3 { margin: 74px 0 10px; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; color: var(--navy); }
.process-step p { margin: 0; font-size: .9rem; opacity: .72; }

.cta-panel { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 470px; background: var(--navy); color: var(--paper); border-radius: 34px; overflow: hidden; }
.cta-copy { padding: clamp(36px, 6vw, 74px); display: flex; flex-direction: column; justify-content: center; }
.cta-copy h2 { margin: 0 0 18px; font-family: var(--serif); font-weight: 500; font-size: clamp(3rem, 6vw, 6rem); line-height: .95; letter-spacing: -.05em; max-width: 9ch; }
.cta-copy p { max-width: 54ch; color: var(--paper); opacity: .75; }
.cta-copy .hero-actions { margin-top: 26px; }
.cta-mark { display: grid; place-items: center; background: var(--peach); min-height: 360px; padding: 34px; }
.cta-mark img { width: min(88%, 390px); }

.page-hero { position: relative; padding: clamp(92px, 12vw, 164px) 0 clamp(72px, 9vw, 118px); border-bottom: 1px solid var(--navy-10); background: var(--paper); }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(46px, 8vw, 120px); align-items: end; }
.page-hero h1 { max-width: 11ch; font-size: clamp(4rem, 8vw, 8.2rem); margin-bottom: 0; }
.page-hero .lead { margin: 0 0 10px; }
.page-hero .meta-box { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { padding: 30px; min-height: 320px; border: 1px solid var(--navy-18); border-radius: var(--radius-md); background: var(--paper); }
.service-card h3 { margin: 70px 0 12px; font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--navy); }
.service-card p { margin: 0; opacity: .76; }
.service-card .mini { color: var(--red); text-transform: uppercase; letter-spacing: .13em; font-size: .68rem; font-weight: 800; }

.detail-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 7vw, 90px); align-items: start; }
.detail-split .sticky { position: sticky; top: 114px; }
.detail-split h2 { margin: 8px 0 0; font-family: var(--serif); font-weight: 500; color: var(--navy); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 1; letter-spacing: -.045em; }
.detail-list { border-top: 1px solid var(--navy-18); }
.detail-item { padding: 28px 0; border-bottom: 1px solid var(--navy-18); }
.detail-item h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.04rem; }
.detail-item p { margin: 0; opacity: .74; }

.product-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; }
.product-poster { min-height: 560px; padding: 34px; border-radius: var(--radius-lg); background: var(--navy); color: var(--paper); display: flex; flex-direction: column; overflow: hidden; position: relative; }
.product-poster .super { position: absolute; right: -20px; top: 34px; font-family: var(--serif); color: var(--paper-08); font-size: 9rem; line-height: .8; transform: rotate(-7deg); }
.product-poster h2 { margin: auto 0 14px; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); line-height: .9; font-weight: 500; }
.product-poster p { margin: 0; max-width: 42ch; color: var(--paper); opacity: .72; }
.product-info { min-height: 560px; border: 1px solid var(--navy-18); border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 56px); display: flex; flex-direction: column; }
.product-info .badge-row { display: flex; flex-wrap: wrap; gap: 8px; }
.product-info h3 { margin: auto 0 12px; font-family: var(--serif); color: var(--navy); font-size: clamp(2.6rem, 5vw, 5rem); line-height: .95; font-weight: 500; letter-spacing: -.04em; }
.product-info p { max-width: 62ch; opacity: .78; }

.app-list { display: grid; gap: 14px; }
.app-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 22px; align-items: center; padding: 22px; border: 1px solid var(--navy-18); border-radius: var(--radius-md); }
.app-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--navy); color: var(--paper); font-family: var(--serif); font-size: 1.3rem; }
.app-row h3 { margin: 0 0 3px; color: var(--navy); font-size: 1.05rem; }
.app-row p { margin: 0; font-size: .88rem; opacity: .72; }

.contact-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(38px, 7vw, 84px); align-items: start; }
.contact-intro h2 { margin: 8px 0 18px; font-family: var(--serif); font-weight: 500; color: var(--navy); font-size: clamp(2.8rem, 5vw, 5.4rem); line-height: .95; letter-spacing: -.045em; }
.contact-intro p { max-width: 50ch; opacity: .78; }
.form-card { border: 1px solid var(--navy-18); border-radius: var(--radius-lg); padding: clamp(26px, 5vw, 48px); box-shadow: 0 20px 60px var(--navy-06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .78rem; font-weight: 780; letter-spacing: .03em; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; border: 1px solid var(--navy-18); border-radius: 12px; background: var(--paper); color: var(--ink); padding: 12px 14px; outline: none; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px var(--navy-06); }
.form-actions { margin-top: 22px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: .78rem; opacity: .62; max-width: 48ch; }
.honeypot { position: absolute !important; left: -9999px !important; }

.footer { border-top: 1px solid var(--navy-10); padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 42px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 54px; height: 54px; }
.footer-brand strong { display: block; color: var(--navy); }
.footer-brand span { display: block; margin-top: 3px; font-size: .78rem; opacity: .62; }
.footer h3 { margin: 0 0 12px; color: var(--navy); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.footer a { display: block; width: fit-content; text-decoration: none; margin: 7px 0; font-size: .9rem; opacity: .78; }
.footer a:hover { color: var(--red); opacity: 1; }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--navy-10); display: flex; justify-content: space-between; gap: 20px; font-size: .76rem; opacity: .64; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; flex-direction: column; }
  .site-nav { display: none; position: absolute; top: 76px; left: 16px; right: 16px; padding: 12px; background: var(--paper); border: 1px solid var(--navy-18); border-radius: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .nav-wrap > .btn { display: none; }
  .hero-grid, .page-hero-grid, .statement, .detail-split, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero h1 { max-width: 10ch; }
  .logo-stage { min-height: 520px; }
  .kicker-row { align-items: start; flex-direction: column; }
  .discipline-grid { grid-template-columns: repeat(2,1fr); }
  .work-card.large, .work-card.medium { grid-column: span 6; }
  .work-card.third { grid-column: span 6; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-mark { min-height: 320px; }
  .detail-split .sticky { position: static; }
  .product-feature { grid-template-columns: 1fr; }
  .product-poster, .product-info { min-height: 480px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { width: min(calc(100% - 24px), var(--max)); min-height: 68px; }
  .brand img { width: 38px; height: 38px; }
  .brand-copy span { display: none; }
  .site-nav { top: 68px; }
  .hero-grid { grid-template-columns: 1fr; padding: 52px 0 70px; gap: 28px; }
  .hero h1, .page-hero h1 { font-size: clamp(3.25rem, 17vw, 5.7rem); }
  .hero .lead { font-size: 1rem; }
  .hero-meta { margin-top: 40px; display: grid; }
  .logo-stage { min-height: auto; padding: 20px 0 4px; }
  .logo-card { border-radius: 26px; padding: 24px; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline { min-height: 250px; }
  .work-grid { display: grid; grid-template-columns: 1fr; }
  .work-card.large, .work-card.medium, .work-card.third { grid-column: auto; min-height: 390px; }
  .work-card .visual-word { font-size: 7rem; }
  .process-grid, .service-grid { grid-template-columns: 1fr; }
  .cta-panel { border-radius: 24px; }
  .page-hero { padding-top: 72px; }
  .product-poster, .product-info { min-height: 430px; }
  .app-row { grid-template-columns: 58px 1fr; }
  .app-row .status-chip { grid-column: 2; justify-self: start; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
