:root {
  --ink: #0a2738;
  --ink-2: #173d51;
  --paper: #f4f1e9;
  --paper-2: #ebe7dd;
  --white: #fffdf8;
  --sky: #a8c3cf;
  --line: rgba(10, 39, 56, 0.18);
  --muted: #5f6f76;
  --accent: #b1744d;
  --max: 1240px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, 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);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: clamp(4.8rem, 8vw, 8.5rem) 0; }
.section-sm { padding: clamp(3rem, 5vw, 5rem) 0; }
.rule { border-top: 1px solid var(--line); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.25rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 38px; height: 1px; background: currentColor; }
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
}
.h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 6vw, 6rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}
.h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
  font-weight: 400;
  line-height: 1.12;
}
.lead { max-width: 740px; font-size: clamp(1.1rem, 1.65vw, 1.35rem); color: var(--ink-2); }
.muted { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: .65rem; border-bottom: 1px solid currentColor; padding-bottom: .18rem; font-weight: 650; }
.text-link::after { content: '↗'; font-size: .9em; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.2rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: .22s ease;
}
.btn:hover, .btn:focus-visible { background: transparent; color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover, .btn-outline:focus-visible { background: var(--ink); color: var(--white); }
.btn-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.btn-light:hover, .btn-light:focus-visible { background: transparent; color: var(--white); }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 241, 233, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.scrolled { border-color: var(--line); }
.header-inner { min-height: 90px; display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 2rem; }
.brand img { width: 220px; }
.nav { justify-self: end; display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.4rem); }
.nav a { font-size: .79rem; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; position: relative; }
.nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--ink); transition: right .2s ease; }
.nav a:hover::after, .nav a[aria-current='page']::after { right: 0; }
.header-cta { margin-left: .25rem; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--ink); background: transparent; align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 20px; height: 1px; background: var(--ink); position: relative; transition: .2s; }
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.hero { min-height: calc(100vh - 90px); display: grid; align-items: stretch; border-bottom: 1px solid var(--line); }
.hero-grid { width: min(100%, 1600px); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(390px, .8fr); }
.hero-copy { padding: clamp(4rem, 7vw, 8rem) clamp(2rem, 6vw, 6rem); padding-left: min(180px, max(20px, calc((100vw - var(--max)) / 2))); display: flex; flex-direction: column; justify-content: center; }
.hero-copy .display { max-width: 900px; }
.hero-copy .lead { margin: 2rem 0 0; max-width: 710px; }
.hero-media { position: relative; min-height: 680px; overflow: hidden; background: var(--ink); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.04); }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,39,56,.03), rgba(10,39,56,.46)); }
.hero-note { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; left: 2rem; display: flex; justify-content: space-between; align-items: end; color: white; border-top: 1px solid rgba(255,255,255,.52); padding-top: 1rem; font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }

.statement { background: var(--ink); color: var(--white); }
.statement-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.statement .lead { color: rgba(255,255,255,.78); }

