/* ============================================================
   WAYPOINT CONSTRUCTION — editorial luxury system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* palette — sampled from the Waypoint logo */
  --bone:    #F6F1E8;   /* page background, warm cream (logo ground) */
  --bone-2:  #EFE9DB;   /* slightly deeper section */
  --paper:   #FBF8F1;   /* lightest cards */
  --ink:     #16201A;   /* warm near-black, faint green cast */
  --ink-2:   #2C342D;   /* softer ink */
  --stone:   #988B77;   /* warm taupe (logo "CONSTRUCTION") */
  --stone-2: #BDB4A2;   /* muted captions */
  --line:    #DBD4C4;   /* hairlines */
  --line-2:  #C9C0AC;
  --slate:   #1B4930;   /* deep forest green (logo wordmark) — primary brand */
  --slate-2: #225A3C;
  --brass:   #CAB05F;   /* gold (logo diamonds) — accent detail */

  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 72px);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- layout primitives ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(80px, 12vw, 180px); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--stone);
}
.eyebrow.on-dark { color: var(--stone-2); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-size: clamp(3rem, 8vw, 8rem);
}
h1, h2, h3 { font-family: var(--serif); font-weight: 300; letter-spacing: -0.01em; }
h2.head {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.06;
}
h3.sub { font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.12; }

.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 1.42;
  color: var(--ink-2);
}
.body { color: var(--ink-2); font-weight: 300; }
.muted { color: var(--stone); }
em.it { font-style: italic; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.8em;
  font-family: var(--sans); font-weight: 400;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 1.15em 2em;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--bone);
  cursor: pointer;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }
.btn--light { border-color: var(--bone); background: var(--bone); color: var(--ink); }
.btn--light:hover { background: transparent; color: var(--bone); }

.link {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--sans); font-weight: 400;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); position: relative; padding-bottom: 4px;
}
.link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.link:hover::after { transform: scaleX(1); }
.link .arr { transition: transform .5s var(--ease); }
.link:hover .arr { transform: translateX(5px); }

/* ---------- hairline rule ---------- */
.rule { height: 1px; background: var(--line); border: 0; }

/* ---------- image placeholder ---------- */
.ph {
  position: relative;
  background-color: #DED7C8;
  background-image:
    repeating-linear-gradient(135deg,
      rgba(26,24,20,0.045) 0, rgba(26,24,20,0.045) 1px,
      transparent 1px, transparent 11px);
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 14px; bottom: 12px;
  font-family: 'SFMono-Regular', ui-monospace, Menlo, monospace;
  font-size: 10.5px; letter-spacing: 0.06em;
  color: rgba(26,24,20,0.5);
  background: rgba(244,240,232,0.72);
  padding: 4px 8px; border: 1px solid rgba(26,24,20,0.08);
  backdrop-filter: blur(2px);
}
.ph.dark { background-color: #2A333D; background-image:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px,
      transparent 1px, transparent 11px); }
.ph.dark::after { color: rgba(255,255,255,0.55); background: rgba(35,44,54,0.6); border-color: rgba(255,255,255,0.12); }

/* .ph holding a real photo */
.ph[data-img] { background-image: none; }
.ph[data-img]::after { display: none; }
.ph[data-img] img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 22px;
  transition: background .6s var(--ease), padding .6s var(--ease), border-color .6s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; position: relative; }
.header .brand { order: -1; }
.header__bar { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 38px); flex-wrap: wrap; }
.header__sep { width: 1px; height: 15px; background: rgba(244,240,232,0.32); transition: background .6s var(--ease); }
.header.scrolled .header__sep { background: var(--line-2); }
.header__bar .phone { font-family: var(--sans); font-weight: 400; font-size: 12px;
  letter-spacing: 0.14em; color: var(--bone); transition: color .6s var(--ease); }
.header__bar .phone:hover { color: var(--brass); }
.header.scrolled .header__bar .phone { color: var(--ink); }
.header__tools { display: none; }

