/* UI Kit · FSG website
   Local styles complementing colors_and_type.css */

.site {
  min-height: 100vh;
  background: var(--bone);
  color: var(--navy-950);
  font-family: var(--font-sans);
}

/* --------- Reading progress bar (top of page) --------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
  z-index: 100;
  box-shadow: 0 0 10px rgba(214, 181, 133, .55);
  pointer-events: none;
  transition: width 80ms linear;
  will-change: width;
}

/* --------- Hide native scrollbar (progress bar at top is the indicator) --------- */
html { scrollbar-width: none; -ms-overflow-style: none; }
::-webkit-scrollbar { width: 0; height: 0; display: none; }
@media (max-width: 640px) {
  .scroll-progress { height: 2px; }
}

/* --------- Reveal-on-scroll system --------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(.22,.61,.36,1),
    transform 760ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="80"]  { transition-delay: 80ms;  }
[data-reveal][data-delay="100"] { transition-delay: 100ms; }
[data-reveal][data-delay="120"] { transition-delay: 120ms; }
[data-reveal][data-delay="160"] { transition-delay: 160ms; }
[data-reveal][data-delay="180"] { transition-delay: 180ms; }
[data-reveal][data-delay="200"] { transition-delay: 200ms; }
[data-reveal][data-delay="240"] { transition-delay: 240ms; }
[data-reveal][data-delay="240"] { transition-delay: 240ms; }
[data-reveal][data-delay="320"] { transition-delay: 320ms; }
[data-reveal][data-delay="360"] { transition-delay: 360ms; }
[data-reveal][data-delay="0"]   { transition-delay: 0ms;   }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------- Header --------- */
.nav {
  background: var(--navy-700);
  color: var(--paper);
  border-bottom: 1px solid var(--gold-500);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 6px 24px rgba(0, 7, 27, 0.18);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 22px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.brand { display: flex; align-items: center; gap: 16px; cursor: pointer; }
.brand-logo-wide { height: 72px; width: auto; display: block; }
.brand-logo {
  width: 44px; height: 44px;
  background: url("assets/fsg-logo.png") center/contain no-repeat;
}
.brand-text { line-height: 1.1; }
.brand-text .main {
  font-size: 14px; letter-spacing: .28em; font-weight: 700;
  color: var(--gold-500); text-transform: uppercase;
}
.brand-text .sub {
  font-size: 10px; letter-spacing: .3em;
  color: rgba(255,255,255,.65); text-transform: uppercase;
  margin-top: 3px; font-weight: 400;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--paper); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; text-decoration: none;
  padding: 6px 0; position: relative; font-weight: 400;
  transition: color 160ms;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform 240ms cubic-bezier(.2,.6,.2,1);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-500); }
.nav-cta {
  padding: 11px 22px;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; font-weight: 700;
  transition: all 200ms;
}
.nav-cta:hover { background: var(--gold-500); color: var(--navy-950); }

