/* =============================================================
   MarcaComarca — Editorial Light Cream (adapted: navy + terracotta)
   1. Tokens
   ============================================================= */
:root {
  --bg:        #F6F1E6;
  --bg-2:      #ECE1CB;
  --paper:     #FFFFFF;
  --ink:       #142A4D;
  --ink-soft:  #24406B;
  --ink-mute:  #5C6B82;
  --accent:    #C1592C;
  --accent-dark: #9C4720;
  --gold:      #AE8646;
  --line:      rgba(20, 42, 77, 0.14);
  --line-strong: rgba(20, 42, 77, 0.28);

  --navy-deep: #0E1E36;
  --navy-mid:  #16304F;
  --cream:     #F3ECDB;
  --cream-mute: rgba(243, 236, 219, 0.72);

  --serif: "Playfair Display", "Georgia", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container: 1220px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 600;
}
em { font-style: italic; color: var(--accent); }
::selection { background: var(--accent); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--ink); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { position: relative; padding-block: clamp(4.5rem, 9vw, 8rem); }
.section-dark { background: var(--navy-deep); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-alt { background: var(--bg-2); }

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
}
.kicker::before {
  content: ""; width: 26px; height: 1.5px; background: var(--accent); display: inline-block;
}
.section-dark .kicker { color: var(--gold); }
.section-dark .kicker::before { background: var(--gold); }

.eyebrow {
  font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-mute);
}

.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); max-width: 62ch; }
.section-dark .lead { color: var(--cream-mute); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; } /* defensive: never let split-text vanish */

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* =============================================================
   4. Buttons & links
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--cream); box-shadow: 0 10px 30px -12px rgba(193,89,44,.55); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 36px -12px rgba(193,89,44,.65); }
.btn-ghost { border: 1.5px solid var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(20,42,77,.05); transform: translateY(-2px); }
.section-dark .btn-ghost,
.hero .btn-ghost,
.bleed-section .btn-ghost { border-color: rgba(243,236,219,.45); color: var(--cream); }
.section-dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.bleed-section .btn-ghost:hover { border-color: var(--cream); background: rgba(243,236,219,.1); }

.link-underline {
  position: relative; font-weight: 700; color: inherit;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }
.link-underline.is-underlined { text-decoration: underline; text-underline-offset: 3px; }
.link-underline.is-underlined::after { display: none; }