/* logo lockup */
.brand { display: block; position: relative; line-height: 0; }
.brand-img { display: block; height: 80px; width: auto; transition: opacity .5s var(--ease), height .6s var(--ease); }
.header .brand-dark { position: absolute; inset: 0; opacity: 0; }
.header.scrolled .brand-light { opacity: 0; }
.header.scrolled .brand-dark { opacity: 1; }
.header.scrolled .brand-img { height: 58px; }
.header.scrolled {
  background: rgba(244,240,232,0.9);
  backdrop-filter: blur(12px) saturate(1.1);
  padding-block: 14px;
  border-bottom-color: var(--line);
}
.header.scrolled .wordmark, .header.scrolled .nav a, .header.scrolled .header__tools a { color: var(--ink); }

.wordmark {
  font-family: var(--serif); font-weight: 500;
  font-size: 26px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--bone); line-height: 1; padding-left: 0.26em;
  display: flex; align-items: center; gap: 13px;
  transition: color .6s var(--ease);
}
.wordmark .mark {
  width: 9px; height: 9px; flex: none;
  background: var(--brass); transform: rotate(45deg);
}
.wordmark span > small {
  display: block; font-family: var(--sans); font-size: 8px; letter-spacing: 0.42em;
  color: var(--brass); margin-top: 5px; font-weight: 400; padding-left: 0.42em;
}

.nav { display: flex; gap: clamp(20px, 2.4vw, 44px); }
.nav a {
  font-family: var(--sans); font-weight: 400;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bone); position: relative; padding-block: 6px;
  transition: color .6s var(--ease), opacity .3s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.header__tools { display: flex; align-items: center; gap: 26px; }
.header__tools .phone {
  font-family: var(--sans); font-weight: 400; font-size: 12px;
  letter-spacing: 0.14em; color: var(--bone); transition: color .6s var(--ease);
}
.header__tools .phone:hover { color: var(--brass); }

.header .btn--head {
  font-size: 11px; padding: 0.95em 1.7em;
  border-color: var(--bone); background: transparent; color: var(--bone);
}
.header .btn--head:hover { background: var(--bone); color: var(--ink); }
.header.scrolled .btn--head { border-color: var(--ink); color: var(--ink); }
.header.scrolled .btn--head:hover { background: var(--ink); color: var(--bone); }

.burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: var(--bone); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media .ph { position: absolute; inset: 0; height: 100%; background-color: #3a4049; }
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,21,25,0.55) 0%, rgba(18,21,25,0.18) 48%, rgba(18,21,25,0) 72%),
    linear-gradient(180deg, rgba(18,21,25,0.45) 0%, rgba(18,21,25,0.12) 38%, rgba(18,21,25,0.55) 78%, rgba(18,21,25,0.82) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 5vw, 72px);
  padding-top: 150px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 30px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--bone); border: 1px solid rgba(244,240,232,0.4); padding: 8px 16px;
}
.hero__badge .dot { width: 5px; height: 5px; background: var(--brass); border-radius: 50%; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5.4rem); line-height: 1.05; max-width: none; font-weight: 300; }
.hero h1 em { font-style: italic; font-weight: 400; }
.hero__tag { font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem); line-height: 1.2; color: var(--brass);
  margin-top: 20px; letter-spacing: 0.01em; }
.hero__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  margin-top: clamp(28px, 4vw, 48px); flex-wrap: wrap; }
.hero__sub { max-width: 44ch; color: rgba(244,240,232,0.82); font-weight: 300; font-size: 17px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.scrollcue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(244,240,232,0.7); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scrollcue .ln { width: 1px; height: 40px; background: linear-gradient(rgba(244,240,232,0.7), transparent);
  animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%{transform:scaleY(0)} 40%{transform:scaleY(1)} 100%{transform:scaleY(0); transform-origin:bottom} }

/* ============================================================
   STAT BAR
   ============================================================ */
.stats { border-block: 1px solid var(--line); background: var(--bone-2); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: clamp(34px, 4vw, 56px) clamp(20px, 3vw, 48px); border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat .num { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem, 4vw, 3.8rem); line-height: 1; color: var(--ink); }
.stat .num span { font-size: 0.5em; color: var(--brass); vertical-align: super; }
.stat .lbl { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-top: 14px; }

/* ============================================================
   ETHOS
   ============================================================ */
.ethos__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 8vw, 120px); align-items: center; }
.ethos__media { position: relative; }
.ethos__media .ph { aspect-ratio: 4/5; }
.ethos__media .ph.small { position: absolute; right: -34px; bottom: -44px; width: 46%; aspect-ratio: 1/1;
  border: 8px solid var(--bone); }