/* --------- Hero --------- */
.hero {
  background: var(--navy-700); color: var(--paper);
  position: relative; overflow: hidden;
  padding: 120px 56px 140px;
}
.hero::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0;
  width: 16px; background: var(--gold-500);
}
.hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr .8fr; gap: 64px; align-items: center; min-width: 0; }
.hero-inner > div { min-width: 0; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-500); margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 300; margin: 0;
}
.hero h1 em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 400; color: var(--gold-500);
}
.hero-rule { width: 64px; height: 1px; background: var(--gold-500); margin: 36px 0 28px; }
.hero-lede {
  font-weight: 300; font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,.78); max-width: 52ch; margin: 0 0 40px;
}
.hero-row { display: flex; gap: 20px; align-items: center; }
.hero-portrait {
  aspect-ratio: 3 / 4;
  position: relative;
  border: 1px solid rgba(214,181,133,.4);
  overflow: hidden;
}
.hero-portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-portrait .frame-line {
  position: absolute; top: 20px; right: 20px;
  width: 1px; height: 60px; background: var(--gold-500);
  z-index: 2;
}
.hero-meta {
  position: absolute; left: 56px; bottom: 32px;
  display: flex; gap: 48px;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-meta span::before { content: "—"; color: var(--gold-500); margin-right: 10px; }

/* --------- Buttons (shared) --------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; text-decoration: none;
  padding: 16px 26px; border-radius: 4px; border: 1px solid transparent;
  cursor: pointer; transition: all 180ms cubic-bezier(.2,.6,.2,1);
  font-family: var(--font-sans);
}
.btn.primary { background: var(--gold-500); color: var(--navy-950); }
.btn.primary:hover { background: var(--gold-600); }
.btn.ghost-light { color: var(--paper); border-color: rgba(214,181,133,.45); background: transparent; }
.btn.ghost-light:hover { border-color: var(--gold-500); background: rgba(214,181,133,.08); }
.btn.ghost-dark { color: var(--navy-700); border-color: var(--navy-700); background: transparent; }
.btn.ghost-dark:hover { background: var(--navy-700); color: var(--paper); }
.btn.solid { background: var(--navy-700); color: var(--paper); }
.btn.solid:hover { background: var(--navy-800); }

/* --------- Section framing --------- */
.section { padding: 120px 56px; max-width: 1280px; margin: 0 auto; scroll-margin-top: 88px; }
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  margin-bottom: 72px; align-items: end;
}
.section-eyebrow {
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-700); margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 52px; line-height: 1.05; letter-spacing: -0.015em;
  font-weight: 700; margin: 0; color: var(--navy-950);
}
.section-title em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 400; color: var(--gold-700);
}
.section-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: var(--navy-700);
  margin-top: 18px;
  white-space: nowrap;
}
.section-lede {
  font-weight: 300; font-size: 17px; line-height: 1.7;
  color: var(--stone-500); max-width: 52ch; margin: 0;
}

/* --------- Services grid --------- */
.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service {
  background: var(--paper); padding: 48px 44px;
  position: relative; overflow: hidden;
  transition: background 240ms, transform 360ms cubic-bezier(.2,.6,.2,1), box-shadow 360ms;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(28, 49, 99, 0.10);
  z-index: 2;
}
.service:hover .service-watermark {
  color: var(--gold-300);
  transform: translate(8px, -4px);
  opacity: 0.6;
}
.service:hover::before {
  width: 72px;
}
.service::before {
  content: ""; position: absolute; top: 48px; left: 44px;
  width: 36px; height: 1px; background: var(--gold-500);
  transition: width 360ms cubic-bezier(.2,.6,.2,1);
}
.service-watermark {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--font-display);
  font-size: 96px; font-weight: 700;
  line-height: 1; letter-spacing: -0.04em;
  color: var(--gold-100);
  opacity: 0.7;
  pointer-events: none;
  transition: color 360ms, transform 360ms cubic-bezier(.2,.6,.2,1), opacity 360ms;
}
.service .num {
  font-size: 10px; letter-spacing: .32em; color: var(--gold-700);
  text-transform: uppercase; margin-top: 24px; margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic;
  font-size: 14px; letter-spacing: 0; color: var(--gold-700);
}
.service h3 {
  font-size: 26px; font-weight: 700; margin: 0 0 14px;
  letter-spacing: -0.005em; color: var(--navy-950);
}
.service p {
  font-size: 14px; line-height: 1.65; color: var(--stone-500);
  margin: 0 0 24px; max-width: 46ch;
}
.service .arrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--navy-700);
  display: inline-flex; align-items: center; gap: 10px;
}
.service .arrow::after { content: "→"; color: var(--gold-700); }

/* Accordion-friendly service structure */
.service-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: default;
  font-family: inherit;
  color: inherit;
}
.service-toggle-text { flex: 1; min-width: 0; }
.service-chevron {
  display: none;
  color: var(--gold-700);
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 280ms cubic-bezier(.2,.6,.2,1);
}
.service-body {
  overflow: hidden;
  transition: max-height 360ms cubic-bezier(.2,.6,.2,1), opacity 240ms;
}
.service-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--stone-500);
  max-width: 46ch;
}

/* --------- About / Quote --------- */
.about {
  background: var(--bone);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 96px; align-items: center; }
