/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #ffffff;   /* pure white */
  --bg-2:      #f5f4f2;   /* subtle off-white panel */
  --paper:     #ffffff;
  --navy:      #0c0c0d;   /* near-black — primary ink/accent */
  --navy-2:    #1c1c1e;
  --ink:       #151516;
  --ink-soft:  #43454a;
  --ink-mute:  #74767c;
  --gold:      #b8923f;   /* refined gold accent */
  --gold-2:    #8c6c28;
  --line:      rgba(12,12,13,0.12);
  --cream:     #f3eee0;

  --serif: "Fraunces", "Georgia", serif;
  --sans: "Inter", -apple-system, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--serif); text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; color: var(--navy); }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--paper); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: 1.25rem; }
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--navy); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section-paper { background: var(--paper); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-2);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold-2); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-sub { margin-top: .9rem; color: var(--ink-soft); font-size: 1.05rem; max-width: 52ch; }
.section-head.center .section-sub { margin-inline: auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 10px 30px -10px rgba(18,35,64,.45); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(18,35,64,.55); background: var(--navy-2); }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 26px -8px rgba(184,149,89,.55); }
.btn-gold:hover { transform: translateY(-2px); background: #c6a468; }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); background: rgba(18,35,64,.04); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }

.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  font-size: .82rem; font-weight: 500; color: #fff;
}
.chip-light {
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-soft);
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* =============================================================
   6. Header / nav
   ============================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding-block: 1.1rem;
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), padding .4s var(--ease-out);
}
.site-header.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding-block: .75rem; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 600; font-size: 1.15rem; color: var(--navy); }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--navy); display: grid; place-items: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.brand-logo { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; border-radius: 6px; }
.nav-links { display: none; align-items: center; gap: 2rem; font-size: .92rem; font-weight: 500; }
.nav-links a { position: relative; color: var(--ink-soft); transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--gold-2); transition: width .3s var(--ease-out); }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-call { display: none; }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-call { display: inline-flex; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  color: #fff;
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.78) 0%, rgba(10,10,11,.62) 45%, rgba(10,10,11,.92) 100%);
}
.hero-inner { position: relative; z-index: 1; padding-top: 6rem; padding-bottom: 3.5rem; }
.hero-kicker { display: flex; align-items: center; gap: .6rem; font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.3rem; opacity: .9; }
.hero-kicker .chip-dot { background: var(--gold); }
.hero-title { font-size: clamp(2.4rem, 6.4vw, 4.6rem); max-width: 16ch; color: #fff; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { margin-top: 1.4rem; font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: rgba(255,255,255,.85); max-width: 46ch; }
.hero-actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-chips { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: .65rem; }
.hero-lang { margin-top: 1.6rem; font-size: .88rem; color: rgba(255,255,255,.65); }

/* =============================================================
   7. Trust strip
   ============================================================= */
.trust-strip { background: var(--navy); color: #fff; padding-block: 1.4rem; }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; justify-content: center; align-items: center; font-size: .86rem; letter-spacing: .03em; color: rgba(255,255,255,.82); }
.trust-strip strong { color: var(--gold); font-weight: 600; }

/* =============================================================
   8. Services
   ============================================================= */
.services-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.9rem 1.6rem; transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(18,35,64,.25); border-color: transparent; }
.service-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--bg-2); display: grid; place-items: center; margin-bottom: 1.2rem; color: var(--navy); }
.service-card h3 { font-size: 1.12rem; margin-bottom: .55rem; }
.service-card p { font-size: .92rem; color: var(--ink-mute); }

/* =============================================================
   9. Why choose us
   ============================================================= */