.ethos__copy .eyebrow { margin-bottom: 26px; display: block; }
.ethos__copy .lede { margin-bottom: 30px; }
.ethos__copy .body { max-width: 50ch; margin-bottom: 22px; }
.ethos__sign { margin-top: 40px; display: flex; align-items: center; gap: 18px; }
.ethos__sign .ph { width: 54px; height: 54px; border-radius: 50%; }
.ethos__sign .who { font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; }
.ethos__sign .who strong { font-weight: 500; }
.ethos__sign .who span { color: var(--stone); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--ink); color: var(--bone); }
.services__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  margin-bottom: clamp(48px, 6vw, 80px); flex-wrap: wrap; }
.services__head .eyebrow { color: var(--stone-2); margin-bottom: 22px; display: block; }
.services__head h2 { color: var(--bone); max-width: 16ch; }
.services__head p { color: rgba(244,240,232,0.6); max-width: 38ch; font-weight: 300; }

.svc { display: grid; grid-template-columns: 0.5fr 1.4fr 1fr 0.4fr; gap: 32px; align-items: center;
  padding-block: clamp(28px, 3.5vw, 44px); border-top: 1px solid rgba(244,240,232,0.16);
  cursor: pointer; transition: padding .6s var(--ease); position: relative; }
.svc:last-child { border-bottom: 1px solid rgba(244,240,232,0.16); }
.svc__no { font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; color: var(--stone-2); }
.svc__title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.8rem, 3.2vw, 3rem); line-height: 1.04;
  transition: transform .6s var(--ease), color .6s var(--ease); }
.svc__title em { font-style: italic; }
.svc__desc { color: rgba(244,240,232,0.6); font-weight: 300; font-size: 15px; max-width: 38ch; }
.svc__arrow { justify-self: end; width: 46px; height: 46px; border: 1px solid rgba(244,240,232,0.3);
  border-radius: 50%; display: grid; place-items: center; transition: all .6s var(--ease); }
.svc__arrow svg { transition: transform .6s var(--ease); }
.svc:hover { padding-left: 12px; }
.svc:hover .svc__title { color: #fff; }
.svc:hover .svc__arrow { background: var(--bone); border-color: var(--bone); color: var(--ink); }
.svc:hover .svc__arrow svg { transform: translate(2px, -2px); }
/* reveal image on hover */
.svc__peek { position: absolute; right: 9%; top: 50%; transform: translateY(-50%) scale(0.96);
  width: 300px; aspect-ratio: 4/3; opacity: 0; pointer-events: none; z-index: 5;
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  transition: opacity .5s var(--ease), transform .5s var(--ease); }
.svc__peek img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc:hover .svc__peek { opacity: 1; transform: translateY(-50%) scale(1); }

/* ============================================================
   PROCESS
   ============================================================ */
.process__head { max-width: 60ch; margin-bottom: clamp(48px, 6vw, 90px); }
.process__head .eyebrow { display: block; margin-bottom: 24px; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line); }
.pstep { background: var(--bone); padding: clamp(28px, 3vw, 44px); transition: background .5s var(--ease); }
.pstep:hover { background: var(--paper); }
.pstep .no { font-family: var(--serif); font-size: 2rem; color: var(--brass); font-weight: 400; }
.pstep h3 { font-size: 1.5rem; margin-top: 18px; margin-bottom: 14px; }
.pstep p { font-size: 14px; color: var(--stone); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bone-2); }
.gallery__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px;
  margin-bottom: 48px; flex-wrap: wrap; }
