/* D&R Pro Builders — matches original Framer design language */

:root {
  --navy: #051C3A;
  --navy-deep: #030F22;
  --navy-soft: #0E2B4D;
  --gold: #D4A348;
  --gold-deep: #B48433;
  --paper: #FFFFFF;
  --off: #F4F4F5;
  --off-2: #FAFAFA;
  --ink: #051C3A;
  --ink-soft: #1a2942;
  --muted: #71717a;
  --muted-light: #a1a1aa;
  --line: #e4e4e7;
  --shadow: 0 1px 3px rgba(5,28,58,.05), 0 8px 24px rgba(5,28,58,.06);
  --shadow-lg: 0 4px 16px rgba(5,28,58,.08), 0 24px 60px rgba(5,28,58,.12);
  --radius: 16px;
  --radius-sm: 8px;
  --container: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .15s ease; }

/* ===== Type system =====
   SIZE
     Display (hero h1):       clamp(2.8rem, 7.5vw, 6.5rem)   — biggest, intro-only
     Display XL (FAQ, mark):  clamp(3.5rem, 9vw, 8rem)       — intentional outliers
     H1 (page hero):          clamp(2.5rem, 6.5vw, 5.5rem)
     H2 (section headline):   clamp(2.4rem, 5.8vw, 4.5rem)   — default for all section h2s
     H2 — chapter (in-page):  clamp(1.8rem, 4vw, 2.6rem)
     H3 (card title):         1.4rem
     H3 (standalone callout): 1.5rem
     H4:                      1rem
     Quote/lead text:         clamp(1.6rem, 3.6vw, 2.6rem)

   WEIGHT (5-step scale)
     800  Display, H1, H2, big numbers, wordmark        — top-of-hierarchy
     700  H3, sub-headings, big quotes, faq question, bold body
     600  H4, eyebrows, buttons, captions, small labels — emphasized labels
     500  Lead text, blockquote body, pill tags         — subtly emphasized
     400  Body                                          — default

   CAPITALIZATION (two modes)
     UPPERCASE — used for ANCHORS and LABELS:
       · small label text (eyebrows, nav, dates, footer h4, captions, cites)
       · short anchor headings that act as section/page identifiers
         (page-hero h1, why h2, work h2, founder h2, faq h2, cta-band h2, story chapter h2)
       · the brand wordmark
       Why: short tracked caps scan instantly as "you are here" / "what is this"

     TITLE/SENTENCE CASE — used for STATEMENTS:
       · long value-prop headings with full sentences/periods
         (hero h1, about-us lead, services title, mission quote, testimonial quote)
       · all card titles (h3, h4 in overlay)
       · body and descriptions
       Why: mixed case is more readable for sentences and conveys premium/editorial tone

     The two modes create a deliberate texture: caps for navigational signals,
     mixed case for content meant to be read. Long sentences in caps would slow
     reading; short labels in mixed case lose scannability.
*/

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 .5em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: .95;
}
h2 {
  font-size: clamp(2.4rem, 5.8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}
h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
h4 { font-size: 1rem; font-weight: 600; }
p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '〰';
  font-size: 1rem;
  letter-spacing: -2px;
  color: var(--gold);
  font-weight: 400;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
@media (max-width: 700px) { .section { padding: 64px 0; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--navy); }
.btn--dark {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.btn--dark:hover { background: var(--navy-soft); border-color: var(--navy-soft); color: var(--paper); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,.3);
}
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--paper); color: var(--paper); }
.btn--ghost-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost-dark:hover { background: var(--navy); color: var(--paper); }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.header.is-scrolled {
  background: rgba(5,28,58,.8);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: rgba(255,255,255,.08);
}
/* When the slide-down menu is open, drop the header's backdrop-filter — it creates a
   containing block that would scope the menu's `position: fixed` to the header bar
   instead of the viewport. Solid bg keeps the visual identical while menu is open.
   `transition: none` makes this state-change instant so the header doesn't fade-shift
   while the nav is mid-slide (was causing a stagger). */
body.nav-open .header,
body.nav-open .header.is-scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--navy);
  transition: none;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; color: var(--paper); }