/* =============================================================
   5. Header / Nav
   ============================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  padding-block: 1.15rem;
  background: linear-gradient(180deg, rgba(14,30,54,.5) 0%, transparent 100%);
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .3s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(246, 241, 230, 0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 8px 30px -20px rgba(20,42,77,.4);
  padding-block: .75rem;
  border-bottom-color: var(--line);
}
@supports not (backdrop-filter: blur(1px)) {
  .site-header.is-scrolled { background: rgba(246, 241, 230, 0.98); }
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.wordmark {
  font-family: var(--serif); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.01em;
  color: var(--cream);
  transition: color .4s var(--ease-out);
}
.wordmark span { color: var(--gold); transition: color .4s var(--ease-out); }
.site-header.is-scrolled .wordmark { color: var(--ink); }
.site-header.is-scrolled .wordmark span { color: var(--accent); }

.nav-main { display: none; align-items: center; gap: 2.1rem; }
.nav-main a { font-size: .92rem; font-weight: 600; color: var(--cream-mute); position: relative; transition: color .4s var(--ease-out); }
.nav-main a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease-out);
}
.nav-main a:hover { color: var(--cream); }
.nav-main a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header.is-scrolled .nav-main a { color: var(--ink-soft); }
.site-header.is-scrolled .nav-main a:hover { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: .9rem; }

.lang-toggle {
  display: flex; border: 1.5px solid rgba(243,236,219,.4); border-radius: 999px; overflow: hidden;
  transition: border-color .4s var(--ease-out);
}
.site-header.is-scrolled .lang-toggle { border-color: var(--line-strong); }
.lang-toggle button {
  padding: .4rem .8rem; font-size: .78rem; font-weight: 800; letter-spacing: .04em;
  color: var(--cream-mute); transition: background .3s var(--ease-out), color .3s var(--ease-out);
}
.site-header.is-scrolled .lang-toggle button { color: var(--ink-mute); }
.lang-toggle button.is-active { background: var(--cream); color: var(--ink); }
.site-header.is-scrolled .lang-toggle button.is-active { background: var(--ink); color: var(--cream); }

.nav-cta { display: none; }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px; padding: .5rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--cream); transition: transform .3s var(--ease-out), opacity .3s var(--ease-out), background .4s var(--ease-out); }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 480; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; gap: 1.6rem;
  padding: 6rem var(--gutter) 3rem;
  transform: translateY(-100%); transition: transform .45s var(--ease-out);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--ink); }
.mobile-nav .btn { align-self: flex-start; margin-top: 1rem; }

@media (min-width: 960px) {
  .nav-main { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: clip;
  padding-top: 6rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,30,54,.82) 0%, rgba(14,30,54,.55) 28%, rgba(14,30,54,.58) 55%, rgba(14,30,54,.95) 100%);
}
.hero-inner {
  position: relative; z-index: 1; width: 100%;
  padding-block: clamp(3rem, 8vw, 5.5rem);
  color: var(--cream);
}
.hero-eyebrow { color: var(--gold); margin-bottom: 1.4rem; }
.hero-title {
  font-size: clamp(3rem, 8.5vw, 6.4rem);
  line-height: .96;
  color: var(--cream);
  max-width: 14ch;
  margin-bottom: 1.4rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--cream-mute);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-scroll {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream-mute);
}
.hero-scroll .line { width: 40px; height: 1px; background: var(--cream-mute); position: relative; overflow: hidden; }
.hero-scroll .line::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: translateX(-100%); } 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll .line::after { animation: none; transform: translateX(0); } }

/* =============================================================
   7. Perception section
   ============================================================= */
.perception-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.perception-text h2 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 1.2rem; }
.perception-text .lead { margin-bottom: 1.1rem; }
.perception-text p.body { color: var(--ink-mute); max-width: 58ch; }

.perception-visual { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 70px -30px rgba(20,42,77,.35); }
.perception-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

.stat-band { display: grid; gap: 1.5rem; margin-top: 3.5rem; grid-template-columns: repeat(3, 1fr); }
.stat-card { border-top: 2px solid var(--line-strong); padding-top: 1.1rem; }
.stat-value {
  font-family: var(--serif); font-weight: 700; color: var(--accent);
  font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; margin-bottom: .5rem;
}
.stat-label { font-size: .88rem; color: var(--ink-mute); max-width: 22ch; }
.perception-cta { display: inline-block; margin-top: 2.4rem; font-size: 1.02rem; color: var(--ink-soft); }
.perception-cta .cta-link { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.stat-note { margin-top: 1rem; font-size: .78rem; color: var(--ink-mute); font-style: italic; }

@media (min-width: 960px) {
  .perception-grid { grid-template-columns: 1.1fr .9fr; }
}

/* =============================================================
   8. Team / partner section
   ============================================================= */
.team-intro-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center;
}
.team-intro-visual { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 40px 70px -30px rgba(20,42,77,.35); order: -1; }
.team-intro-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.visual-wordmark {
  position: absolute; bottom: 7%; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 3.6vw, 2.4rem); color: var(--cream);
  text-shadow: 0 4px 22px rgba(0,0,0,.6), 0 2px 10px rgba(0,0,0,.55);
  pointer-events: none;
}
.visual-wordmark span { color: var(--gold); }
.team-intro-text h2 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 1.3rem; }
.team-intro-text p { color: var(--ink-mute); max-width: 58ch; margin-bottom: 1rem; }

@media (min-width: 960px) {
  .team-intro-grid { grid-template-columns: .9fr 1.1fr; }
  .team-intro-visual { order: 0; }
}

/* =============================================================
   9. Mission band
   ============================================================= */