.gallery__filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter { font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--stone); background: transparent; border: 1px solid var(--line-2); padding: 9px 18px;
  cursor: pointer; transition: all .4s var(--ease); }
.filter:hover { color: var(--ink); border-color: var(--ink); }
.filter.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.gallery__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; grid-auto-rows: 200px; }
.gcard { position: relative; overflow: hidden; cursor: pointer; }
.gcard .ph { width: 100%; height: 100%; transition: transform 1s var(--ease); }
.gcard:hover .ph { transform: scale(1.05); }
.gcard__meta { position: absolute; inset: auto 0 0 0; padding: 20px; z-index: 2;
  background: linear-gradient(transparent, rgba(18,21,25,0.7)); color: var(--bone);
  opacity: 0; transform: translateY(12px); transition: all .5s var(--ease); }
.gcard:hover .gcard__meta { opacity: 1; transform: translateY(0); }
.gcard__meta .t { font-family: var(--serif); font-size: 1.3rem; line-height: 1.1; }
.gcard__meta .c { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-2); margin-top: 6px; }
.gcard.tall { grid-row: span 2; }
.gcard.wide { grid-column: span 2; }
.gcard.big { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   VETERAN
   ============================================================ */
.veteran { background: var(--slate); color: var(--bone); position: relative; overflow: hidden; }
.veteran__grid { display: block; max-width: 900px; margin: 0 auto; text-align: center; }
.veteran .eyebrow { color: var(--stone-2); display: block; margin-bottom: 26px; }
.veteran h2 { color: var(--bone); margin-bottom: 28px; max-width: 18ch; margin-inline: auto; }
.veteran p { color: rgba(244,240,232,0.7); max-width: 56ch; margin: 0 auto 20px; font-weight: 300; }
.veteran__seal { margin-inline: auto; }
.veteran__seal { display: inline-flex; align-items: center; gap: 18px; margin-top: 34px;
  padding: 16px 24px; border: 1px solid rgba(244,240,232,0.22); text-align: left; }
.veteran__seal .flagframe { width: 72px; height: 38px; flex: none; padding: 3px;
  border: 1px solid rgba(202,176,95,0.55); background: rgba(244,240,232,0.06);
  display: block; box-shadow: 0 3px 12px rgba(0,0,0,0.3); }
.veteran__seal .flagframe img { width: 100%; height: 100%; object-fit: cover; display: block; }
.veteran__seal .txt { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1.8; }
.veteran__seal .txt strong { color: var(--brass); font-weight: 500; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote { text-align: center; }
.quote__inner { max-width: 24ch; margin: 0 auto; }
.quote blockquote { font-family: var(--serif); font-weight: 300; font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18; letter-spacing: -0.01em; max-width: 20ch; margin: 0 auto; }
.quote blockquote em { font-style: italic; }
.quote .stars { display: flex; gap: 6px; justify-content: center; margin-bottom: 36px; color: var(--brass); }
.quote .attr { margin-top: 38px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); }
.quote .attr strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }
.cta__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.cta .eyebrow { color: var(--stone-2); display: block; margin-bottom: 24px; }
.cta h2 { color: var(--bone); font-size: clamp(2.4rem, 5.5vw, 5rem); line-height: 1.02; margin-bottom: 16px; }
.cta h2 em { font-style: italic; }
.cta__sub { color: rgba(244,240,232,0.62); max-width: 40ch; }

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { position: relative; }
.field label { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone-2); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(244,240,232,0.28);
  color: var(--bone); font-family: var(--sans); font-weight: 300; font-size: 16px; padding: 10px 0;
  transition: border-color .4s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,240,232,0.3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-bottom-color: var(--brass); }