.brand:hover { color: var(--gold); }
.brand__text {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: uppercase;
}
.brand__text small {
  display: block;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--muted-light);
  text-transform: none;
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--paper); }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 600 !important;
  font-size: .92rem !important;
}
.nav__phone::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Mobile-only icon-button: tap to call (kept in header so the highest-converting action is 1 tap) */
.nav__call {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--gold) !important;
  transition: background .15s ease, border-color .15s ease;
}
.nav__call:hover, .nav__call:focus { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); }
.nav__call svg { width: 18px; height: 18px; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 60;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 6px; }
.nav__call { -webkit-tap-highlight-color: transparent; }
.nav__call:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 22px;
  background: var(--paper);
  left: 11px;
  border-radius: 2px;
  transition: transform .25s ease, top .25s ease, opacity .15s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .header__inner { gap: 8px; padding: 14px 20px; }
  .nav-toggle { display: block; }
  .nav__call { display: inline-flex; margin-left: auto; }

  /* Slide-down full-screen menu */
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    padding: 100px 28px 40px;
    margin-left: 0;
    gap: 0;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
    z-index: 55;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  body.nav-open .nav { transform: translateY(0); }
  body.nav-open { overflow: hidden; }

  /* Override: ALL nav links visible inside the open menu, vertical, large tap targets */
  .nav a:not(.btn):not(.nav__call) {
    display: block !important;
    padding: 22px 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    color: var(--paper);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav a:not(.btn):not(.nav__call)::after {
    content: '→';
    float: right;
    color: var(--gold);
    opacity: .5;
    font-weight: 400;
  }
  .nav__phone {
    margin-top: 24px;
    color: var(--gold) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 600 !important;
    font-size: 1.5rem !important;
  }
  .nav__phone::before { display: none; }
  .nav__phone span { display: inline !important; }
  .nav .btn {
    margin-top: 20px;
    padding: 18px 24px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  /* Move the call icon out of the menu — anchored in header */
  .nav__call { position: relative; z-index: 60; }
}

/* ===== Hero — full-screen, photo bg + navy overlay, content left, flag bottom-right ===== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
  min-height: 100vh;
  max-height: 920px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/service-1.jpeg') center 30%/cover no-repeat;
  z-index: 0;
  transform: scale(1.04);
  animation: heroBgIn 1.4s ease-out .1s forwards;
  opacity: 0;
}
.hero::before {
  /* primary overlay — navy left, fade right; cools down photo */
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(3,15,34,.96) 0%, rgba(5,28,58,.86) 35%, rgba(5,28,58,.55) 65%, rgba(5,28,58,.35) 100%),
    linear-gradient(180deg, rgba(5,28,58,.5) 0%, transparent 30%, transparent 60%, rgba(3,15,34,.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  /* warm gold accent */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 60% at 90% 100%, rgba(212,163,72,.18) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 100px 24px 120px;
  display: flex;
  align-items: center;
}
.hero__content {
  text-align: left;
  max-width: 720px;
}
.hero__sub-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFade .7s ease-out .1s forwards;
}
.hero__sub-eye::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--paper);
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: .95;
  margin: 0 0 28px;
  opacity: 0;
  animation: heroFade .8s ease-out .25s forwards;
}
.hero__sub-copy {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 560px;
  opacity: 0;
  animation: heroFade .8s ease-out .4s forwards;
}
.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  opacity: 0;
  animation: heroFade .8s ease-out .55s forwards;
}

/* Floating photo credit tag (bottom-right, above flag) */
.hero__credit {
  position: absolute;
  bottom: 24px;
  left: max(24px, calc((100% - var(--container)) / 2 + 24px));
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(5,28,58,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--paper);
  text-transform: uppercase;
  opacity: 0;
  animation: heroFade .8s ease-out 1s forwards;
}
.hero__credit::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,163,72,.22);
}

/* Flag — white silhouette via grayscale+contrast filter, anchored to viewport right edge */
.hero__flag {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(320px, 42vw, 620px);
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  z-index: 1;
  filter: grayscale(1) contrast(10) brightness(1.05);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateY(60px);
  animation: heroFlagIn 1.4s ease-out .8s forwards;
  will-change: transform, opacity;
  pointer-events: none;
}

