/* ==========================================================================
   ADOLAS CONSTRUCTION LIMITED — stylesheet
   Palette:  navy #0d2c4e / navy-deep #081b2e / gold #f0a83c / gold-deep #c97f1e
             brick #a8532e / cream #f7f3ea / paper #fffdf8 / ink #1c1a17
   Type:     Fraunces (display) + Manrope (body/utility)
   ========================================================================== */

:root{
  --navy: #0d2c4e;
  --navy-deep: #081b2e;
  --navy-soft: #16406e;
  --gold: #f0a83c;
  --gold-deep: #c97f1e;
  --brick: #a8532e;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --ink: #1c1a17;
  --ink-soft: #6b6357;
  --line: #ded2b8;
  --line-dark: rgba(247,243,234,0.18);

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius: 2px;
  --ease: cubic-bezier(.22,.68,0,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
@media (max-width: 480px){
  .container{ padding: 0 20px; }
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before{
  content:"";
  width: 22px; height: 1px;
  background: var(--gold-deep);
  display:inline-block;
}
.eyebrow.on-dark{ color: var(--gold); }
.eyebrow.on-dark::before{ background: var(--gold); }
.eyebrow.center{ justify-content:center; }
.eyebrow.center::before{ display:none; }
.eyebrow.center::after{ content:""; width:22px; height:1px; background: currentColor; }

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 15px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}
.btn svg{ width:14px; height:14px; transition: transform .3s var(--ease); }
.btn:hover svg{ transform: translateX(4px); }
.btn-gold{ background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover{ background: var(--gold-deep); }
.btn-line{ border-color: var(--line-dark); color: var(--cream); background: transparent; }
.btn-line:hover{ border-color: var(--gold); color: var(--gold); }
.btn-navy{ background: var(--navy); color: var(--cream); }
.btn-navy:hover{ background: var(--navy-deep); }
.btn-outline-navy{ border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline-navy:hover{ background: var(--navy); color: var(--cream); }
.btn-block{ width:100%; justify-content:center; }
.btn[disabled]{ opacity:.6; cursor:not-allowed; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .3s ease;
  padding: 22px 0;
}
.site-header.is-scrolled{
  background: rgba(8,27,46,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(8,27,46,0.18);
  padding: 12px 0;
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:44px; width:auto; transition: height .3s ease; }
.site-header.is-scrolled .brand img{ height:36px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-text strong{
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.brand-text span{
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav{ display:flex; align-items:center; gap: 40px; }
.main-nav ul{ display:flex; gap: 34px; }
.main-nav a{
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:0;
  height:1px; background: var(--gold);
  transition: right .35s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after{ right:0; }
.main-nav a.active{ color: var(--gold); }

.nav-cta{ display:flex; align-items:center; gap:20px; }
.nav-toggle{
  display:none;
  width:42px; height:42px;
  border:1px solid var(--line-dark);
  background: transparent;
  border-radius: var(--radius);
  color: var(--cream);
  align-items:center; justify-content:center;
  cursor:pointer;
}
.nav-toggle svg{ width:18px; height:18px; }

@media (max-width: 900px){
  .main-nav{
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    background: var(--navy-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    gap: 40px;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{ flex-direction:column; gap:26px; }
  .nav-cta{ width:100%; }
  .nav-cta .btn{ width:100%; justify-content:center; }
  .nav-toggle{ display:inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex;
  align-items:flex-end;
  color: var(--cream);
  overflow:hidden;
  background: var(--navy-deep);
}
.hero-media{ position:absolute; inset:0; }
.hero-media img{
  width:100%; height:100%; object-fit:cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom{ to{ transform: scale(1); } }
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(8,20,34,0.94) 0%, rgba(8,20,34,0.55) 42%, rgba(8,20,34,0.35) 65%, rgba(8,20,34,0.72) 100%);
}
.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  /* was: padding: 200px 0 64px;  <- the "0" here zeroed out the
     container's left/right padding on every screen size, which is
     why the hero text sat flush against the mobile edge. Now we only
     set top/bottom here and let .container supply the side padding. */
  padding-top: 200px;
  padding-bottom: 64px;
}
.hero-tag{
  display:flex; align-items:center; gap:14px;
  font-size:12px; letter-spacing:0.24em; text-transform:uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.hero-tag .dot{ width:6px; height:6px; border-radius:50%; background: var(--gold); }
.hero h1{
  font-size: clamp(42px, 6.6vw, 92px);
  color: var(--paper);
  max-width: 15ch;
}
.hero h1 em{
  font-style: italic;
  color: var(--gold);
}
.hero-sub{
  max-width: 46ch;
  margin: 26px 0 0;
  font-size: 17px;
  color: rgba(247,243,234,0.82);
}
.hero-actions{ display:flex; gap:18px; margin-top: 44px; flex-wrap:wrap; }

.hero-scroll{
  position:absolute; right: 32px; bottom: 40px; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:12px;
  color: rgba(247,243,234,0.7);
}
.hero-scroll span{ writing-mode: vertical-rl; font-size:11px; letter-spacing:0.2em; text-transform:uppercase; }
.hero-scroll .line{ width:1px; height:56px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine{ 0%,100%{ opacity:.35; } 50%{ opacity:1; } }

@media (max-width: 600px){
  .hero-scroll{ display:none; }
  .hero-inner{ padding-top: 150px; }
}

/* ==========================================================================
   Blueprint hairline divider — the signature motif
   ========================================================================== */
.blueprint-divider{
  position: relative;
  height: 96px;
  overflow: hidden;
  background: var(--navy-deep);
}
.blueprint-divider svg{
  position:absolute; left:50%; top:50%;
  transform: translate(-50%,-50%);
  width: 100%; max-width: 1200px; height: auto;
}
.blueprint-divider path{
  fill:none; stroke: var(--gold);
  stroke-width: 1.2;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  opacity: .55;
}
.blueprint-divider.is-drawn path{
  transition: stroke-dashoffset 2.4s var(--ease);
  stroke-dashoffset: 0;
}
.blueprint-divider .ticks line{ stroke: var(--line-dark); stroke-width:1; }

/* Sketch icon used across service/step cards */
.sketch-icon{ width: 54px; height: 54px; }
.sketch-icon path, .sketch-icon circle, .sketch-icon rect{
  fill:none; stroke: var(--gold-deep); stroke-width: 1.4; stroke-linecap:round; stroke-linejoin:round;
  stroke-dasharray: 240; stroke-dashoffset: 240;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.is-visible .sketch-icon path, .is-visible .sketch-icon circle, .is-visible .sketch-icon rect{ stroke-dashoffset: 0; }

/* ==========================================================================
   Reveal-on-scroll utility
   ========================================================================== */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible{ opacity:1; transform:none; }
.reveal-stagger > *{ transition-delay: calc(var(--i,0) * 90ms); }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
.section{ padding: 120px 0; }
.section-tight{ padding: 88px 0; }
.section-navy{ background: var(--navy); color: var(--cream); }
.section-navy h2, .section-navy h3{ color: var(--paper); }
.section-deep{ background: var(--navy-deep); color: var(--cream); }
.section-deep h2{ color: var(--paper); }
.section-head{ max-width: 640px; margin-bottom: 64px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(30px, 4vw, 46px); margin-top: 18px; }
.section-head p{ margin-top:18px; color: var(--ink-soft); font-size:16px; }
.section-navy .section-head p, .section-deep .section-head p{ color: rgba(247,243,234,0.75); }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats{
  background: var(--navy-deep);
  color: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat{ text-align:center; padding: 0 12px; position:relative; }
.stat + .stat::before{
  content:""; position:absolute; left:0; top:8px; bottom:8px; width:1px;
  background: var(--line-dark);
}
.stat b{
  display:block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  color: var(--gold);
  font-weight:600;
}
.stat span{ font-size: 12.5px; letter-spacing: 0.1em; text-transform:uppercase; color: rgba(247,243,234,0.72); }
@media (max-width: 760px){
  .stats-grid{ grid-template-columns: repeat(2,1fr); row-gap: 36px; }
  .stat:nth-child(3)::before{ display:none; }
}

/* ==========================================================================
   Services / What we build
   ========================================================================== */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card{
  background: var(--paper);
  padding: 44px 32px;
  transition: background .35s ease, transform .35s ease;
}
.service-card:hover{ background: var(--cream); }
.service-card .num{
  font-family: var(--font-display);
  color: var(--line);
  font-size: 15px;
  margin-bottom: 24px;
  letter-spacing: .05em;
}
.service-card h3{ font-size: 21px; margin: 20px 0 12px; }
.service-card p{ color: var(--ink-soft); font-size: 14.5px; }
@media (max-width: 980px){ .services-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .services-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Process (real sequence — numbered)
   ========================================================================== */
.process{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.process::before{
  content:"";
  position:absolute; top:27px; left: 6%; right: 6%;
  height:1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
  z-index:0;
}
.step{ position:relative; z-index:1; }
.step-index{
  width:56px; height:56px;
  border-radius:50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  color: var(--brick);
  font-size:19px;
  margin-bottom: 26px;
}
.step h3{ font-size:19px; margin-bottom:10px; }
.step p{ color: var(--cream); font-size:14.5px; }
@media (max-width: 900px){
  .process{ grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .process::before{ display:none; }
}
@media (max-width: 560px){ .process{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Project cards (shared: homepage preview + projects grid)
   Images now display as-is (no grayscale / dark overlay / grid-lines).
   ========================================================================== */
.project-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px){ .project-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .project-grid{ grid-template-columns: 1fr; } }

.project-card{
  position: relative;
  aspect-ratio: 4 / 5;
  overflow:hidden;
  border-radius: var(--radius);
  background: var(--navy-deep);
  cursor: pointer;
  display:block;
}
.project-card .photo{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  /* removed: grayscale/contrast/brightness filter + dimmed opacity */
  transform: scale(1.02);
  transition: transform .8s var(--ease);
}
.project-card:hover .photo, .project-card:focus-visible .photo{
  transform: scale(1.07);
}
.project-card .blueprint-overlay{
  /* removed: dark navy gradient wash over the photo */
  display: none;
}
.project-card .grid-lines{
  /* removed: overlaid grid pattern on the photo */
  display: none;
}
.project-card .card-body{
  position:absolute; left:0; right:0; bottom:0; padding: 26px;
  color: var(--cream);
  /* light gradient kept only behind the text so captions stay readable
     on top of a full-color photo — not a color wash over the whole image */
  background: linear-gradient(0deg, rgba(8,27,46,0.85) 0%, rgba(8,27,46,0) 100%);
  padding-top: 60px;
}
.project-card .tag{
  display:inline-block;
  font-size: 10.5px; letter-spacing:0.16em; text-transform:uppercase;
  color: var(--gold);
  border: 1px solid rgba(240,168,60,0.5);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.project-card h3{ color: var(--paper); font-size: 22px; }
.project-card .loc{ font-size:13px; color: rgba(247,243,234,0.7); margin-top:6px; }
.project-card .expand{
  position:absolute; top:20px; right:20px;
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(247,243,234,0.4);
  display:flex; align-items:center; justify-content:center;
  color: var(--cream);
  transition: background .3s ease, border-color .3s ease;
}
.project-card:hover .expand{ background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.project-card .expand svg{ width:14px; height:14px; }

.view-all-row{ display:flex; justify-content:center; margin-top: 56px; }

/* ==========================================================================
   Filter tabs (projects page)
   ========================================================================== */
.filters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 48px; }
.filter-btn{
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor:pointer;
  transition: all .3s ease;
}
.filter-btn:hover{ border-color: var(--brick); color: var(--brick); }
.filter-btn.active{ background: var(--navy); border-color: var(--navy); color: var(--cream); }
.project-card[hidden]{ display:none; }

.results-meta{ font-size: 13px; color: var(--ink-soft); margin-bottom: 28px; }

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox{
  position: fixed; inset:0; z-index: 900;
  background: rgba(8,20,34,0.95);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition: opacity .35s ease, visibility .35s ease;
  padding: 40px;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox-content{ max-width: 900px; width:100%; text-align:center; }
.lightbox-content img{ max-height: 74vh; margin: 0 auto; border-radius: 2px; width:auto; }
.lightbox-caption{ color: var(--cream); margin-top: 22px; }
.lightbox-caption .tag{ color: var(--gold); font-size:11px; letter-spacing:.16em; text-transform:uppercase; }
.lightbox-caption h3{ color: var(--paper); font-size:22px; margin-top:8px; }
.lightbox-close, .lightbox-nav{
  position:absolute;
  width:46px; height:46px; border-radius:50%;
  border: 1px solid rgba(247,243,234,0.3);
  color: var(--cream);
  background: rgba(255,255,255,0.04);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.lightbox-close{ top: 28px; right: 28px; }
.lightbox-close svg, .lightbox-nav svg{ width:18px; height:18px; }
.lightbox-nav.prev{ left: 24px; top:50%; transform:translateY(-50%); }
.lightbox-nav.next{ right: 24px; top:50%; transform:translateY(-50%); }
.lightbox-nav:hover, .lightbox-close:hover{ border-color: var(--gold); color: var(--gold); }
@media (max-width: 700px){
  .lightbox{ padding: 20px; }
  .lightbox-nav{ width:38px; height:38px; }
}

/* ==========================================================================
   About page specifics
   ========================================================================== */
.page-hero{
  position:relative;
  padding: 190px 0 100px;
  background: var(--navy-deep);
  color: var(--cream);
  overflow:hidden;
}
.page-hero .grid-lines{
  position:absolute; inset:0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .5;
}
.page-hero .container{ position:relative; z-index:1; }
.page-hero h1{ color: var(--paper); font-size: clamp(38px, 5.2vw, 64px); max-width: 18ch; margin-top: 18px; }
.page-hero p.lede{ max-width: 56ch; margin-top:20px; color: rgba(247,243,234,0.78); font-size:17px; }
.breadcrumb{ display:flex; gap:8px; align-items:center; font-size:12.5px; color: rgba(247,243,234,0.55); letter-spacing:.05em; text-transform:uppercase; margin-bottom:6px;}
.breadcrumb a:hover{ color: var(--gold); }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items:center;
}
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; gap: 44px; } }
.split-media{ position:relative; }
.split-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio: 4/5; border-radius: 2px; }
.split-media .frame{
  position:absolute; inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold-deep);
  z-index:-1;
}
.split h2{ font-size: clamp(28px, 3.6vw, 40px); }
.split p{ color: var(--ink-soft); margin-top:18px; }
.split p + p{ margin-top:14px; }

.values-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 900px){ .values-grid{ grid-template-columns: 1fr; } }
.value-card h3{ font-size: 20px; margin: 20px 0 10px; }
.value-card p{ color: var(--ink-soft); font-size:14.5px; }

.team-strip{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media (max-width: 760px){ .team-strip{ grid-template-columns: 1fr; } }
.team-photo{ position:relative; overflow:hidden; aspect-ratio: 3/4; border-radius:2px; }
.team-photo img{ width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.team-photo:hover img{ transform: scale(1.06); }
.team-photo .cap{
  position:absolute; left:0; right:0; bottom:0; padding: 18px 20px;
  background: linear-gradient(0deg, rgba(8,20,34,.88), transparent);
  color: var(--cream); font-size:13px; letter-spacing:.04em;
}

/* Credentials row */
.credentials{
  display:flex; flex-wrap:wrap; gap: 14px 40px;
  padding-top: 44px; margin-top: 44px;
  border-top: 1px solid var(--line);
}
.credential{ display:flex; align-items:center; gap:12px; color: var(--ink-soft); font-size:13.5px; }
.credential svg{ width:20px; height:20px; color: var(--gold-deep); flex-shrink:0; }

/* ==========================================================================
   Testimonial band
   ========================================================================== */
.testimonial{
  max-width: 780px; margin: 0 auto; text-align:center;
}
.testimonial blockquote{
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--paper);
  line-height:1.45;
  margin:0;
}
.testimonial .who{ margin-top: 30px; font-size:13px; letter-spacing:.08em; text-transform:uppercase; color: var(--gold); }
.testimonial-quote-mark{ font-family: var(--font-display); font-size:80px; color: var(--gold); line-height:0; display:block; margin-bottom: 10px; opacity:.8; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: var(--gold);
  color: var(--navy-deep);
  padding: 70px 0;
}
.cta-band .container{
  display:flex; align-items:center; justify-content:space-between; gap: 32px; flex-wrap:wrap;
}
.cta-band h2{ color: var(--navy-deep); font-size: clamp(26px, 3.4vw, 38px); max-width: 16ch; }
.cta-band .btn-navy:hover{ background:#000; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-wrap{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}
@media (max-width: 900px){ .contact-wrap{ grid-template-columns: 1fr; } }

.contact-info{
  background: var(--navy-deep);
  color: var(--cream);
  padding: 56px 44px;
  position:relative;
  overflow:hidden;
}
.contact-info .grid-lines{
  position:absolute; inset:0;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity:.4;
}
.contact-info > *{ position:relative; z-index:1; }
.contact-info h2{ color: var(--paper); font-size: 28px; margin-top:16px; }
.contact-info p.lede{ color: rgba(247,243,234,0.75); margin-top:14px; font-size:14.5px; }
.contact-list{ margin-top: 40px; display:flex; flex-direction:column; gap: 26px; }
.contact-list li{ display:flex; gap:16px; align-items:flex-start; }
.contact-list svg{ width:20px; height:20px; color: var(--gold); flex-shrink:0; margin-top:2px; }
.contact-list .label{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; color: var(--gold); display:block; margin-bottom:4px; }
.contact-list a:hover{ color: var(--gold); }
.social-row{ display:flex; gap:12px; margin-top: 44px; }
.social-row a{
  width:40px; height:40px; border-radius:50%;
  border:1px solid var(--line-dark);
  display:flex; align-items:center; justify-content:center;
  transition: border-color .3s ease, background .3s ease;
}
.social-row svg{ width:16px; height:16px; }
.social-row a:hover{ border-color: var(--gold); background: rgba(240,168,60,0.1); }

.contact-form{ padding: 56px 48px; }
.contact-form .eyebrow{ margin-bottom: 6px; }
.contact-form h2{ font-size: 26px; margin-bottom: 8px; }
.contact-form > p{ color: var(--ink-soft); margin-bottom: 36px; font-size:14.5px; }

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }

.field{ margin-bottom: 22px; }
.field label{
  display:block; font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color: var(--ink-soft); margin-bottom: 9px;
}
.field .req{ color: var(--brick); }
.field input, .field select, .field textarea{
  width:100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--gold-deep);
  background: var(--paper);
  outline:none;
}
.field textarea{ min-height: 130px; resize: vertical; }
.field.has-error input, .field.has-error select, .field.has-error textarea{ border-color: var(--brick); background: #fbf1ec; }
.field .error-msg{ display:none; color: var(--brick); font-size:12px; margin-top:7px; }
.field.has-error .error-msg{ display:block; }

.budget-chips{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor:pointer;
  transition: all .25s ease;
  user-select:none;
}
.chip input{ display:none; }
.chip.checked{ background: var(--navy); border-color: var(--navy); color: var(--cream); }

.form-foot{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-top:8px; }
.form-note{ font-size:12.5px; color: var(--ink-soft); }

.form-status{
  display:none;
  align-items:center; gap:14px;
  padding: 18px 20px;
  border-radius: var(--radius);
  margin-bottom: 26px;
  font-size: 14px;
}
.form-status.show{ display:flex; }
.form-status.success{ background: #eef6ee; color: #2c5c34; border:1px solid #bfe0c4; }
.form-status.error{ background: #fbf1ec; color: #7a3418; border:1px solid #eac6b3; }
.form-status svg{ width:20px; height:20px; flex-shrink:0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--navy-deep); color: rgba(247,243,234,0.75); padding: 84px 0 0; }
.footer-top{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 900px){ .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 44px; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-brand img{ height: 46px; margin-bottom: 18px; }
.footer-brand p{ font-size:14px; max-width: 32ch; color: rgba(247,243,234,0.6); }
.footer-col h4{
  color: var(--paper); font-family: var(--font-body); font-size:13px;
  letter-spacing:.12em; text-transform:uppercase; margin-bottom: 22px; font-weight:700;
}
.footer-col ul{ display:flex; flex-direction:column; gap:13px; }
.footer-col a{ font-size:14px; }
.footer-col a:hover{ color: var(--gold); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
  padding: 26px 0 30px;
  font-size: 12.5px;
  color: rgba(247,243,234,0.45);
}
.footer-bottom a:hover{ color: var(--gold); }

/* ==========================================================================
   Misc utility
   ========================================================================== */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.gold{ color: var(--gold); }
.mono-tag{ font-family: var(--font-body); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-soft); }

/* ==========================================================================
   Small-screen fit refinements (phones)
   ========================================================================== */
@media (max-width: 480px){
  img, svg, video{ max-width: 100%; }

  .section{ padding: 72px 0; }
  .section-tight{ padding: 56px 0; }
  .section-head{ margin-bottom: 40px; }

  .hero-inner{ padding-top: 140px; padding-bottom: 48px; }
  .hero h1{ font-size: clamp(34px, 10vw, 44px); }
  .hero-actions{ flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn{ justify-content: center; }

  .btn{ padding: 14px 22px; }

  .stats{ padding: 48px 0; }
  .stat b{ font-size: 30px; }

  .service-card{ padding: 32px 22px; }

  .cta-band{ padding: 48px 0; text-align: center; }
  .cta-band .container{ justify-content: center; text-align: center; }
  .cta-band h2{ max-width: none; }

  .page-hero{ padding: 150px 0 64px; }

  .contact-info{ padding: 40px 24px; }
  .contact-form{ padding: 40px 24px; }

  .footer-top{ padding-bottom: 44px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; gap: 8px; }

  .split-media .frame{ inset: 14px -14px -14px 14px; }
}

/* Skip link */
.skip-link{
  position:absolute; left:-999px; top:0; background: var(--gold); color:var(--navy-deep);
  padding: 12px 18px; z-index:1000; font-weight:700;
}
.skip-link:focus{ left: 16px; top: 16px; }