.mission {
  background: var(--navy-deep); color: var(--cream);
  padding-block: clamp(4rem, 9vw, 7rem);
  position: relative; overflow: clip;
}
.mission::before {
  content: ""; position: absolute; inset: -60% -10% -60% -10%;
  background: radial-gradient(45% 45% at 50% 50%, rgba(193,89,44,.18), transparent 70%);
  filter: blur(90px); pointer-events: none;
}
.mission-text {
  position: relative; font-family: var(--serif); font-weight: 600; font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.3; max-width: 22ch;
  margin-inline: auto; text-align: center; text-wrap: balance;
}

/* =============================================================
   10. Full-bleed image section (audience / team)
   ============================================================= */
.bleed-section {
  position: relative; color: var(--cream); overflow: clip;
  padding-block: clamp(5rem, 11vw, 9rem);
}
.bleed-section img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.bleed-section::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,30,54,.88) 0%, rgba(14,30,54,.78) 55%, rgba(14,30,54,.92) 100%);
}
.bleed-content { position: relative; z-index: 2; }
.bleed-section h2 { color: var(--cream); font-size: clamp(2.1rem, 4vw, 3rem); max-width: 18ch; margin-bottom: 1rem; }

.audience-list { display: grid; gap: .9rem; margin-top: 2.5rem; max-width: 720px; }
.audience-list li {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.3rem; border-radius: 12px;
  background: rgba(243,236,219,.07); border: 1px solid rgba(243,236,219,.14);
  font-weight: 600; font-size: 1rem;
  transition: background .35s var(--ease-out), transform .35s var(--ease-out), border-color .35s var(--ease-out);
}
.audience-list li:hover { background: rgba(243,236,219,.13); transform: translateX(6px); border-color: rgba(243,236,219,.3); }
.audience-list li .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