@keyframes heroFade {
  to { opacity: 1; }
}
@keyframes heroBgIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroFlagIn {
  to { opacity: .32; transform: translateY(0); }
}

@media (max-width: 980px) {
  .hero { min-height: 90vh; max-height: none; }
  .hero__inner { padding: 100px 24px 130px; }
  .hero__flag { width: clamp(260px, 60vw, 460px); right: 0; bottom: 0; }
}
@media (max-width: 600px) {
  .hero { min-height: 88vh; }
  .hero__inner { padding: 80px 20px 130px; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 3.6rem); }
  .hero__flag { width: 320px; right: 0; bottom: 0; }
}

/* ===== About-us / value prop block ===== */
.about-us { background: var(--paper); }
.about-us__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: flex-start;
}
.about-us__row .eyebrow { margin: 0; padding-top: 12px; }
.about-us__lead {
  font-size: clamp(2.4rem, 5.8vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 1000px;
}
.about-us__body {
  margin-top: 48px;
  padding-left: 280px;
  max-width: 880px;
}
.about-us__body p {
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1em;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-left: 280px;
}
.stat__num {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat__num span {
  color: var(--gold);
  font-size: .7em;
  margin-left: 2px;
  font-weight: 800;
}
.stat__lbl {
  font-size: .92rem;
  color: var(--navy);
  font-weight: 500;
}
@media (max-width: 900px) {
  .about-us__row { grid-template-columns: 1fr; gap: 24px; }
  .about-us__body { padding-left: 0; }
  .stats-row { padding-left: 0; grid-template-columns: repeat(2, 1fr); margin-top: 56px; gap: 24px; }
}

/* ===== Project showcase — full-bleed banner ===== */
.proj-card {
  background: var(--paper);
  padding: 0;
}
.proj-card__inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 21/9;
  background: var(--navy);
}
.proj-card__inner img { width: 100%; height: 100%; object-fit: cover; }
.proj-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,28,58,.7) 0%, rgba(5,28,58,.45) 40%, rgba(5,28,58,.15) 75%, rgba(5,28,58,.05) 100%),
    linear-gradient(180deg, rgba(5,28,58,.1) 0%, rgba(5,28,58,.55) 100%);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
}
.proj-card__overlay-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px;
}
.proj-card__date {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.proj-card__title {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--paper);
  margin: 0 0 12px;
  max-width: 800px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.proj-card__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,.82);
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .proj-card__inner { aspect-ratio: 4/3; }
  .proj-card__overlay-inner { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .proj-card__inner { aspect-ratio: 4/5; }
}

/* ===== Why Choose ===== */
.why { background: var(--paper); padding: 120px 0; }
.why__hdr {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: flex-end;
}
.why__hdr h2 {
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.8vw, 4.5rem);
  margin: 0;
  letter-spacing: -0.04em;
  line-height: .95;
}
.why__hdr-copy { color: var(--navy); font-size: 1rem; line-height: 1.55; max-width: 360px; margin: 0; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why__grid--four { grid-template-columns: repeat(4, 1fr); }

.why__card {
  background: var(--off);
  border-radius: var(--radius);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .18s ease;
}
.why__card:hover { background: var(--paper); box-shadow: var(--shadow); }
.why__card-num {
  font-size: .75rem;
  color: var(--gold-deep);
  letter-spacing: .14em;
  font-weight: 600;
  margin-bottom: 32px;
  display: block;
}
.why__card h3 {
  font-size: 1.4rem;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  min-height: 2.3em; /* keeps 2-line titles aligned with single-line ones */
}
.why__card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--navy);
}