.about-portrait {
  aspect-ratio: 4 / 5;
  position: relative;
  border: 1px solid var(--border);
  overflow: visible;
}
.about-portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: relative; z-index: 1;
}
.about-portrait::before {
  content: ""; position: absolute; top: -12px; right: -12px; bottom: 60px;
  width: 12px; background: var(--gold-500); z-index: 0;
}
.quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 400; font-size: 42px;
  line-height: 1.25; letter-spacing: 0; color: var(--navy-950);
  margin: 0 0 32px; max-width: 24ch;
}
.quote-author {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-700); font-weight: 700;
}
.about-body { font-size: 16px; line-height: 1.8; color: var(--stone-700); max-width: 52ch; margin: 28px 0 36px; font-weight: 300; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border); margin-top: 40px; }
.stat { padding: 28px 20px 0; border-right: 1px solid var(--border); }
.stat:last-child { border-right: 0; }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1; color: var(--navy-700); letter-spacing: -0.01em; }
.stat .l { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--stone-500); margin-top: 10px; }

/* --------- Process --------- */
.process { background: var(--navy-700); color: var(--paper); }
.process .section-title { color: var(--paper); }
.process .section-lede { color: rgba(255,255,255,.7); }
.process .section-eyebrow { color: var(--gold-500); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(214,181,133,.25); }
.step {
  padding: 44px 28px 0; border-right: 1px solid rgba(214,181,133,.25);
  position: relative;
}
.step:last-child { border-right: 0; }
.step::before {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 40px; height: 1px; background: var(--gold-500);
}
.step .n {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic;
  font-size: 16px; color: var(--gold-500); margin-bottom: 24px;
}
.step h4 { font-size: 20px; font-weight: 700; margin: 0 0 12px; }
.step p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.65); font-weight: 300; margin: 0; }

/* --------- CTA band --------- */
.cta-band {
  background: var(--gold-500); color: var(--navy-950);
  padding: 80px 56px;
  overflow: hidden;
}
.cta-band-inner {
  max-width: 1280px; margin: 0 auto;
  width: 100%; min-width: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
}
.cta-band .btn { max-width: 100%; }
.cta-band h2 {
  font-family: var(--font-display); font-size: 40px; line-height: 1.1;
  letter-spacing: -0.01em; font-weight: 700; margin: 0; max-width: 20ch;
}
.cta-band h2 em { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 400; }
.cta-band .btn { background: var(--navy-950); color: var(--gold-500); border: 0; }
.cta-band .btn:hover { background: var(--navy-900); }

/* --------- Footer --------- */
.footer { background: var(--navy-950); color: rgba(255,255,255,.6); padding: 80px 56px 40px; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(214,181,133,.2); }
.footer-brand .brand-logo { width: 56px; height: 56px; margin-bottom: 20px; }
.footer-brand .footer-mark {
  width: auto; height: 64px;
  max-width: 100%;
  display: block; margin-bottom: 18px;
}
.footer-brand .name { font-size: 16px; font-weight: 700; color: var(--paper); letter-spacing: -0.005em; }
.footer-brand .tag { font-size: 12px; letter-spacing: .2em; color: var(--gold-500); text-transform: uppercase; margin-top: 4px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 20px; max-width: 34ch; font-weight: 300; }
.footer-col h5 { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-500); margin: 0 0 20px; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,.72); font-size: 13px; text-decoration: none; padding: 5px 0; font-weight: 300; }
.footer-col a:hover { color: var(--gold-500); }
.footer-col .info { font-size: 13px; line-height: 1.7; font-weight: 300; }
.footer-bottom { max-width: 1280px; margin: 32px auto 0; display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.footer-bottom .sep { color: var(--gold-700); margin: 0 12px; }

/* --------- Modal --------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0, 7, 27, 0.72);
  display: flex; align-items: center; justify-content: center; z-index: 100;
}
.modal {
  background: var(--paper); width: 560px; max-width: 92vw;
  border-radius: 6px; border-top: 2px solid var(--gold-500);
  padding: 48px; box-shadow: var(--shadow-lg);
  position: relative;
}
.modal .close { position: absolute; top: 16px; right: 20px; background: none; border: 0; font-size: 22px; color: var(--stone-400); cursor: pointer; }
.modal h2 { font-family: var(--font-display); font-size: 32px; margin: 0 0 8px; letter-spacing: -0.01em; }
.modal p.modal-lede { font-size: 14px; color: var(--stone-500); margin: 0 0 28px; font-weight: 300; line-height: 1.6; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--stone-500); margin-bottom: 8px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; box-sizing: border-box; background: var(--paper);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 12px 14px; font-family: var(--font-sans); font-size: 14px;
  color: var(--navy-950); transition: all 160ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(214,181,133,.4);
}
.field textarea { resize: vertical; min-height: 96px; font-family: var(--font-sans); }
.modal-success { text-align: center; padding: 20px 0 12px; }
.modal-success .ok { width: 48px; height: 48px; border: 1px solid var(--gold-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gold-700); font-size: 20px; }
.modal-success h3 { font-size: 22px; margin: 0 0 8px; color: var(--navy-950); }
.modal-success p { font-size: 14px; color: var(--stone-500); font-weight: 300; }

/* --------- Tabs (service detail) --------- */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.tab {
  padding: 14px 24px 14px 0; margin-right: 28px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--stone-400); cursor: pointer; background: none; border: 0;
  font-weight: 700; position: relative; font-family: var(--font-sans);
}
.tab.active { color: var(--navy-950); }
.tab.active::after {
  content: ""; position: absolute; bottom: -1px; left: 0; right: 28px;
  height: 1px; background: var(--gold-500);
}