.field select option { color: var(--ink); }
.field.invalid input, .field.invalid select { border-bottom-color: #C77; }
.field .err { position: absolute; right: 0; top: 0; font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #C99; opacity: 0; transition: opacity .3s; }
.field.invalid .err { opacity: 1; }
.form__note { font-size: 12px; color: var(--stone-2); display: flex; align-items: center; gap: 10px; }
.form__success { display: none; padding: 40px 0; }
.form__success.show { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__success .ico { width: 56px; height: 56px; border: 1px solid var(--brass); border-radius: 50%;
  display: grid; place-items: center; color: var(--brass); margin-bottom: 24px; }
.form__success h3 { color: var(--bone); font-size: 2rem; margin-bottom: 12px; }
.form__success p { color: rgba(244,240,232,0.62); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--slate); color: var(--bone); padding-top: clamp(60px, 7vw, 90px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: clamp(50px, 6vw, 80px); border-bottom: 1px solid rgba(244,240,232,0.14); }
.footer .brand--footer { margin-bottom: 14px; }
.footer .brand--footer .brand-img { height: 78px; }
.footer__tag { font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.5rem; line-height: 1.2; color: var(--brass); margin-bottom: 22px; }
.footer__about { color: rgba(244,240,232,0.6); max-width: 34ch; font-size: 15px; font-weight: 300; }
.footer__col h4 { font-family: var(--sans); font-weight: 400; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--stone-2); margin-bottom: 22px; }
.footer__col a, .footer__col p { display: block; color: rgba(244,240,232,0.78); font-size: 14px;
  margin-bottom: 12px; font-weight: 300; transition: color .3s var(--ease); }
.footer__col a:hover { color: var(--brass); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-block: 30px; flex-wrap: wrap; }
.footer__bottom p { font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; color: var(--stone-2); }
.footer__bottom .socials { display: flex; gap: 22px; }
.footer__bottom .socials a { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,240,232,0.7); }
.footer__bottom .socials a:hover { color: var(--brass); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
/* short viewports — keep the bigger logo but compact the hero so the badge clears the header */
@media (max-height: 760px) {
  .hero__inner { padding-top: 124px; padding-bottom: 30px; }
  .hero__badge { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
  .hero__tag { font-size: clamp(1.15rem, 2.2vw, 1.5rem); margin-top: 12px; }
  .hero__row { margin-top: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(18,18,16,0.94);
  display: none; align-items: center; justify-content: center; padding: 5vw;
  opacity: 0; transition: opacity .4s var(--ease); }
.lightbox.show { display: flex; opacity: 1; }
.lightbox .lb-img { width: min(960px, 90vw); aspect-ratio: 3/2; }
.lightbox .lb-close { position: absolute; top: 28px; right: 32px; color: var(--bone);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; }
.lightbox .lb-cap { position: absolute; bottom: 36px; left: 0; right: 0; text-align: center;
  font-family: var(--serif); color: var(--bone); font-size: 1.6rem; }

/* ============================================================
   MOBILE
   ============================================================ */
.mobile-nav { position: fixed; inset: 0; z-index: 150; background: var(--ink); color: var(--bone);
  transform: translateY(-100%); transition: transform .7s var(--ease); display: flex; flex-direction: column;
  padding: clamp(24px, 6vw, 60px); }
.mobile-nav.open { transform: none; }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav__links { margin-top: auto; margin-bottom: auto; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav__links a { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 11vw, 4rem); line-height: 1.1; }
.mobile-nav__foot { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav__foot a { font-family: var(--sans); font-size: 13px; letter-spacing: 0.1em; color: var(--stone-2); }
.mobile-close { font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; }

@media (max-width: 1080px) {
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .header__bar { display: none; }
  .header__inner { flex-direction: row; }
  .burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px;
    position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  .burger span { width: 26px; height: 1px; background: var(--bone); transition: background .6s var(--ease); }
  .header.scrolled .burger span { background: var(--ink); }
  .ethos__grid, .veteran__grid, .cta__grid { grid-template-columns: 1fr; }
  .ethos__media .ph.small { display: none; }
  .svc { grid-template-columns: 0.4fr 2fr 0.4fr; }
  .svc__desc { display: none; }
  .svc__peek { display: none; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .process__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gcard.big, .gcard.wide { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