@media (max-width: 1100px) {
  .why__grid, .why__grid--four { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .why { padding: 72px 0; }
  .why__hdr { grid-template-columns: 1fr; gap: 24px; align-items: flex-start; }
  .why__grid, .why__grid--four { grid-template-columns: 1fr; }
  .why__card { min-height: 200px; }
}

/* ===== Services — image-paired cards on light bg ===== */
.services { background: var(--off-2); color: var(--navy); padding: 120px 0; border-top: 1px solid var(--line); }
.services__hdr { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.services__hdr .eyebrow { justify-content: center; }
.services__title {
  text-align: center;
  color: var(--navy);
  font-size: clamp(2.4rem, 5.8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0;
  line-height: 1;
}
.eyebrow--light { color: var(--gold); }
.eyebrow--light::before { color: var(--gold); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__num {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 28px;
}
.svc-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
  min-height: 2.3em;
}
.svc-card__desc {
  font-size: .95rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 22px;
}
.svc-card__items {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-card__items li {
  font-size: .78rem;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 12px;
  background: var(--off);
  border-radius: 999px;
  letter-spacing: -0.005em;
  transition: background .2s ease;
}
.svc-card:hover .svc-card__items li {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 5px 11px;
}

.svc-cta {
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.svc-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 100% 100%, rgba(212,163,72,.22) 0%, transparent 70%);
  pointer-events: none;
}
.svc-cta > * { position: relative; }
.svc-cta__num {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 28px;
  display: block;
}
.svc-cta h3 {
  color: var(--paper);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.svc-cta p { color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.55; margin: 0 0 24px; }
.svc-cta .btn { align-self: flex-start; }

@media (max-width: 900px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services { padding: 72px 0; }
  .svc-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card, .svc-cta { min-height: 0; padding: 28px 24px; }
  .svc-card__num, .svc-cta__num { font-size: 2.2rem; margin-bottom: 22px; }
}
/* ===== Mission (founder values) ===== */
.mission { background: var(--paper); padding: 120px 0; border-top: 1px solid var(--line); }
.mission__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.mission__quote {
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  max-width: 920px;
  margin: 0 auto 80px;
}
.mission__quote em { font-style: normal; color: var(--gold-deep); font-weight: 700; }
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value {
  background: var(--off);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.value__num {
  font-size: .8rem;
  color: var(--gold-deep);
  font-weight: 600;
  letter-spacing: .12em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.value h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--navy);
}
.value p { color: var(--navy); font-size: .92rem; line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .values { grid-template-columns: 1fr; } .mission { padding: 64px 0; } }

/* ===== About / Founder split (homepage teaser) ===== */
.founder { background: var(--off-2); padding: 120px 0; }
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.founder__copy h2 {
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5.8vw, 4.5rem);
  letter-spacing: -0.035em;
  margin: 0 0 32px;
  line-height: .95;
}
.founder__copy p { color: var(--navy); font-size: 1rem; line-height: 1.65; max-width: 540px; margin: 0 0 16px; }
.founder__copy p strong { color: var(--navy); font-weight: 700; }
.founder__meaning {
  display: inline-block;
  margin: 24px 0 12px;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  color: var(--navy);
}
.founder__meaning b { color: var(--gold-deep); font-weight: 700; letter-spacing: -0.005em; }
.founder__signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.founder__signature-name { font-weight: 700; color: var(--navy); }
.founder__signature-role { color: var(--muted); font-size: .9rem; display: block; font-weight: 400; }
.founder__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
}
.founder__media img { width: 100%; height: 100%; object-fit: cover; }
.founder__media-cap {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  padding: 14px 18px;
  background: rgba(5,28,58,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: rgba(255,255,255,.92);
  line-height: 1.4;
}
.founder__media-cap b { color: var(--gold); font-weight: 600; display: block; margin-bottom: 2px; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
@media (max-width: 900px) {
  .founder { padding: 72px 0; }
  .founder__grid { grid-template-columns: 1fr; gap: 48px; }
  .founder__media { aspect-ratio: 4/3; max-width: 520px; }
}

/* ===== Recent Work gallery ===== */
.work { background: var(--paper); }
.work__hdr { text-align: center; margin-bottom: 56px; }
.work__hdr h2 { text-transform: uppercase; font-size: clamp(2.4rem, 5.8vw, 4.5rem); margin: 0; }
.work__hdr p { color: var(--navy); font-size: 1.05rem; max-width: 600px; margin: 12px auto 0; line-height: 1.5; }
.work__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.work__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.work__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.work__item:hover img { transform: scale(1.04); }
.work__item:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; aspect-ratio: auto; }
.work__item-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 22px;
  background: linear-gradient(transparent, rgba(5,28,58,.85));
  color: var(--paper);
}
.work__item-cap small {
  display: block;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.work__item-cap h4 {
  font-size: 1.2rem;
  margin: 0 0 4px;
  color: var(--paper);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.work__item-cap p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.78); }
@media (max-width: 900px) {
  .work__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .work__item:nth-child(1) { grid-column: 1 / span 2; grid-row: auto; aspect-ratio: 16/10; }
}
@media (max-width: 600px) {
  .work__grid { grid-template-columns: 1fr; }
  .work__item:nth-child(1) { grid-column: 1; aspect-ratio: 4/3; }
}

/* ===== Testimonials ===== */
.testimonials {
  background: var(--paper);
  padding: 140px 0;
  position: relative;
}
.testimonials__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 80px;
}
.testimonials .eyebrow { justify-content: center; }
.testimonials__quote {
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 16px 0 24px;
}
.testimonials__cite {
  display: block;
  font-style: normal;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.testimonials__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: all .15s ease;
  font-size: 1.4rem;
}
.testimonials__nav:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.testimonials__nav--prev { left: 0; }
.testimonials__nav--next { right: 0; }
.testimonials__dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.testimonials__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line);
  transition: background .15s ease;
}
.testimonials__dot.is-active { background: var(--gold); }
@media (max-width: 700px) {
  .testimonials { padding: 80px 0; }
  .testimonials__inner { padding: 0 24px; }
  .testimonials__nav { top: auto; bottom: -60px; transform: none; }
  .testimonials__nav--prev { left: 50%; margin-left: -56px; }
  .testimonials__nav--next { right: 50%; margin-right: -56px; }
}