/* --------- Services 3-col (6 items) --------- */
@media (min-width: 961px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --------- Process blocks (no numbers) --------- */
.process-blocks {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(214,181,133,.22);
  border-top: 1px solid rgba(214,181,133,.22);
  border-bottom: 1px solid rgba(214,181,133,.22);
}
.process-block {
  padding: 56px 40px;
  background: var(--navy-700);
  position: relative; overflow: hidden;
  transition: background 360ms cubic-bezier(.2,.6,.2,1);
}
.process-block::before {
  content: ""; position: absolute; top: 0; left: 40px;
  width: 48px; height: 1px; background: var(--gold-500);
  transition: width 540ms cubic-bezier(.2,.6,.2,1);
}
.process-step {
  position: absolute; top: 24px; right: 32px;
  font-family: var(--font-display);
  font-size: 78px; font-weight: 700; line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(214,181,133,.10);
  pointer-events: none;
  transition: color 360ms, transform 480ms cubic-bezier(.2,.6,.2,1);
}
.process-block h4 {
  font-family: var(--font-display);
  font-size: 24px; line-height: 1.2;
  font-weight: 700; letter-spacing: -0.005em;
  color: var(--paper); margin: 0 0 16px;
  position: relative; z-index: 1;
  transition: transform 360ms cubic-bezier(.2,.6,.2,1);
}
.process-block p {
  font-size: 15px; line-height: 1.75; font-weight: 300;
  color: rgba(255,255,255,.78); margin: 0;
  position: relative; z-index: 1;
}
.process-block:hover {
  background: var(--navy-800);
}
.process-block:hover::before { width: 112px; }
.process-block:hover .process-step {
  color: rgba(214,181,133,.22);
  transform: translate(-4px, -2px);
}
.process-block:hover h4 { transform: translateX(4px); }

/* --------- Testimonials carousel (native scroll-snap) --------- */
.testimonials { background: var(--paper); }
.carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.testimonials-track {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  background: var(--bone);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold-500);
  padding: 48px 36px 28px;
  display: flex; flex-direction: column;
  min-width: 0;
  box-sizing: border-box;
}

.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 22px; margin-top: 36px;
}
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(184,148,95,.45);
  background: transparent; color: var(--gold-700);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 180ms, border-color 180ms, color 180ms;
}
.carousel-btn:hover {
  background: var(--gold-500); border-color: var(--gold-500);
  color: var(--navy-950);
}
.carousel-btn:disabled {
  opacity: 0.3; cursor: default;
}
.carousel-btn:disabled:hover {
  background: transparent; border-color: rgba(184,148,95,.45); color: var(--gold-700);
}
.carousel-dots {
  display: flex; gap: 10px; align-items: center;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(184,148,95,.3);
  border: 0; cursor: pointer;
  transition: background 200ms, transform 200ms;
}
.dot:hover { background: rgba(184,148,95,.55); }
.dot.active {
  background: var(--gold-500);
  transform: scale(1.35);
}
.testimonial .t-mark {
  position: absolute; top: 14px; left: 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: 68px; line-height: 1; color: var(--gold-500);
}
.t-quote {
  font-family: var(--font-sans);
  font-size: 15px; line-height: 1.75; font-weight: 300;
  color: var(--stone-700); margin: 0 0 24px;
  flex: 1;
}
.t-meta {
  border-top: 1px solid rgba(214,181,133,.4);
  padding-top: 18px;
  display: flex; align-items: center; gap: 14px;
}
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy-700); color: var(--gold-500);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  flex-shrink: 0;
}
.t-author {
  font-size: 13px; font-weight: 700; letter-spacing: -0.005em;
  color: var(--navy-950);
}
.t-role {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 4px;
  font-weight: 400;
  font-feature-settings: "kern" 1;
  font-variant: normal;
  font-variant-caps: normal;
  -webkit-font-feature-settings: "kern" 1;
}

