/* ============================================================
   GLIMPSE CREATION — Design tokens
   Palette drawn from the brand mark: deep navy, champagne/brass,
   warm ivory. Signature motif: viewfinder corner brackets — a
   literal "glimpse" through the frame.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Fraunces:ital,opsz,wght@1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  /* --- ink (navy) --- */
  --navy: #0B1120;
  --navy-soft: #121A2E;
  --navy-elevated: #182238;
  --navy-line: rgba(226,213,186,0.14);
  --text-on-navy: #F3EFE6;
  --text-on-navy-muted: #A9AEC0;

  /* --- paper (ivory) --- */
  --paper: #F6F3EC;
  --paper-card: #FFFFFF;
  --paper-line: #E4DFD2;
  --text-on-paper: #171A24;
  --text-on-paper-muted: #5C5E6B;

  /* --- brand accent: champagne / brass --- */
  --brass: #C7A25C;
  --brass-bright: #E4C589;
  --brass-deep: #9C7A3C;
  --brass-ink: #241C0C;

  /* --- utility --- */
  --signal: #7C8CA8;
  --error: #B4432E;

  /* --- type --- */
  --f-display: 'Fraunces', 'Georgia', serif;
  --f-voice: 'Fraunces', 'Georgia', serif;
  --f-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-hero: clamp(2.5rem, 6vw, 5.2rem);
  --fs-h1: clamp(2.1rem, 4.2vw, 3.2rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 1.8vw, 1.4rem);
  --fs-lead: clamp(1.02rem, 1.5vw, 1.25rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-eyebrow: 0.74rem;

  /* --- rhythm --- */
  --gutter: clamp(1.5rem, 5vw, 4.5rem);
  --section-pad: clamp(4.5rem, 9vw, 7.5rem);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(.16,1,.3,1);

  --img-logo: url('assets/images/logo.png');
  --img-analytics: url('assets/images/analytics-3d.png');
  --img-laptop: url('assets/images/laptop-dashboard.png');
  --img-seo: url('assets/images/seo-focus.png');
  --img-dm: url('assets/images/digital-marketing.png');
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--fs-body);
  color: var(--text-on-paper);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p{ margin: 0; }