/* ===== FAQ ===== */
.faq { background: var(--paper); padding: 120px 0; border-top: 1px solid var(--line); }
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: flex-start;
}
.faq__heading h2 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  margin: 0 0 24px;
  text-transform: uppercase;
  line-height: .9;
}
.faq__heading p { color: var(--muted); font-size: 1rem; line-height: 1.55; max-width: 320px; margin: 0 0 24px; }
.faq__heading-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 1.1rem;
}
.faq__heading-cta:hover { color: var(--navy); }

.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 56px 28px 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  user-select: none;
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  position: absolute;
  right: 8px; top: 50%;
  width: 12px; height: 12px;
  border-right: 1.5px solid var(--gold-deep);
  border-bottom: 1.5px solid var(--gold-deep);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq__item p {
  padding: 0 0 28px;
  color: var(--muted);
  margin: 0;
  max-width: 700px;
  font-size: .98rem;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .faq { padding: 72px 0; }
  .faq__layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== CTA band ===== */
.cta-band {
  background: var(--navy);
  color: var(--paper);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 100%, rgba(212,163,72,.18) 0%, transparent 60%);
}
.cta-band__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: var(--paper); margin: 0 0 16px; text-transform: uppercase; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.55; }
.cta-band__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band .eyebrow { color: var(--gold); justify-content: center; }
.cta-band .eyebrow::before { color: var(--gold); }

/* ===== Footer ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.6);
  padding: 80px 0 28px;
  font-size: .92rem;
}
.footer__megabrand {
  font-size: clamp(3rem, 12vw, 11rem);
  font-weight: 800;
  color: rgba(255,255,255,.05);
  letter-spacing: -0.04em;
  line-height: .9;
  text-transform: uppercase;
  margin-bottom: 64px;
  text-align: center;
  user-select: none;
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  color: var(--paper);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,.65); }
.footer a:hover { color: var(--gold); }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer__brand img { width: 36px; height: 24px; object-fit: cover; border-radius: 2px; }
.footer__brand-text { color: var(--paper); font-size: .98rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.footer__copy {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }

/* ===== Page hero (about/contact) ===== */
.page-hero {
  background: var(--navy);
  color: var(--paper);
  padding: 180px 0 100px;
  text-align: center;
}
.page-hero__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.page-hero h1 {
  color: var(--paper);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 700px; margin: 0 auto; line-height: 1.55; }
.page-hero .eyebrow { color: var(--gold); justify-content: center; }
.page-hero .eyebrow::before { color: var(--gold); }