.why-section { background: var(--navy); color: #fff; }
.why-grid { display: grid; gap: 1.6rem 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-bullet { width: 30px; height: 30px; border-radius: 50%; background: rgba(184,149,89,.18); border: 1px solid rgba(184,149,89,.4); display: grid; place-items: center; flex-shrink: 0; color: var(--gold); font-size: .85rem; margin-top: .15rem; }
.why-item h4 { color: #fff; font-size: 1.04rem; margin-bottom: .3rem; }
.why-item p { color: rgba(255,255,255,.68); font-size: .92rem; }
.why-section .section-head h2 { color: #fff; }
.why-section .eyebrow { color: var(--gold); }
.why-section .section-sub { color: rgba(255,255,255,.68); }

/* =============================================================
   10. Process
   ============================================================= */
.process-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; counter-reset: step; }
@media (min-width: 960px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { position: relative; padding-top: .5rem; }
.process-num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-2); opacity: .55; line-height: 1; margin-bottom: .8rem; }
.process-step h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.process-step p { font-size: .92rem; color: var(--ink-mute); }
.process-line { display: none; }
@media (min-width: 960px) {
  .process-step:not(:last-child)::after {
    content: ""; position: absolute; top: 1.7rem; left: calc(100% + 1rem); width: calc(2rem - 1rem);
    border-top: 1.5px dashed var(--line);
  }
}

/* =============================================================
   11. Gallery
   ============================================================= */
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; }
.gallery-item:nth-child(odd) { aspect-ratio: 4/5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-tag {
  position: absolute; left: .9rem; bottom: .9rem; z-index: 1;
  background: rgba(18,35,64,.82); color: #fff; font-size: .78rem; font-weight: 500;
  padding: .4rem .8rem; border-radius: 999px; backdrop-filter: blur(6px);
}
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(18,35,64,.55) 100%); }
.gallery-note { margin-top: 1.6rem; text-align: center; color: var(--ink-mute); font-size: .92rem; }

/* =============================================================
   12. Pricing / transparency
   ============================================================= */
.pricing-wrap { display: grid; gap: 2.2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 960px) { .pricing-wrap { grid-template-columns: 1.1fr 1fr; } }
.pricing-statement { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.8rem, 4vw, 2.6rem); }
.pricing-statement h3 { font-size: 1.5rem; margin-bottom: .9rem; }
.pricing-statement p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.price-list { display: grid; gap: .85rem; }
.price-row { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.1rem; background: var(--bg-2); border-radius: 12px; font-size: .94rem; }
.price-row span:last-child { color: var(--gold-2); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }

/* =============================================================
   13. About
   ============================================================= */
.about-grid { display: grid; gap: 2.6rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 960px) { .about-grid { grid-template-columns: .9fr 1.1fr; } }
.about-figure { border-radius: 22px; overflow: hidden; aspect-ratio: 4/5; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.2rem; }
.about-stat strong { display: block; font-family: var(--serif); font-size: 1.9rem; color: var(--navy); }
.about-stat span { font-size: .82rem; color: var(--ink-mute); }

/* =============================================================
   14. Testimonials
   ============================================================= */
.testi-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 1.7rem; }
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: .9rem; letter-spacing: .15em; }
.testi-card p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.testi-author { font-size: .85rem; font-weight: 600; color: var(--navy); }
.testi-context { font-size: .8rem; color: var(--ink-mute); }

/* =============================================================
   14.5 FAQ
   ============================================================= */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 0 1.4rem; transition: border-color .3s var(--ease-out);
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.2rem 0; padding-right: 2rem;
  font-weight: 600; font-size: 1rem; color: var(--navy); position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.3rem; font-weight: 400; color: var(--gold-2); transition: transform .3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding-bottom: 1.3rem; color: var(--ink-soft); font-size: .95rem; max-width: 64ch; }

/* =============================================================
   15. CTA band
   ============================================================= */
.cta-band {
  position: relative; background: var(--navy); color: #fff; overflow: clip;
  border-radius: 28px; margin-inline: 1.25rem; padding: clamp(2.6rem, 7vw, 4.6rem) clamp(1.6rem, 6vw, 4rem);
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: -40% -10% -60% -10%;
  background: radial-gradient(45% 45% at 50% 30%, rgba(184,149,89,.32), transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 2.8rem); position: relative; z-index: 1; }
.cta-band p { position: relative; z-index: 1; color: rgba(255,255,255,.75); margin-top: .9rem; max-width: 46ch; margin-inline: auto; }
.cta-actions { position: relative; z-index: 1; margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* =============================================================
   16. Footer
   ============================================================= */
.site-footer { background: #0b0b0c; color: rgba(255,255,255,.7); padding-block: 3.4rem 1.8rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand { color: #fff; font-family: var(--serif); font-size: 1.2rem; margin-bottom: .8rem; display: flex; align-items: center; gap: .6rem; }
.footer-grid h4 { color: #fff; font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid ul { display: grid; gap: .65rem; font-size: .88rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; transition: border-color .3s, color .3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.6rem; padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.5); }

/* =============================================================
   17. Estimate form page
   ============================================================= */
.form-hero { background: var(--navy); color: #fff; padding-block: clamp(6rem, 12vw, 8.5rem) clamp(3rem, 6vw, 4rem); text-align: center; }
.form-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 22ch; margin-inline: auto; }
.form-hero p { color: rgba(255,255,255,.75); margin-top: 1rem; max-width: 50ch; margin-inline: auto; }
.form-wrap { max-width: 760px; margin-inline: auto; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: clamp(1.6rem, 5vw, 3rem); margin-top: -3.4rem; position: relative; box-shadow: 0 36px 70px -36px rgba(18,35,64,.25); }
.form-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .5rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem; padding: .85rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--bg); color: var(--ink);
  transition: border-color .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); background: var(--paper); outline: none; }