button, input, textarea{ font-family: inherit; }
::selection{ background: var(--brass); color: var(--brass-ink); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
:focus-visible{ outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

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

.eyebrow{
  font-family: var(--f-body);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  color: var(--brass-deep);
}
.eyebrow::before{ content:''; width: 22px; height: 1.5px; border-radius: 2px; background: currentColor; display: inline-block; }
.on-navy .eyebrow{ color: var(--brass); }

/* ============================================================
   Signature motif — viewfinder corner brackets
   ============================================================ */
.frame{ position: relative; }
.frame::before, .frame::after,
.frame .fr-tl, .frame .fr-br{ content:''; position:absolute; width:22px; height:22px; pointer-events:none; z-index:2; }
.frame::before{ top:-1px; left:-1px; border-top:2px solid var(--brass); border-left:2px solid var(--brass); }
.frame::after{ bottom:-1px; right:-1px; border-bottom:2px solid var(--brass); border-right:2px solid var(--brass); }

/* ambient aperture ring — used once, in the hero */
@keyframes apertureSpin{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }
.aperture{
  position: absolute;
  width: clamp(280px, 34vw, 460px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--navy-line);
  pointer-events: none;
}
.aperture::before{
  content:'';
  position: absolute; inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(199,162,92,.35);
  animation: apertureSpin 60s linear infinite;
}
.aperture::after{
  content:'';
  position: absolute; inset: 34%;
  border-radius: 50%;
  border: 1px solid rgba(199,162,92,.5);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn{
  --btn-bg: var(--brass);
  --btn-fg: var(--brass-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s ease;
  will-change: transform;
}
.btn:hover{ transform: translateY(-3px); box-shadow: 0 16px 30px -14px rgba(199,162,92,.6); }
.btn:active{ transform: translateY(-1px); }
.btn .arrow{ transition: transform .35s var(--ease-out); }
.btn:hover .arrow{ transform: translateX(4px); }

.btn-ghost{ --btn-bg: transparent; --btn-fg: var(--text-on-navy); border-color: var(--navy-line); }
.btn-ghost:hover{ background: rgba(243,239,230,.06); box-shadow: none; border-color: var(--brass); }

.btn-outline-light{ --btn-bg: transparent; --btn-fg: var(--text-on-paper); border-color: var(--paper-line); }
.btn-outline-light:hover{ background: var(--text-on-paper); --btn-fg: var(--paper); box-shadow: none; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header{ position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 1.05rem 0; transition: background .4s ease, border-color .4s ease, padding .4s ease, backdrop-filter .4s ease; border-bottom: 1px solid transparent; }
.site-header.scrolled{ background: rgba(11,17,32,.86); backdrop-filter: blur(14px) saturate(140%); border-color: var(--navy-line); padding: 0.7rem 0; }
.site-header .wrap{ display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand{ display: flex; align-items: center; gap: .6rem; }
.brand img{
  height: 58px;
  width: auto;
  padding: .5rem 1.1rem;
  border-radius: 14px;
  background:
    linear-gradient(rgba(11,17,32,.92), rgba(11,17,32,.92)) padding-box,
    linear-gradient(120deg, var(--brass), var(--brass-bright) 55%, var(--brass-deep)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 0 1px rgba(228,197,137,.10), 0 14px 30px -14px rgba(199,162,92,.5);
  transition: box-shadow .35s ease, transform .35s ease;
}
.brand:hover img{
  box-shadow: 0 0 0 1px rgba(228,197,137,.16), 0 18px 36px -14px rgba(199,162,92,.65);
  transform: translateY(-1px);
}

.main-nav{ display: flex; align-items: center; gap: 2.4rem; }
.main-nav ul{ display: flex; gap: 2.2rem; }
.main-nav a{ position: relative; font-weight: 600; font-size: 0.94rem; color: var(--text-on-navy-muted); padding: .3rem 0; transition: color .25s ease; }
.main-nav a::after{ content:''; position: absolute; left:0; right: 100%; bottom: -2px; height: 1.5px; border-radius: 2px; background: var(--brass); transition: right .35s var(--ease-out); }
.main-nav a:hover, .main-nav a[aria-current="page"]{ color: var(--text-on-navy); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after{ right: 0; }

.nav-cta{ display: flex; align-items: center; gap: 1rem; }
.nav-cta .btn{ padding: 0.68rem 1.3rem; font-size: 0.83rem; }

.menu-toggle{ display: none; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--navy-line); background: transparent; position: relative; cursor: pointer; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after{ content:''; position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--text-on-navy); transition: transform .3s var(--ease-out), opacity .3s ease; }
.menu-toggle span{ top: 50%; transform: translateY(-50%); }
.menu-toggle span::before{ top: -7px; }
.menu-toggle span::after{ top: 7px; }
.menu-toggle[aria-expanded="true"] span{ background: transparent; }
.menu-toggle[aria-expanded="true"] span::before{ top:0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after{ top:0; transform: rotate(-45deg); }

.mobile-panel{ display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero{ background: var(--navy); color: var(--text-on-navy); overflow: hidden; padding-top: clamp(9rem, 16vw, 12rem); padding-bottom: clamp(5rem, 9vw, 7rem); position: relative; isolation: isolate; }
.hero::before{
  content:'';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(480px circle at var(--mx,72%) var(--my,28%), rgba(199,162,92,.14), transparent 62%),
    linear-gradient(180deg, rgba(11,17,32,0) 0%, var(--navy) 100%);
  pointer-events: none;
  transition: background .15s ease-out;
}
.hero .aperture.a1{ top: -6%; right: -4%; }
.hero .aperture.a2{ display:none; bottom: -18%; left: -8%; width: clamp(200px,22vw,320px); }
.hero .wrap{ position: relative; z-index: 1; }
.hero-inner{ max-width: 900px; position: relative; }
.hero h1{ font-family: var(--f-display); font-weight: 600; font-size: var(--fs-hero); line-height: 1.04; letter-spacing: -0.01em; margin: 1.1rem 0 1.6rem; }
.hero h1 em{ font-style: italic; font-weight: 500; color: var(--brass-bright); }
.hero .lead{ font-size: var(--fs-lead); color: var(--text-on-navy-muted); max-width: 600px; margin-bottom: 2.3rem; }
.hero-actions{ display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }

.hero.hero-compact{ padding-top: clamp(8rem, 14vw, 10.5rem); padding-bottom: clamp(3.2rem, 6vw, 5rem); }
.hero.hero-compact h1{ font-size: var(--fs-h1); margin-top: .9rem; }

.hero-strip{ display:flex; gap: clamp(1.6rem,4vw,3.2rem); flex-wrap:wrap; margin-top: 3rem; padding-top: 2.2rem; border-top: 1px solid var(--navy-line); }
.hero-strip div{ display:flex; flex-direction:column; gap:.3rem; }
.hero-strip strong{ font-family: var(--f-display); font-size: 1.5rem; font-weight:600; color: var(--brass-bright); }
.hero-strip span{ font-size: .82rem; color: var(--text-on-navy-muted); max-width: 160px; }

/* ============================================================
   Sections
   ============================================================ */
.section{ padding: var(--section-pad) 0; }
.section.on-navy{ background: var(--navy); color: var(--text-on-navy); }
.section.on-navy-soft{ background: var(--navy-soft); color: var(--text-on-navy); }
.section.on-paper{ background: var(--paper); color: var(--text-on-paper); }

.section-head{ max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2{ font-family: var(--f-display); font-weight: 600; font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -0.01em; margin-top: 0.9rem; }
.section-head .lead{ margin-top: 1.1rem; font-size: 1.05rem; color: var(--text-on-paper-muted); max-width: 580px; }
.on-navy .section-head .lead, .on-navy-soft .section-head .lead{ color: var(--text-on-navy-muted); }
.section-foot{ margin-top: 2.2rem; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
[data-reveal]{ opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
[data-reveal-group] > *{ transition-delay: calc(var(--i, 0) * 90ms); }

/* ============================================================
   Service cards
   ============================================================ */
.card-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.service-card{
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy-elevated); border: 1px solid var(--navy-line);
  border-radius: var(--radius-md); padding: 1.9rem 1.7rem; min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s ease;
}
.service-card::before{ content:''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .22; transition: opacity .45s ease, transform .6s ease; z-index:0; }
.service-card:hover::before{ opacity: .32; transform: scale(1.05); }
.service-card::after{ content:''; position: absolute; inset: 0; background: linear-gradient(190deg, rgba(11,17,32,.2) 0%, rgba(11,17,32,.75) 60%, rgba(11,17,32,.96) 100%); z-index:0; }
.service-card > *{ position: relative; z-index: 1; }
.card-grid .service-card:nth-child(1)::before{ background-image: var(--img-analytics); }
.card-grid .service-card:nth-child(2)::before{ background-image: var(--img-seo); }
.card-grid .service-card:nth-child(3)::before{ background-image: var(--img-laptop); }
.card-grid .service-card:nth-child(4)::before{ background-image: var(--img-dm); }
.card-grid .service-card:nth-child(5)::before{ background-image: var(--img-analytics); background-position: 70% 40%; }
.card-grid .service-card:nth-child(6)::before{ background-image: var(--img-laptop); background-position: 30% 60%; }
.service-card:hover{ transform: translateY(-6px); box-shadow: 0 28px 54px -22px rgba(0,0,0,.55); border-color: var(--brass); }
.service-card .tag{ width: auto; height: auto; border-radius: var(--radius-pill); background: rgba(11,17,32,.55); border: 1px solid rgba(228,197,137,.28); color: var(--brass-bright); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.74rem; padding: .35rem .8rem; margin-bottom: 1.2rem; align-self: flex-start; letter-spacing: .05em; }
.service-card h3{ font-family: var(--f-display); font-size: var(--fs-h3); font-weight: 600; margin-bottom: .6rem; color: #fff; }
.service-card p{ color: rgba(243,239,230,.82); font-size: 0.92rem; }

/* ============================================================
   Deep-dive channel blocks (image + copy, alternating)
   ============================================================ */
.channel{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: center; padding: clamp(2.8rem,5vw,3.6rem) 0; border-bottom: 1px solid var(--paper-line); }
.channel:last-child{ border-bottom: none; }
.channel:nth-child(even) .channel-media{ order: 2; }
.channel-media{ position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; background: var(--navy); }
.channel-media img{ width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.channel-media .frame::before, .channel-media .frame::after{ display:none; }
.channel-num{ font-family: var(--f-display); font-size: 0.85rem; font-weight: 700; color: var(--brass-deep); letter-spacing: .08em; }
.channel h3{ font-family: var(--f-display); font-weight: 600; font-size: var(--fs-h2); margin: .6rem 0 1rem; letter-spacing: -0.01em; }
.channel p{ color: var(--text-on-paper-muted); margin-bottom: 1rem; line-height: 1.75; }
.channel ul{ display: grid; gap: .7rem; margin-top: 1.2rem; }
.channel li{ display: flex; gap: .7rem; align-items: flex-start; font-size: 0.94rem; color: var(--text-on-paper); }
.channel li::before{ content:'—'; color: var(--brass-deep); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   Process timeline
   ============================================================ */
.process-quote{ font-family: var(--f-display); font-weight: 500; font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.95rem); line-height: 1.35; letter-spacing: -0.005em; max-width: 760px; color: var(--text-on-navy); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.process-quote span{ color: var(--brass-bright); font-style: normal; font-weight: 600; }

.timeline{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.timeline-step{ border-top: 2px solid var(--navy-line); padding-top: 1.3rem; position: relative; }
.timeline-step::before{ content:''; position: absolute; top: -2px; left: 0; height: 2px; width: 0; background: var(--brass); transition: width .6s var(--ease-out); }
.timeline-step:hover::before{ width: 100%; }
.timeline-step .num{ font-weight: 700; font-size: 0.85rem; color: var(--brass); display: block; margin-bottom: 0.9rem; letter-spacing: .02em; font-family: var(--f-display); }
.timeline-step h4{ font-family: var(--f-display); font-size: 1.05rem; font-weight: 600; margin-bottom: .55rem; }
.timeline-step p{ font-size: 0.88rem; color: var(--text-on-navy-muted); line-height: 1.55; }

/* ============================================================
   Industries chips
   ============================================================ */
.chip-field{ display: flex; flex-wrap: nowrap; gap: 0.8rem; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: .5rem; scrollbar-width: thin; scrollbar-color: var(--brass-deep) transparent; }
.chip-field::-webkit-scrollbar{ height: 6px; }
.chip-field::-webkit-scrollbar-thumb{ background: var(--brass-deep); border-radius: 4px; }
.chip{ flex: 0 0 auto; scroll-snap-align: start; font-family: var(--f-body); font-weight: 700; font-size: 0.85rem; padding: 0.75rem 1.25rem; border-radius: var(--radius-pill); border: 1px solid var(--paper-line); background: var(--paper-card); color: var(--text-on-paper); transition: border-color .3s ease, transform .3s var(--ease-out), color .3s ease, box-shadow .3s ease; }
.chip:hover{ border-color: var(--brass); color: var(--brass-deep); transform: translateY(-2px); box-shadow: 0 12px 24px -14px rgba(199,162,92,.5); }

/* ============================================================
   Why Glimpse / pull quote
   ============================================================ */
.pull-quote{ font-family: var(--f-display); font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.42; letter-spacing: -0.005em; max-width: 880px; }
.pull-quote strong{ color: var(--brass-bright); font-weight: 700; font-style: italic; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq{ max-width: 820px; }
.faq-item{ border-bottom: 1px solid var(--navy-line); }
.faq-item summary{ list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.5rem 0; font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; color: var(--text-on-navy); }
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .plus{ flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--navy-line); position: relative; transition: transform .35s var(--ease-out), border-color .3s ease; }
.faq-item summary .plus::before, .faq-item summary .plus::after{ content:''; position: absolute; background: var(--brass); }
.faq-item summary .plus::before{ top: 50%; left: 6px; right: 6px; height: 1.5px; transform: translateY(-50%); }
.faq-item summary .plus::after{ left: 50%; top: 6px; bottom: 6px; width: 1.5px; transform: translateX(-50%); transition: opacity .3s ease; }
.faq-item[open] summary .plus{ transform: rotate(180deg); border-color: var(--brass); }
.faq-item[open] summary .plus::after{ opacity: 0; }
.faq-item p{ padding-bottom: 1.6rem; color: var(--text-on-navy-muted); max-width: 640px; line-height: 1.7; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band{ position: relative; isolation: isolate; overflow: hidden; background: var(--navy); color: var(--text-on-navy); border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; border: 1px solid var(--navy-line); }
.cta-band .aperture{ right: -10%; top: -30%; width: clamp(220px,26vw,340px); }
.cta-band > *{ position: relative; z-index: 1; }
.cta-band h2{ font-family: var(--f-display); font-weight: 600; font-size: var(--fs-h2); letter-spacing: -0.01em; max-width: 480px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer{ background: var(--navy); color: var(--text-on-navy-muted); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; border-top: 1px solid var(--navy-line); }
.footer-top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--navy-line); }
.footer-brand img{
  height: 52px;
  margin-bottom: 1.3rem;
  padding: .45rem 1rem;
  border-radius: 12px;
  background:
    linear-gradient(rgba(11,17,32,.92), rgba(11,17,32,.92)) padding-box,
    linear-gradient(120deg, var(--brass), var(--brass-bright) 55%, var(--brass-deep)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 0 1px rgba(228,197,137,.08);
}
.footer-brand p{ max-width: 320px; font-size: 0.92rem; line-height: 1.65; }
.footer-col h5{ font-family: var(--f-body); font-weight: 800; font-size: 0.75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-on-navy); margin-bottom: 1.1rem; }
.footer-col ul{ display: flex; flex-direction: column; gap: .7rem; }
.footer-col a{ font-size: 0.92rem; font-weight: 500; transition: color .25s ease; }
.footer-col a:hover{ color: var(--brass-bright); }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; padding-top: 1.8rem; font-size: 0.82rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom .legal-links{ display:flex; gap: 1.4rem; }
.footer-bottom .legal-links a:hover{ color: var(--brass-bright); }
.footer-bottom .socials{ display: flex; gap: 1.1rem; }
.footer-bottom .socials a{ width: 34px; height: 34px; border: 1px solid var(--navy-line); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: border-color .25s ease, color .25s ease, background .25s ease; font-size: .78rem; }
.footer-bottom .socials a:hover{ border-color: var(--brass); color: var(--brass-bright); background: rgba(199,162,92,.08); }

/* ============================================================
   About page — numbered services list
   ============================================================ */
.services-list{ border-top: 1px solid var(--paper-line); }
.service-row{ display: grid; grid-template-columns: 90px 1.1fr 1.5fr; gap: 2rem; align-items: start; padding: 1.9rem 0; border-bottom: 1px solid var(--paper-line); transition: background .3s ease, padding-left .3s ease; }
.service-row:hover{ background: rgba(199,162,92,.06); padding-left: .5rem; }
.service-row .num{ font-family: var(--f-display); font-weight: 700; font-size: 0.95rem; color: var(--brass-deep); }
.service-row h3{ font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; }
.service-row p{ color: var(--text-on-paper-muted); font-size: 0.96rem; }

.split{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split .frame{ border-radius: var(--radius-md); overflow:hidden; }
.split img{ border-radius: var(--radius-md); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; box-shadow: 0 30px 60px -30px rgba(0,0,0,.5); }
.split .eyebrow{ margin-bottom: .9rem; }
.split h2{ font-family: var(--f-display); font-weight: 600; font-size: var(--fs-h2); letter-spacing: -0.01em; margin-bottom: 1.2rem; }
.split p{ color: var(--text-on-navy-muted); margin-bottom: 1.6rem; line-height: 1.7; }
.on-paper .split p{ color: var(--text-on-paper-muted); }

.values-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.value-card{ padding: 1.8rem; border-radius: var(--radius-md); background: var(--paper-card); border: 1px solid var(--paper-line); transition: transform .3s var(--ease-out), border-color .3s ease; }
.value-card:hover{ transform: translateY(-4px); border-color: var(--brass); }
.value-card .num{ font-family: var(--f-display); color: var(--brass-deep); font-weight: 700; font-size: .85rem; letter-spacing: .06em; margin-bottom: .8rem; display:block; }
.value-card h4{ font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; margin-bottom: .6rem; }
.value-card p{ font-size: .92rem; color: var(--text-on-paper-muted); }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid{ display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
.info-card{ background: var(--paper-card); border: 1px solid var(--paper-line); border-radius: var(--radius-md); padding: 1.6rem 1.7rem; margin-bottom: 1rem; display: flex; gap: 1.1rem; align-items: flex-start; transition: border-color .3s ease, transform .3s var(--ease-out); }
.info-card:hover{ border-color: var(--brass); transform: translateY(-3px); }
.info-card .mark{ width: 38px; height: 38px; border-radius: 50%; background: rgba(199,162,92,.14); color: var(--brass-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card h4{ font-size: 0.95rem; font-weight: 700; margin-bottom: .35rem; }
.info-card p, .info-card a{ font-size: 0.92rem; color: var(--text-on-paper-muted); }
.info-card a:hover{ color: var(--brass-deep); }

.hours-card{ background: var(--navy); color: var(--text-on-navy); border-radius: var(--radius-md); padding: 1.6rem 1.7rem; margin-top: 1.6rem; }
.hours-card h4{ font-family: var(--f-display); font-weight: 600; margin-bottom: 1rem; font-size: 1.05rem; }
.hours-row{ display: flex; justify-content: space-between; font-size: 0.88rem; padding: .5rem 0; border-bottom: 1px solid var(--navy-line); color: var(--text-on-navy-muted); }
.hours-row:last-child{ border-bottom: none; }
.hours-row span:last-child{ color: var(--text-on-navy); font-weight: 600; }

.form-card{ background: var(--paper-card); border: 1px solid var(--paper-line); border-radius: var(--radius-lg); padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: 0 40px 80px -50px rgba(18,20,28,.25); }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field{ margin-bottom: 1.3rem; }
.field label{ display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: .5rem; color: var(--text-on-paper); }
.field label .req{ color: var(--brass-deep); margin-left: .2rem; }
.field input, .field select, .field textarea{ width: 100%; border: 1px solid var(--paper-line); border-radius: var(--radius-sm); padding: 0.85rem 1rem; font-size: 0.95rem; background: var(--paper); color: var(--text-on-paper); transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.field textarea{ resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder{ color: #9AA3B2; }
.field input:focus, .field select:focus, .field textarea:focus{ outline: none; border-color: var(--brass); background: var(--paper-card); box-shadow: 0 0 0 4px rgba(199,162,92,.14); }
.field.has-error .err{ display: block; }
.field.has-error input{ border-color: var(--error); }
.field .err{ display: none; font-size: 0.8rem; color: var(--error); margin-top: .4rem; font-weight: 600; }

.checkbox-row{ display: flex; align-items: flex-start; gap: .7rem; margin-bottom: 1.6rem; }
.checkbox-row input{ margin-top: 0.2rem; accent-color: var(--brass-deep); width: 17px; height: 17px; flex-shrink: 0; }
.checkbox-row label{ font-size: 0.88rem; color: var(--text-on-paper-muted); }

.form-status{ margin-top: 1.1rem; font-weight: 700; font-size: 0.85rem; color: var(--brass-deep); display: none; }
.form-status.show{ display: block; }

/* ============================================================
   Legal pages (Terms / Privacy)
   ============================================================ */
.legal{ max-width: 800px; }
.legal .updated{ font-size: 0.85rem; color: var(--text-on-paper-muted); margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--paper-line); }
.legal-notice{ background: var(--paper-card); border: 1px dashed var(--paper-line); border-radius: var(--radius-md); padding: 1.3rem 1.5rem; margin-bottom: 3rem; font-size: 0.9rem; color: var(--text-on-paper-muted); }
.legal-notice strong{ color: var(--text-on-paper); }
.legal-block{ margin-bottom: 2.6rem; }
.legal-block .num{ font-family: var(--f-display); color: var(--brass-deep); font-weight: 700; font-size: .85rem; letter-spacing: .06em; display:block; margin-bottom:.6rem; }
.legal-block h2{ font-family: var(--f-display); font-weight: 600; font-size: 1.4rem; margin-bottom: 1rem; letter-spacing: -0.005em; }
.legal-block p{ color: var(--text-on-paper-muted); margin-bottom: .9rem; line-height: 1.75; }
.legal-block ul{ display: grid; gap: .6rem; margin: 1rem 0; }
.legal-block li{ display: flex; gap: .7rem; align-items: flex-start; font-size: 0.96rem; color: var(--text-on-paper-muted); }
.legal-block li::before{ content:'—'; color: var(--brass-deep); font-weight: 700; flex-shrink: 0; }
.legal-block a{ color: var(--brass-deep); font-weight: 600; }
.legal-block a:hover{ text-decoration: underline; }
.legal-toc{ display: flex; flex-direction: column; gap: .6rem; background: var(--paper-card); border: 1px solid var(--paper-line); border-radius: var(--radius-md); padding: 1.5rem 1.7rem; margin-bottom: 3rem; }
.legal-toc a{ font-size: 0.9rem; font-weight: 600; color: var(--text-on-paper-muted); transition: color .2s ease; }
.legal-toc a:hover{ color: var(--brass-deep); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px){
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
  .timeline{ grid-template-columns: repeat(2, 1fr); }
  .footer-top{ grid-template-columns: 1fr; gap: 2.2rem; }
  .split{ grid-template-columns: 1fr; }
  .split img{ order: -1; aspect-ratio: 16/9; }
  .contact-grid{ grid-template-columns: 1fr; }
  .channel, .channel:nth-child(even) .channel-media{ grid-template-columns: 1fr; order: -1; }
  .values-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .main-nav{ display: none; }
  .menu-toggle{ display: block; }
  .nav-cta .btn{ display: none; }

  .mobile-panel{ position: fixed; inset: 0; background: var(--navy); z-index: 90; display: flex; flex-direction: column; justify-content: center; padding: 2rem var(--gutter); transform: translateX(100%); transition: transform .5s var(--ease-out); }
  .mobile-panel.open{ transform: translateX(0); }
  .mobile-panel ul{ display: flex; flex-direction: column; gap: 1.7rem; margin-bottom: 2.4rem; }
  .mobile-panel a{ font-family: var(--f-display); font-weight: 600; font-size: 2.1rem; color: var(--text-on-navy); }

  .card-grid{ grid-template-columns: 1fr; }
  .timeline{ grid-template-columns: 1fr; }
  .service-row{ grid-template-columns: 1fr; gap: .6rem; }
  .form-row{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction: column; align-items: flex-start; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .hero-strip{ gap: 1.4rem; }
  .values-grid{ grid-template-columns: 1fr; }
  .legal-toc{ display:none; }
}