@media (min-width: 720px) {
  .audience-list { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   11. How we work (3 steps)
   ============================================================= */
.steps-grid { display: grid; gap: 2rem; margin-top: 3rem; }
.step-card {
  padding: 2.1rem; border-radius: 18px; background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(20,42,77,.3); border-color: var(--line-strong); }
.step-num {
  font-family: var(--serif); font-style: italic; font-weight: 700; color: var(--accent);
  font-size: 1.6rem; margin-bottom: 1rem; display: block;
}
.step-card h3 { font-size: 1.3rem; margin-bottom: .7rem; }
.step-card p { color: var(--ink-mute); font-size: .95rem; }

@media (min-width: 720px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   12. Offer suites
   ============================================================= */
.suites-grid { display: grid; gap: 1.75rem; margin-top: 3rem; }
.suite-card {
  padding: 2.3rem 2rem; border-radius: 20px;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.suite-card:hover { transform: translateY(-6px) rotate(-.3deg); box-shadow: 0 34px 60px -30px rgba(20,42,77,.32); }
.suite-card.is-accent { background: var(--navy-deep); color: var(--cream); border-color: transparent; }
.suite-card.is-accent h3 { color: var(--cream); }
.suite-card.is-accent li { color: var(--cream-mute); border-color: rgba(243,236,219,.16); }
.suite-icon {
  width: 46px; height: 46px; border-radius: 12px; background: rgba(193,89,44,.12);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem;
}
.suite-card.is-accent .suite-icon { background: rgba(174,134,70,.18); }
.suite-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.suite-card.is-accent .suite-icon svg { stroke: var(--gold); }
.suite-card h3 { font-size: 1.35rem; margin-bottom: 1.1rem; }
.suite-card ul { display: grid; gap: .65rem; }
.suite-card li {
  font-size: .92rem; color: var(--ink-mute); padding-bottom: .65rem;
  border-bottom: 1px dashed var(--line);
}
.suite-card li:last-child { border-bottom: 0; padding-bottom: 0; }

@media (min-width: 960px) { .suites-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   13. Methodology timeline
   ============================================================= */
.method-track {
  margin-top: 3.5rem; display: grid; gap: 1.5rem;
  position: relative;
}
.method-track::before {
  content: ""; position: absolute; left: 0; right: 0; top: 26px; height: 1.5px;
  background: var(--line-strong); display: none;
}
.method-step { position: relative; padding-top: 2.6rem; }
.method-step::before {
  content: ""; position: absolute; top: 0; left: 0; width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--bg);
  box-shadow: 0 0 0 1.5px var(--line-strong);
}
.method-step .step-idx { font-size: .78rem; font-weight: 800; letter-spacing: .1em; color: var(--ink-mute); text-transform: uppercase; margin-bottom: .4rem; }
.method-step h3 { font-family: var(--sans); font-weight: 800; font-size: 1.05rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: .55rem; color: var(--ink); }
.method-step p { font-size: .9rem; color: var(--ink-mute); }

@media (min-width: 960px) {
  .method-track { grid-template-columns: repeat(5, 1fr); }
  .method-track::before { display: block; }
}

/* =============================================================
   14. Services grid
   ============================================================= */
.services-grid { display: grid; gap: 1.4rem; margin-top: 3rem; }
.service-card {
  padding: 1.9rem; border-radius: 16px; background: var(--paper); border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .35s var(--ease-out);
  perspective: 800px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 46px -28px rgba(20,42,77,.3);
  border-color: var(--accent);
}
.service-num { font-family: var(--serif); font-style: italic; color: var(--accent); font-weight: 700; font-size: 1.1rem; }
.service-card h3 { font-size: 1.12rem; margin: .8rem 0 .6rem; }
.service-card p { font-size: .88rem; color: var(--ink-mute); }
.services-cta { display: flex; justify-content: center; margin-top: 3rem; }

@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   15. Benefit comparison table
   ============================================================= */
.benefit-table-wrap { margin-top: 3rem; overflow-x: auto; overflow-y: visible; }
.benefit-table { width: 100%; border-collapse: collapse; min-width: 720px; }
.benefit-table th, .benefit-table td { padding: 1.3rem 1.4rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.benefit-table thead th { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mute); font-weight: 700; }
.benefit-table thead th.col-strong { color: var(--accent); }
.benefit-table thead th.col-weak { color: var(--ink-mute); }
.benefit-table td.label { font-weight: 700; color: var(--ink); width: 22%; }
.benefit-table td.strong-cell { color: var(--ink); background: rgba(193,89,44,.06); font-size: .92rem; border-left: 3px solid var(--accent); }
.benefit-table td.weak-cell { color: var(--ink-mute); font-size: .92rem; }
.benefit-table tbody tr:last-child td { border-bottom: 0; }

/* =============================================================
   16. Team / expertise section (full-bleed)
   ============================================================= */
.teamsec-grid { display: grid; gap: 3rem; align-items: start; }
.teamsec-stat { display: flex; align-items: baseline; gap: .8rem; margin-top: 2rem; }
.teamsec-stat .stat-value { font-size: clamp(2.6rem, 6vw, 4rem); color: var(--gold); }
.teamsec-stat .stat-label { color: var(--cream-mute); }
.expertise-intro { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--cream); margin-bottom: 1.2rem; }
.expertise-list { display: grid; gap: .85rem; }
.expertise-list li {
  display: flex; align-items: center; gap: .8rem; font-weight: 600;
  padding-bottom: .85rem; border-bottom: 1px solid rgba(243,236,219,.16);
}
.expertise-list li .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

@media (min-width: 960px) { .teamsec-grid { grid-template-columns: 1.1fr .9fr; } }

/* =============================================================
   17. FAQ accordion
   ============================================================= */
.faq-list { margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0; text-align: left; font-family: var(--serif); font-weight: 600; font-size: 1.1rem;
}
.faq-q .plus { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--ink); transition: transform .35s var(--ease-out);
}
.faq-q .plus::before { left: 0; right: 0; top: 50%; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out); }
.faq-a p { padding-bottom: 1.5rem; color: var(--ink-mute); max-width: 68ch; font-size: .96rem; }
.faq-item.is-open .faq-a { max-height: 320px; }

/* =============================================================
   18. Contact
   ============================================================= */
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.contact-visual { border-radius: 20px; overflow: hidden; box-shadow: 0 40px 70px -30px rgba(20,42,77,.35); order: -1; }
.contact-visual img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; }
.contact-text h2 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: .8rem; }
.contact-cards { display: grid; gap: 1rem; margin-top: 2.2rem; }
.contact-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem 1.6rem; border-radius: 16px; background: var(--paper); border: 1px solid var(--line);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -26px rgba(20,42,77,.3); }
.contact-card .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mute); font-weight: 700; margin-bottom: .3rem; }
.contact-card .value { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }

@media (min-width: 960px) {
  .contact-grid { grid-template-columns: .85fr 1.15fr; }
  .contact-visual { order: 0; }
}

/* =============================================================
   19. Footer
   ============================================================= */
.site-footer { background: var(--navy-deep); color: var(--cream-mute); padding-block: 3.5rem 2.2rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(243,236,219,.14); }
.footer-brand .wordmark { color: var(--cream); }
.footer-brand p { margin-top: .8rem; max-width: 32ch; font-size: .92rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; }
.footer-nav a { font-size: .92rem; font-weight: 600; }
.footer-nav a:hover { color: var(--cream); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.6rem; font-size: .82rem; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.footer-white-link {
  position: relative; font-size: .92rem; font-weight: 700; color: var(--cream);
}
.footer-legal-links .footer-white-link { font-size: .82rem; }
.footer-white-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.footer-white-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* =============================================================
   20. Marquee divider
   ============================================================= */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-2); }
.marquee-track {
  display: flex; width: max-content; gap: 3rem; padding-block: 1.1rem;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track span { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink-mute); white-space: nowrap; }
.marquee-track span::after { content: "—"; margin-left: 3rem; color: var(--accent); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-duration: 60s; } }

/* =============================================================
   21. Mosaic strip (territory diversity)
   ============================================================= */
.mosaic-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 3rem; }
.mosaic-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1/1; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.mosaic-item:hover img { transform: scale(1.08); }
.mosaic-item .cap {
  position: absolute; left: .8rem; bottom: .7rem; z-index: 1;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--cream);
}
.mosaic-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(14,30,54,.75) 100%); }

@media (min-width: 720px) { .mosaic-strip { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   21b. Legal / cookies modal
   ============================================================= */
.modal {
  position: fixed; inset: 0; margin: auto;
  border: 0; border-radius: 20px; padding: 0;
  max-width: 640px; width: min(92vw, 640px);
  max-height: 84vh; height: fit-content;
  background: var(--paper); color: var(--ink);
  box-shadow: 0 40px 90px -30px rgba(20,42,77,.45);
}
.modal::backdrop { background: rgba(14,30,54,.6); backdrop-filter: blur(4px); }
.modal-inner { padding: clamp(1.75rem, 4vw, 3rem); overflow-y: auto; max-height: 84vh; position: relative; }
.modal h2 { font-size: 1.6rem; margin-bottom: 1rem; padding-right: 2rem; }
.modal h3 { font-size: 1rem; margin-top: 1.6rem; margin-bottom: .5rem; color: var(--accent); }
.modal p { font-size: .92rem; color: var(--ink-mute); margin-bottom: .3rem; }
.modal-disclaimer {
  font-size: .8rem; font-style: italic; color: var(--ink-mute);
  background: var(--bg-2); border-radius: 10px; padding: .8rem 1rem; margin-bottom: 1.5rem;
}
.modal-close {
  position: absolute; top: clamp(1.75rem, 4vw, 3rem); right: clamp(1.75rem, 4vw, 3rem);
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-2);
  font-size: 0; transition: background .3s var(--ease-out);
}
.modal-close::before, .modal-close::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--ink);
}
.modal-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.modal-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.modal-close:hover { background: var(--line-strong); }

/* =============================================================
   22. Responsive base spacing tweaks
   ============================================================= */
@media (min-width: 540px)  { .hero-title { max-width: 16ch; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

/* =============================================================
   23. Reduced-motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition-duration: .25s; }
}