.field textarea { resize: vertical; min-height: 110px; }
.field-file {
  border: 1.5px dashed var(--line); border-radius: 12px; padding: 1.6rem; text-align: center;
  background: var(--bg); cursor: pointer; transition: border-color .25s, background .25s;
}
.field-file:hover { border-color: var(--gold); background: var(--bg-2); }
.field-file input { display: none; }
.field-file-label { font-size: .9rem; color: var(--ink-soft); }
.field-file-label strong { color: var(--navy); }
.file-name { margin-top: .6rem; font-size: .8rem; color: var(--gold-2); }
.form-submit { margin-top: 1.6rem; }
.form-success {
  display: none; text-align: center; padding: 2.4rem 1rem;
}
.form-success.is-active { display: block; }
.form-success svg { width: 64px; height: 64px; color: var(--gold); margin-inline: auto; margin-bottom: 1rem; }
.form-success h3 { margin-bottom: .6rem; }
.form-success p { color: var(--ink-mute); }
.form-fields.is-hidden { display: none; }
.sqft-toggle {
  margin-top: .5rem; font-size: .82rem; font-weight: 600; color: var(--gold-2);
  text-decoration: underline; background: none; border: 0; padding: 0; cursor: pointer;
}
.sqft-calc {
  margin-top: 1rem; padding: 1.2rem; border-radius: 12px;
  background: var(--bg-2); border: 1px solid var(--line);
}
.sqft-calc[hidden] { display: none; }
.sqft-calc-title { font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.sqft-calc-hint { font-size: .85rem; color: var(--ink-mute); margin-bottom: .9rem; }
.sqft-rows { display: flex; flex-direction: column; gap: .6rem; }
.sqft-row { display: flex; align-items: center; gap: .6rem; }
.sqft-row input {
  flex: 1; padding: .7rem .9rem; border-radius: 8px; border: 1px solid var(--line);
  background: var(--paper); font-size: .95rem; color: var(--ink);
}
.sqft-x { color: var(--ink-mute); font-weight: 600; }
.sqft-calc-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: .9rem; flex-wrap: wrap;
}
.sqft-calc-actions .btn-ghost { padding: .6rem 1.1rem; font-size: .85rem; }
.sqft-total { font-size: .9rem; color: var(--ink-soft); }
.sqft-total strong { color: var(--gold-2); font-size: 1.05rem; }
.sqft-calc > .btn { margin-top: .9rem; }
.form-error {
  display: none; margin-top: 1.2rem; padding: .9rem 1.1rem; border-radius: 10px;
  background: rgba(176,42,42,.08); border: 1px solid rgba(176,42,42,.25);
  color: #8a2424; font-size: .88rem;
}
.form-error.is-active { display: block; }
.form-error a { color: #8a2424; font-weight: 600; text-decoration: underline; }
.field-hint { margin-top: .6rem; font-size: .85rem; color: var(--ink-mute); }
.field-note { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; }
.field-note p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
.field-note a { color: var(--gold-2); font-weight: 600; text-decoration: underline; }
.form-side-note { margin-top: 1.4rem; text-align: center; font-size: .85rem; color: var(--ink-mute); }
.form-side-note a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* =============================================================
   18. Mobile nav drawer
   ============================================================= */
.nav-toggle { display: inline-flex; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; border: 1px solid var(--line); background: var(--paper); }
@media (min-width: 960px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 18px; height: 18px; }
.mobile-drawer {
  position: fixed; inset: 0; z-index: 600; background: var(--navy); color: #fff;
  transform: translateY(-100%); transition: transform .45s var(--ease-out);
  display: flex; flex-direction: column; padding: 5.5rem 1.5rem 2rem;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer a { font-family: var(--serif); font-size: 1.6rem; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-drawer-close { position: absolute; top: 1.4rem; right: 1.4rem; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.mobile-drawer-actions { margin-top: auto; display: grid; gap: .8rem; }

/* =============================================================
   19. Responsive tweaks
   ============================================================= */
@media (max-width: 539px) {
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .about-stats { grid-template-columns: 1fr 1fr 1fr; gap: .6rem; }
}