@keyframes process-step-in {
  0%   { opacity: 0; transform: translate(20px, -8px) scale(.9); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}

/* --------- Footer info links --------- */
.footer-col .info a {
  display: block; color: rgba(255,255,255,.78); text-decoration: none;
  padding: 2px 0; transition: color 160ms;
}
.footer-col .info a:hover { color: var(--gold-500); }
.contact-link {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 6px 0 !important;
}
.contact-icon {
  flex-shrink: 0;
  color: var(--gold-500);
  transition: color 160ms;
}
.contact-link:hover .contact-icon { color: var(--paper); }

/* --------- FAQ section --------- */
.faq { background: var(--bone); border-top: 1px solid var(--border); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  position: relative;
}
.faq-item::before {
  content: "";
  position: absolute; top: -1px; left: 0;
  width: 32px; height: 1px;
  background: rgba(214,181,133,.6);
  transition: width 420ms cubic-bezier(.2,.6,.2,1), background 240ms;
}
.faq-item.is-open::before {
  width: 96px;
  background: var(--gold-500);
}
.faq-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  text-align: left;
}
.faq-toggle h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--navy-950);
  margin: 0;
  flex: 1;
  transition: color 220ms;
}
.faq-item.is-open .faq-toggle h3 { color: var(--gold-700); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--gold-700);
  transition: transform 320ms cubic-bezier(.2,.6,.2,1);
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 420ms cubic-bezier(.2,.6,.2,1), opacity 320ms;
}
.faq-item.is-open .faq-answer {
  max-height: 320px;
  opacity: 1;
}
.faq-answer p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--stone-700);
  margin: 0 0 22px;
  max-width: 70ch;
}