/* ===== Utility: subsection h2 (smaller anchor heading inside a section) ===== */
/* Use for short label-style h2s that aren't top-level section headings.
   Same scale as story chapter h2 but UPPERCASE per the anchor/label rule. */
.h2-sub {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 .5em;
  text-transform: uppercase;
}

/* ===== About page (full story) ===== */
.story { background: var(--paper); padding: 100px 0; }
.story__intro {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}
.story__intro p { font-size: 1.2rem; color: var(--navy); line-height: 1.55; }
.story__chapter { max-width: 820px; margin: 0 auto 80px; }
.story__chapter:last-child { margin-bottom: 0; }
.story__chapter h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 32px;
  letter-spacing: -0.025em;
  /* TitleCase — long-form chapter sentences stay readable; small-eye below carries the anchor signal */
}
.story__chapter h2 .small-eye {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.story__chapter h2 .small-eye::before { content: '〰 '; }
.story__chapter p { font-size: 1.05rem; color: var(--navy); line-height: 1.75; margin-bottom: 1.2em; }
.story__chapter p.lead { font-size: 1.18rem; color: var(--navy); font-weight: 500; }
.story__chapter blockquote {
  margin: 32px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--gold);
  background: var(--off);
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.55;
  font-weight: 500;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.story__chapter blockquote cite {
  display: block;
  font-style: normal;
  font-size: .85rem;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: .04em;
}
.story__media {
  max-width: 1100px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story__media figure { margin: 0; }
.story__media img { width: 100%; border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }
.story__media figcaption { padding: 12px 4px 0; font-size: .85rem; color: var(--muted); line-height: 1.45; }
.story__media--triple { grid-template-columns: repeat(3, 1fr); }
.story__media--triple img { aspect-ratio: 1; }
@media (max-width: 700px) {
  .story__media { grid-template-columns: 1fr; }
  .story__media--triple { grid-template-columns: 1fr 1fr; }
}
.story__values-callout {
  max-width: 820px;
  margin: 0 auto 80px;
  background: var(--off);
  border-radius: var(--radius);
  padding: 48px;
}
.story__values-callout h3 { font-size: 1.5rem; margin-bottom: 28px; }
.story__values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px; list-style: none; padding: 0; margin: 0; }
.story__values-list strong { color: var(--navy); display: block; font-weight: 700; margin-bottom: 6px; font-size: 1.05rem; }
.story__values-list p { margin: 0; color: var(--navy); font-size: .95rem; }
@media (max-width: 600px) { .story__values-list { grid-template-columns: 1fr; } .story__values-callout { padding: 32px 28px; } }

/* ===== Lightbox (portfolio) ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3,15,34,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 56px;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox[aria-hidden="false"] { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__figure {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 0;
}
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.lightbox__caption {
  max-width: 720px;
  text-align: center;
  color: var(--paper);
}
.lightbox__caption-loc {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.lightbox__caption-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.lightbox__caption-sub {
  font-size: .92rem;
  color: rgba(255,255,255,.78);
}

.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.08);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,.18);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s ease, border-color .15s ease;
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1;
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.4);
}
.lightbox__close { top: 24px; right: 24px; font-size: 1.8rem; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute;
  top: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 700px) {
  .lightbox { padding: 70px 16px 16px; }
  .lightbox__close { top: 16px; right: 16px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
  .lightbox__img { max-height: 65vh; }
}

/* Make portfolio items feel clickable */
.work__item { cursor: zoom-in; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .98rem;
  background: var(--paper);
  color: var(--navy);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(5,28,58,.06);
}
.form textarea { resize: vertical; min-height: 140px; }
.form button { justify-self: start; margin-top: 8px; }

.contact-info { background: var(--off); padding: 36px; border-radius: var(--radius); }
.contact-info h3 { margin-top: 0; margin-bottom: 8px; font-size: 1.4rem; }
.contact-info > p { color: var(--muted); margin-bottom: 16px; font-size: .95rem; line-height: 1.5; }
.contact-info__item { display: block; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info__item:last-child { border: 0; padding-bottom: 0; }
.contact-info__lbl {
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-info__val a, .contact-info__val { color: var(--navy); font-weight: 600; font-size: 1.05rem; }
.contact-info__val a:hover { color: var(--gold-deep); }