.path-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-top: 3.2rem; }
.path-card { min-height: 350px; padding: 2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; transition: background .2s ease, color .2s ease; }
.path-card:hover { background: var(--ink); color: var(--white); }
.path-card .num { font-family: var(--serif); font-size: 1.25rem; margin-bottom: auto; }
.path-card p { color: var(--muted); transition: color .2s; }
.path-card:hover p { color: rgba(255,255,255,.72); }
.path-card .arrow { margin-top: 2rem; font-size: 1.4rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.split-image { min-height: 600px; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { padding: clamp(4rem, 8vw, 8rem); display: flex; flex-direction: column; justify-content: center; }
.split-copy p { max-width: 640px; }
.split-dark { background: var(--ink); color: var(--paper); }
.split-dark .eyebrow { color: var(--sky); }
.split-dark .eyebrow::before { background: var(--sky); }
.split-dark .h2 { color: var(--paper); }
.split-dark .lead { color: rgba(244, 241, 233, 0.88); }
.split-dark .muted { color: rgba(244, 241, 233, 0.68); }
.split-dark .text-link { color: var(--paper); }

.section-dark { background: var(--ink); color: var(--paper); }
.section-dark .eyebrow { color: var(--sky); }
.section-dark .eyebrow::before { background: var(--sky); }
.section-dark .h2 { color: var(--paper); }
.section-dark .lead { color: var(--paper); }
.section-dark .muted { color: rgba(244, 241, 233, 0.75); }
.section-dark .service-card { background: var(--paper); color: var(--ink); border-color: rgba(255, 255, 255, 0.15); }
.section-dark .service-card .eyebrow { color: var(--ink-2); }
.section-dark .service-card .eyebrow::before { background: var(--ink-2); }
.section-dark .service-card .h3 { color: var(--ink); }
.section-dark .service-card p { color: var(--muted); }

.section-dark .insight .card-front,
.section-dark .insight .card-back { background: var(--paper); color: var(--ink); }
.section-dark .insight .meta { color: var(--ink-2); }
.section-dark .insight .card-front .h3,
.section-dark .insight .back-title { color: var(--ink); }
.section-dark .insight p,
.section-dark .insight .back-scroll p { color: var(--muted); }
.section-dark .insight .card-front .text-link { color: var(--ink); }
.section-dark .insight .back-actions { border-top-color: rgba(7, 29, 41, 0.15); }
.section-dark .insight .back-actions .btn-action { color: var(--ink); }
.section-dark .insight .back-actions .btn-close { color: var(--muted); }
.section-dark .insight .back-actions .btn-close:hover { color: var(--ink); }

.numbered-list { margin-top: 3.5rem; border-top: 1px solid var(--line); }
.numbered-item { display: grid; grid-template-columns: 80px 1fr 1.05fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.numbered-item .num { font-family: var(--serif); font-size: 1.6rem; }
.numbered-item p { margin: .15rem 0 0; color: var(--muted); }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--line); margin-top: 3rem; border: 1px solid var(--line); }
.proof { background: var(--paper); padding: clamp(2rem, 4vw, 4rem); min-height: 310px; }
.proof p { color: var(--muted); }

.quote { padding: clamp(5rem, 10vw, 10rem) 0; background: var(--paper-2); }
.quote blockquote { margin: 0; max-width: 1000px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); line-height: 1.1; letter-spacing: -.025em; }
.quote cite { display: block; margin-top: 2rem; font-style: normal; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.cta-band { background: var(--ink); color: white; }
.cta-grid { min-height: 450px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 3rem; align-items: center; }
.cta-grid p { color: rgba(255,255,255,.72); max-width: 620px; }
.cta-actions { justify-self: end; }

.page-hero { padding: clamp(5rem, 10vw, 10rem) 0 clamp(4rem, 7vw, 7rem); border-bottom: 1px solid var(--line); }
.page-hero-dark { background: var(--ink); color: var(--paper); border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.page-hero-dark .eyebrow { color: var(--sky); }
.page-hero-dark .eyebrow::before { background: var(--sky); }
.page-hero-dark .h1 { color: var(--paper); }
.page-hero-dark .lead { color: var(--paper); }
.page-hero-dark .about-hero-icon { mix-blend-mode: lighten; filter: none; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: start; }
.page-hero p { margin-bottom: 0; }
.about-hero-icon { width: 100%; max-width: 520px; height: auto; margin-top: -2.75rem; margin-bottom: 0.25rem; display: block; object-fit: contain; mix-blend-mode: multiply; }
.about-lead { font-size: clamp(1.25rem, 1.9vw, 1.55rem); font-weight: 600; color: var(--paper); line-height: 1.4; }
.page-image { margin-top: 4rem; height: min(30vw, 360px); overflow: hidden; }
.page-image img { width: 100%; height: 100%; object-fit: cover; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(2.2rem, 3.5vw, 3.2rem) clamp(1.8rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
}
.service-card .eyebrow {
  margin-bottom: 1.25rem;
  font-size: .72rem;
  letter-spacing: .14em;
}
.service-card .h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.service-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}
.service-card ul li {
  margin-bottom: 0.4rem;
}
.service-card ul li:last-child {
  margin-bottom: 0;
}

.service-index {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.side-nav {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.side-nav a {
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  align-self: flex-start;
  transition: color .2s ease;
}
.side-nav a:hover, .side-nav a.active {
  color: var(--ink);
}
.side-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--ink);
  transition: right .2s ease;
}
.side-nav a:hover::after, .side-nav a.active::after {
  right: 0;
}

.service-block {
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.service-block:first-of-type {
  padding-top: 0;
}
.service-block:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.service-head {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
  align-items: start;
}
.service-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--sky);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 2rem;
}
.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-2);
  border: 1px solid var(--line);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  background-color: var(--paper-2);
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}
.tag:hover {
  background-color: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Market Entry Accordion */
.market-entry-accordion {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0.5rem;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s ease, padding-left 0.2s ease;
}
.accordion-trigger:hover {
  background-color: rgba(7, 29, 41, 0.03);
  padding-left: 0.75rem;
}
.accordion-trigger .icon {
  font-family: var(--sans);
  font-size: 1.2rem;
  color: var(--sky);
  transition: transform 0.25s ease;
}
.accordion-trigger[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.accordion-panel p {
  padding: 0 0.5rem 1.25rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}


.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.two-col ul {
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.two-col ul li {
  margin-bottom: 0.45rem;
}

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-step { padding: 2rem; min-height: 400px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step .num { font-family: var(--serif); font-size: 3rem; color: var(--sky); }
.process-step p { color: var(--muted); }

.team-feature { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.team-feature img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.team-list { display: flex; flex-direction: column; gap: clamp(5rem, 9vw, 9rem); margin-top: 5rem; }
.team-member { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.team-member img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.team-member h3 { margin: 0 0 1.5rem; font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.1; letter-spacing: -.03em; }
@media (min-width: 1001px) {
  .team-member:nth-child(even) { grid-template-columns: 1.15fr .85fr; }
  .team-member:nth-child(even) img { order: 2; }
  .team-member:nth-child(odd).no-photo > div,
  .team-member:nth-child(odd):not(:has(img)) > div { grid-column: 2; }
  .team-member:nth-child(even).no-photo > div,
  .team-member:nth-child(even):not(:has(img)) > div { grid-column: 1; }
}


.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.12); border: 1px solid var(--ink); margin-top: 3rem; }
.insight {
  perspective: 1000px;
  background: transparent;
  padding: 0;
  border: none;
  min-height: 430px;
  cursor: pointer;
  outline: none;
  text-align: left;
}
.insight .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.insight.flipped .card-inner {
  transform: rotateY(180deg);
}
.insight:focus-visible .card-inner {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}
.insight .card-front, .insight .card-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  color: var(--paper);
}
.insight .card-front {
  background: var(--ink);
}
.insight .card-back {
  background: #071d29;
  transform: rotateY(180deg);
}
.insight .meta { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--sky); }
.insight .card-front .h3 {
  font-size: clamp(1.25rem, 1.75vw, 1.65rem);
  line-height: 1.18;
  margin: 1.25rem 0 0.75rem;
  color: var(--paper);
}
.insight p { color: rgba(244, 241, 233, 0.85); font-size: 0.9rem; line-height: 1.5; margin: 0 0 1rem; }
.insight .card-front .text-link { margin-top: auto; align-self: flex-start; color: var(--paper); }

.insight .back-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 1.5rem 0 1rem;
  line-height: 1.25;
  color: var(--paper);
}
.insight .back-scroll {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 1rem;
  padding-right: 8px;
}
.insight .back-scroll::-webkit-scrollbar {
  width: 4px;
}
.insight .back-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.insight .back-scroll::-webkit-scrollbar-thumb {
  background: var(--sky);
}
.insight .back-scroll p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0 0 0.8rem;
  color: rgba(244, 241, 233, 0.85);
}
.insight .back-scroll p:last-child {
  margin-bottom: 0;
}
.insight .back-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(244, 241, 233, 0.2);
  padding-top: 1rem;
}
.insight .back-actions .btn-action {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
.insight .back-actions .btn-action:hover {
  text-decoration: underline;
}
.insight .back-actions .btn-close {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244, 241, 233, 0.7);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.insight .back-actions .btn-close::before {
  content: '←';
  font-size: 0.9rem;
}
.insight .back-actions .btn-close:hover {
  color: var(--paper);
}

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.office-list { border-top: 1px solid var(--line); }
.office { padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.office h3 { margin: 0 0 .5rem; font-family: var(--serif); font-weight: 400; font-size: 1.55rem; }
.office p { margin: .2rem 0; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .72rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); background: rgba(255,255,255,.38); color: var(--ink); padding: .95rem; border-radius: 0; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .78rem; color: var(--muted); }
.form-status { min-height: 1.5rem; margin-top: 1rem; font-weight: 650; }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { width: 100%; border: 0; background: transparent; color: var(--ink); display: grid; grid-template-columns: 1fr auto; gap: 2rem; text-align: left; padding: 1.5rem 0; font-family: var(--serif); font-size: 1.4rem; }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-panel p { max-width: 760px; margin: 0 0 1.8rem; color: var(--muted); }
.faq-button span:last-child { font-family: var(--sans); transition: transform .2s; }
.faq-button[aria-expanded='true'] span:last-child { transform: rotate(45deg); }

.site-footer { background: #071d29; color: rgba(255,255,255,.86); }
.footer-main { padding: 5rem 0 3rem; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 4rem; }
.footer-brand img { content: url("../img/logo-white.png"); width: 230px; opacity: .92; }
.footer-brand p { max-width: 440px; color: rgba(255,255,255,.62); }
.footer-title { font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.footer-links { display: grid; gap: .55rem; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 1.5rem 0; display: flex; justify-content: space-between; gap: 2rem; font-size: .73rem; color: rgba(255,255,255,.52); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }

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

@media (max-width: 1000px) {
  .header-inner { grid-template-columns: 1fr auto; min-height: 76px; }
  .brand img { width: 190px; }
  .menu-toggle { display: flex; }
  .nav { position: fixed; top: 76px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 1.5rem 20px 2rem; display: none; flex-direction: column; align-items: flex-start; gap: 1.3rem; }
  .nav.open { display: flex; }
  .header-cta { margin-left: 0; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 5rem 20px; }
  .hero-media { min-height: 520px; }
  .statement-grid, .page-hero-grid, .contact-grid, .team-feature, .two-col { grid-template-columns: 1fr; }
  .path-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .side-nav { position: static; display: flex; gap: .8rem; overflow-x: auto; padding-bottom: 1rem; }
  .side-nav a { white-space: nowrap; border: 1px solid var(--line); padding: .65rem .85rem; }
  .split { grid-template-columns: 1fr; }
  .split-copy { order: -1; }
  .proof-grid, .insights-grid { grid-template-columns: 1fr 1fr; }
  .team-list { gap: clamp(3rem, 6vw, 4.5rem); margin-top: 3rem; }
  .team-member { grid-template-columns: 1fr; gap: 1.75rem; }
  .team-member.no-photo > div,
  .team-member:not(:has(img)) > div { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-grid { grid-template-columns: 1fr; padding: 5rem 0; }
  .cta-actions { justify-self: start; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .path-grid, .process-grid, .proof-grid, .insights-grid, .team-cards, .service-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-inline: 14px; }
  .hero-media { min-height: 440px; }
  .hero-note { left: 1rem; right: 1rem; bottom: 1rem; flex-direction: column; align-items: flex-start; gap: .3rem; }
  .numbered-item { grid-template-columns: 52px 1fr; }
  .numbered-item p { grid-column: 2; }
  .split-copy { padding: 4rem 20px; }
  .split-image { min-height: 450px; }
  .service-block .service-head { grid-template-columns: 48px 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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