/* --------- Floating WhatsApp FAB --------- */
.wa-fab {
  position: fixed; right: 24px; bottom: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #ffffff;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 90;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35), 0 4px 10px rgba(0,0,0,.12);
  transition: transform 220ms cubic-bezier(.2,.6,.2,1), box-shadow 220ms;
  animation: wa-pop 480ms cubic-bezier(.2,.7,.2,1) 240ms both;
}
.wa-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 36px rgba(37, 211, 102, .45), 0 6px 14px rgba(0,0,0,.16);
}
.wa-fab::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  animation: wa-ring 2400ms ease-out infinite;
}
@keyframes wa-pop {
  from { opacity: 0; transform: translateY(20px) scale(.6); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes wa-ring {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  70%  { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --------- Mobile burger (hidden on desktop) --------- */
.nav-burger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 0;
  position: relative;
}
.nav-burger span {
  position: absolute; left: 10px; right: 10px; height: 1.5px;
  background: var(--gold-500);
  transition: transform 240ms cubic-bezier(.2,.6,.2,1), opacity 160ms, top 240ms;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 21px; }
.nav-burger span:nth-child(3) { top: 28px; }
.nav-burger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-mobile {
  display: none;
  background: #0a1530;
  border-top: 1px solid rgba(214,181,133,.18);
  padding: 8px 28px 20px;
}
.nav-mobile a {
  display: block;
  color: var(--paper);
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid rgba(214,181,133,.12);
}
.nav-mobile a.active { color: var(--gold-500); }
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile .nav-mobile-cta {
  margin-top: 14px; padding: 14px 22px;
  background: var(--gold-500); color: var(--navy-950);
  text-align: center; font-weight: 700;
  border: 0; border-radius: 4px;
  letter-spacing: .22em;
}

/* --------- Tablet (≤ 960px) --------- */
@media (max-width: 960px) {
  .nav-inner { padding: 18px 28px; gap: 16px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-block; }
  .nav-mobile { display: block; }
  .brand-logo-wide { height: 60px; }

  .hero { padding: 56px 28px 72px; }
  .hero::after { width: 10px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-eyebrow { margin-bottom: 22px; font-size: 10px; }
  .hero h1 { font-size: 56px; }
  .hero-lede { font-size: 17px; margin-bottom: 32px; }
  .hero-portrait { max-width: 420px; }
  .hero-meta {
    position: static; margin-top: 48px;
    padding-left: 0; flex-wrap: wrap; gap: 18px 32px;
  }

  .section { padding: 56px 28px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .section-title { font-size: 38px; }

  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 40px 32px; }
  .service::before { left: 32px; top: 40px; }
  .service h3 { font-size: 24px; }

  /* Accordion mode (mobile + tablet): collapsed by default, tap to expand */
  .service--accordion {
    padding: 22px 22px;
    transform: none;
  }
  .service--accordion::before {
    top: 22px; left: 22px; width: 22px;
  }
  .service--accordion .service-watermark {
    font-size: 56px; top: 12px; right: 16px;
    transition: color 320ms, transform 320ms;
  }
  .service--accordion .service-toggle {
    cursor: pointer;
    padding: 10px 0 6px;
  }
  .service--accordion .service-toggle-text .num {
    margin-top: 4px; margin-bottom: 4px;
    font-size: 12px;
  }
  .service--accordion .service-toggle-text h3 {
    font-size: 17px;
    margin: 0;
    line-height: 1.25;
  }
  .service--accordion .service-chevron { display: inline-flex; }
  .service--accordion.is-open .service-chevron { transform: rotate(180deg); }
  .service--accordion.is-open .service-watermark {
    color: var(--gold-400);
    transform: translate(4px, -2px);
  }
  .service--accordion .service-body {
    max-height: 0;
    opacity: 0;
  }
  .service--accordion.is-open .service-body {
    max-height: 520px;
    opacity: 1;
    padding-top: 10px;
  }
  .service--accordion.is-open .service-body p {
    font-size: 13.5px;
    line-height: 1.6;
  }
  /* Hover/focus affordance on the toggle button only (not the whole card) */
  .service--accordion:hover {
    transform: none;
    box-shadow: none;
  }
  .service--accordion:hover .service-watermark {
    transform: translate(4px, -2px);
    color: var(--gold-400);
    opacity: 0.6;
  }
  .service--accordion:hover::before { width: 22px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-portrait { max-width: 440px; }
  .quote { font-size: 34px; max-width: 28ch; }
  .about-stats { grid-template-columns: repeat(3, 1fr); margin-top: 32px; }
  .stat { padding: 24px 12px 0; }
  .stat .n { font-size: 32px; }

  .steps { grid-template-columns: 1fr 1fr; }
  .step { padding: 40px 22px 0; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(1), .step:nth-child(2) {
    border-bottom: 1px solid rgba(214,181,133,.25); padding-bottom: 32px;
  }
  .step:nth-child(3) { padding-top: 40px; }
  .step:nth-child(4) { padding-top: 40px; }

  .cta-band { padding: 48px 28px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .cta-band h2 { font-size: 34px; }

  .footer { padding: 44px 28px 24px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "services studio"
      "contact contact";
    gap: 36px 32px;
    padding-bottom: 36px;
  }
  .footer-brand { grid-area: brand; }
  .footer-brand p { max-width: 52ch; margin-top: 16px; }
  .footer-inner .footer-col:nth-of-type(2) { grid-area: services; }
  .footer-inner .footer-col:nth-of-type(3) { grid-area: studio; }
  .footer-inner .footer-col:nth-of-type(4) { grid-area: contact; }
  .footer-col h5 { margin-bottom: 14px; }
  .footer-col a { padding: 4px 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: left; margin-top: 20px; font-size: 10px; }

  .process-blocks { grid-template-columns: 1fr 1fr; }
  .process-block { padding: 32px 28px; }
  .process-block::before { left: 28px; }

  .testimonial { padding: 40px 28px 24px; }
  .carousel-controls { margin-top: 22px; gap: 18px; }
}

/* --------- Phone (≤ 640px) --------- */
@media (max-width: 640px) {
  .nav-inner { padding: 14px 20px; gap: 12px; }
  .brand-logo-wide { height: 52px; }
  .nav-mobile { padding: 6px 20px 18px; }

  .hero { padding: 32px 18px 40px; }
  .hero::after { display: none; }
  .hero-inner { gap: 24px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: .26em; margin-bottom: 14px; }
  .hero h1 {
    font-size: clamp(24px, 7.2vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.015em;
  }
  .hero h1 em { white-space: nowrap; }
  .hero-rule { margin: 20px 0 16px; }
  .hero-lede { font-size: 14.5px; line-height: 1.6; margin-bottom: 22px; max-width: 100%; }
  .hero-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-row .btn { justify-content: center; padding: 15px 22px; font-size: 11px; }
  .hero-portrait { aspect-ratio: 4 / 5; max-width: 100%; }
  .hero-meta {
    margin-top: 36px; gap: 10px 22px;
    font-size: 10px; letter-spacing: .22em;
  }
  .hero-meta span::before { margin-right: 6px; }

  .section { padding: 36px 18px; scroll-margin-top: 72px; }
  .section-head { gap: 12px; margin-bottom: 20px; }
  .section-eyebrow { font-size: 10px; letter-spacing: .28em; margin-bottom: 10px; }
  .section-title { font-size: 28px; line-height: 1.08; }
  .section-lede { font-size: 14.5px; line-height: 1.6; }
  .section-subtitle { font-size: 0.48em; margin-top: 12px; }

  .services-grid {
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
  }
  .service { padding: 18px 18px; }
  .service::before { display: none; }
  .service-watermark { font-size: 52px; top: 10px; right: 14px; }
  .service--accordion {
    padding: 4px 18px;
    border-bottom: 1px solid var(--border);
  }
  .services-grid .service--accordion:last-child {
    border-bottom: 0;
  }
  .service--accordion .service-toggle {
    padding: 16px 0;
  }
  .service--accordion .service-toggle-text .num {
    font-size: 11px; margin-bottom: 2px;
  }
  .service--accordion .service-toggle-text h3 {
    font-size: 16px;
  }
  .service--accordion.is-open .service-body {
    padding: 0 0 18px;
  }
  .service--accordion.is-open .service-body p {
    font-size: 13px;
    line-height: 1.6;
    max-width: 100%;
  }

  .about-grid { gap: 24px; }
  .about-portrait::before { top: -6px; right: -6px; width: 6px; }
  .quote { font-size: 24px; line-height: 1.28; margin-bottom: 20px; max-width: 100%; }
  .about-body { font-size: 14.5px; line-height: 1.7; margin: 16px 0 16px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); margin-top: 24px; }
  .stat { padding: 18px 6px 0; }
  .stat .n { font-size: 24px; }
  .stat .l { font-size: 9px; letter-spacing: .18em; margin-top: 6px; }

  .cta-band { padding: 28px 20px; }
  .cta-band h2 { font-size: 24px; line-height: 1.15; }
  .cta-band .btn { width: 100%; justify-content: center; }

  .footer { padding: 32px 20px 20px; text-align: center; }
  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "services"
      "studio"
      "contact";
    gap: 24px;
    padding-bottom: 20px;
    justify-items: center;
  }
  .footer-brand { grid-area: brand; max-width: 360px; }
  .footer-brand .footer-mark {
    height: 48px;
    margin: 0 auto 12px;
  }
  .footer-brand .name { font-size: 13.5px; }
  .footer-brand .tag { display: none; }
  .footer-brand p { display: none; }
  .footer-inner .footer-col:nth-of-type(2) { grid-area: services; }
  .footer-inner .footer-col:nth-of-type(3) { grid-area: studio; }
  .footer-inner .footer-col:nth-of-type(4) { grid-area: contact; }
  .footer-col { width: 100%; }
  .footer-col h5 {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: .26em;
    text-align: center;
  }
  .footer-col a {
    font-size: 12px;
    padding: 3px 0;
    line-height: 1.55;
    text-align: center;
  }
  .footer-col .info {
    font-size: 12px;
    line-height: 1.6;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .footer-col .info a { padding: 4px 0; text-align: left; }
  .contact-link { gap: 10px; padding: 4px 0 !important; display: inline-flex !important; }
  .contact-icon { width: 14px; height: 14px; }
  .footer-bottom {
    margin-top: 12px;
    flex-direction: row; flex-wrap: wrap;
    justify-content: center;
    gap: 4px 10px; font-size: 9px;
    text-align: center;
  }
  .footer-bottom .sep { margin: 0 5px; }

  .process-blocks { grid-template-columns: 1fr; }
  .process-block {
    padding: 28px 0 26px;
    background: transparent;
    min-height: 0;
    position: relative;
  }
  .process-block::before {
    left: 0; width: 28px;
    background: rgba(214,181,133,.35);
    transition: width 480ms cubic-bezier(.2,.6,.2,1), background 320ms;
  }
  .process-block h4 {
    font-size: 16.5px;
    margin-bottom: 8px;
    line-height: 1.3;
    max-width: 80%;
    color: var(--paper);
    transition: transform 420ms cubic-bezier(.2,.6,.2,1);
  }
  .process-block p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255,255,255,.7);
    max-width: 56ch;
    margin: 0;
  }
  .process-step {
    font-size: 56px;
    top: 4px; right: 0;
    color: rgba(214,181,133,.08);
    transition:
      color 480ms cubic-bezier(.2,.6,.2,1),
      transform 540ms cubic-bezier(.2,.6,.2,1);
  }
  .process .process-blocks { background: transparent; border: 0; gap: 0; }
  .process .process-block { border-bottom: 1px solid rgba(214,181,133,.14); }
  .process .process-block:last-child { border-bottom: 0; padding-bottom: 0; }
  .process-block:hover { background: transparent; }

  /* Scroll-driven hover: whichever block is centered in viewport gets the
     hover-style highlight (gold rule extends, step number pops, title shifts).
     All other blocks remain fully visible with body text — just without the accent. */
  .process-block.is-active::before {
    width: 72px;
    background: var(--gold-500);
  }
  .process-block.is-active h4 {
    transform: translateX(3px);
  }
  .process-block.is-active .process-step {
    color: rgba(214,181,133,.26);
    transform: translate(-4px, -2px);
  }
  /* Lighter section padding so it doesn't feel heavy */
  .process.section { padding: 40px 18px; }
  .process .section-head { margin-bottom: 22px; gap: 10px; }
  .process .section-eyebrow { margin-bottom: 8px; }
  .process .section-title { font-size: 26px; line-height: 1.1; }
  .process .section-lede { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.62); }

  .faq-toggle { padding: 18px 0; gap: 16px; }
  .faq-toggle h3 { font-size: 15.5px; line-height: 1.3; }
  .faq-answer p { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }

  .carousel { max-width: 100%; }
  .testimonial { padding: 36px 22px 22px; min-height: 0; }
  .testimonial .t-mark { font-size: 48px; top: 8px; left: 18px; }
  .t-quote { font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
  .t-meta { padding-top: 14px; gap: 12px; }
  .t-avatar { width: 36px; height: 36px; font-size: 11px; }
  .t-author { font-size: 12.5px; }
  .t-role { font-size: 10px; letter-spacing: .18em; }
  .carousel-controls { margin-top: 20px; gap: 14px; }
  .carousel-btn { width: 38px; height: 38px; }

  .wa-fab {
    right: 14px; bottom: 14px;
    width: 52px; height: 52px;
  }
}

/* --------- Small phone (≤ 380px) --------- */
@media (max-width: 380px) {
  .section { padding: 32px 16px; }
  .hero { padding: 28px 16px 36px; }
  .hero h1 { font-size: clamp(22px, 7.4vw, 32px); }
  .section-title { font-size: 24px; }
  .cta-band { padding: 24px 16px; }
  .cta-band h2 { font-size: 22px; }
  .quote { font-size: 22px; }
  .service { padding: 22px 16px; }
  .service-watermark { font-size: 56px; }
  .testimonial { padding: 32px 18px 20px; }
  .stat .n { font-size: 22px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) {
    grid-column: 1 / -1; border-top: 1px solid var(--border);
    padding-top: 18px; margin-top: 18px;
  }
}
