/* ==========================================================================
   MRZ STAMENS — Dark Luxe
   ========================================================================== */

:root {
  --black:      #080707;
  --ink:        #0d0b0b;
  --ink-2:      #141110;
  --ink-3:      #1c1817;
  --line:       rgba(212, 175, 110, 0.18);
  --line-soft:  rgba(255, 255, 255, 0.08);

  --gold:       #c9a86a;
  --gold-lit:   #e3cb98;
  --gold-deep:  #8f7440;

  --cream:      #f4efe7;
  --muted:      #a49b91;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: 0;
}

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }

/* Typographic helpers ---------------------------------------------------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.display   { font-size: clamp(2.9rem, 8vw, 6.2rem); }
.h-section { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.h-card    { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }

.lead { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--muted); max-width: 62ch; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 38px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .45s var(--ease), color .45s var(--ease),
              border-color .45s var(--ease), transform .45s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--gold-lit); border-color: var(--gold-lit); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--cream); border-color: var(--line); }
.btn--ghost:hover { background: rgba(201, 168, 106, 0.1); border-color: var(--gold); color: var(--gold-lit); }
.btn--sm { padding: 13px 26px; font-size: 10.5px; letter-spacing: 0.2em; }
.btn--block { width: 100%; }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  transition: border-color .4s var(--ease), color .4s var(--ease), gap .4s var(--ease);
}
.link-underline:hover { border-color: var(--gold); color: var(--gold-lit); gap: 18px; }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 26px 0;
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(8, 7, 7, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 15px 0;
  border-bottom-color: var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; }

.brand {
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--cream);
}
.brand span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .8;
  position: relative;
  z-index: 2;
  padding: 6px 0;
  white-space: nowrap;
  transition: opacity .35s var(--ease), color .35s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
  pointer-events: none;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; color: var(--gold-lit); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  width: 18px; height: 1px;
  background: var(--cream);
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 27px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 28%; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,7,7,.86) 0%, rgba(8,7,7,.5) 40%, rgba(8,7,7,.94) 100%),
    radial-gradient(75% 60% at 20% 45%, rgba(8,7,7,.55), transparent 70%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__title { max-width: 15ch; }
.hero__title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero .lead { margin: 28px 0 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__meta {
  position: absolute;
  left: var(--pad); right: var(--pad); bottom: 34px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 46px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__meta strong { color: var(--gold); font-weight: 400; }

/* Sections --------------------------------------------------------------- */
section { position: relative; }
.section { padding: clamp(80px, 11vw, 150px) 0; }
.section--tight { padding: clamp(60px, 7vw, 96px) 0; }
.section--alt { background: var(--ink); }
.section--line { border-top: 1px solid var(--line-soft); }

.page-head {
  padding: clamp(150px, 20vw, 230px) 0 clamp(50px, 7vw, 90px);
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(201,168,106,.13), transparent 62%),
    var(--black);
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.page-head .lead { margin: 22px auto 0; }

/* Marquee ---------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background: var(--ink);
  padding: 18px 0;
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee span::after { content: "✦"; color: var(--gold); margin-left: 56px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* Split (about) ---------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(.92) contrast(1.04);
}
.split__media--tall img { aspect-ratio: 3 / 4; object-position: center 35%; }
.split__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  z-index: -1;
}
.split__body h2 { margin-bottom: 26px; }
.split__body p { color: var(--muted); }
.split__body p + p { margin-top: 18px; }
.split__body .btn, .split__body .link-underline { margin-top: 34px; }

.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold);
  margin-top: 30px;
}

/* Stats ------------------------------------------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}
.stat { background: var(--black); padding: 38px 26px; text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* Service cards ---------------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.service {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--ink-2), var(--ink));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 38px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.service__media {
  margin: -38px -32px 26px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-3);
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform .8s var(--ease);
}
.service:hover .service__media img { transform: scale(1.05); }
.service::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.service:hover { border-color: var(--line); transform: translateY(-5px); }
.service:hover::before { opacity: 1; }

.service__tag {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.service h3 { margin-bottom: 12px; }
.service p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 0 0 22px; flex: 1; }
.service__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.service__price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--cream);
  line-height: 1;
}
.service__price small { font-size: 10px; letter-spacing: .18em; color: var(--muted); display: block; margin-top: 5px; font-family: var(--font-body); text-transform: uppercase; }
.service--feature { border-color: var(--line); background: linear-gradient(165deg, rgba(201,168,106,.07), var(--ink)); }

/* Filter pills ----------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 46px; }
.filter {
  padding: 11px 24px;
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s var(--ease);
}
.filter:hover { color: var(--cream); border-color: var(--line); }
.filter.is-active { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* Gallery ---------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-2);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .6s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8,7,7,.75));
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item span {
  position: absolute;
  left: 22px; bottom: 20px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lit);
  opacity: 0;
  transform: translateY(8px);
  transition: all .5s var(--ease);
}
.gallery__item:hover span { opacity: 1; transform: none; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--tall img { aspect-ratio: 3 / 8.28; }

/* Instagram bar --------------------------------------------------------- */
.ig-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.ig-bar__handle { display: flex; align-items: center; gap: 16px; }
.ig-bar__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  flex: none;
  transition: background .35s var(--ease);
}
.ig-bar__icon svg { width: 20px; height: 20px; fill: var(--gold); }
.ig-bar__handle:hover .ig-bar__icon { background: rgba(201, 168, 106, .12); }
.ig-bar__handle strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
}
.ig-bar__handle em {
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  background: rgba(6, 5, 5, .95);
  backdrop-filter: blur(10px);
  padding: 5vh 5vw;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 90vh; width: auto; border-radius: var(--radius); }
.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: none;
  color: var(--cream);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.lightbox__close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Steps ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); }
.step { background: var(--black); padding: 40px 30px; }
.step__n {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.28rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* Testimonials ----------------------------------------------------------- */
.quote {
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 38px 34px;
}
.quote__stars { color: var(--gold); letter-spacing: 4px; font-size: 13px; margin-bottom: 18px; }
.quote p {
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.55;
  color: var(--cream);
  margin: 0 0 22px;
  font-style: italic;
}
.quote cite {
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* CTA band --------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding: clamp(80px, 12vw, 150px) 0;
  text-align: center;
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(65% 110% at 50% 50%, rgba(201,168,106,.16), transparent 68%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band .btn { margin-top: 36px; }

/* Acuity calendar embed --------------------------------------------------- */
.acuity-embed {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--ink-2);
  overflow: hidden;
  min-height: 240px;
}
.acuity-embed iframe { width: 100%; min-height: 800px; border: 0; display: block; }
.acuity-embed__empty {
  padding: 56px 32px;
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
}

/* Forms ------------------------------------------------------------------ */
.form { display: grid; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 9px; }
.field label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 15px 16px;
  background: var(--ink-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ink-3);
}
.field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 24px, calc(100% - 15px) 24px; background-size: 5px 5px; background-repeat: no-repeat; }
.field select option { background: var(--ink-2); }

.form-note { font-size: 12.5px; color: var(--muted); }

/* Contact info list ------------------------------------------------------ */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.info-list li { padding-bottom: 26px; border-bottom: 1px solid var(--line-soft); }
.info-list li:last-child { border-bottom: 0; }
.info-list strong {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-list a { font-family: var(--font-display); font-size: 1.5rem; }
.info-list a:hover { color: var(--gold-lit); }

/* Accordion -------------------------------------------------------------- */
.acc { border-top: 1px solid var(--line-soft); }
.acc__item { border-bottom: 1px solid var(--line-soft); }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  background: none;
  border: 0;
  color: var(--cream);
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color .3s var(--ease);
}
.acc__btn:hover { color: var(--gold-lit); }
.acc__btn i { font-style: normal; color: var(--gold); font-size: 1.4rem; transition: transform .4s var(--ease); }
.acc__item.is-open .acc__btn i { transform: rotate(45deg); }
.acc__panel { display: none; padding: 0 0 26px; color: var(--muted); max-width: 78ch; }
.acc__item.is-open .acc__panel { display: block; }

/* Prose (policy pages) --------------------------------------------------- */
.prose { max-width: 74ch; margin-inline: auto; }
.prose h2 { font-size: 1.85rem; margin: 46px 0 16px; }
.prose h3 { font-size: 1.3rem; margin: 32px 0 12px; color: var(--gold-lit); }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--cream); font-weight: 400; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--ink); border-top: 1px solid var(--line-soft); padding: clamp(60px, 8vw, 96px) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 46px;
  padding-bottom: 60px;
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-grid a { font-size: 14px; color: var(--muted); transition: color .3s var(--ease); }
.footer-grid a:hover { color: var(--gold-lit); }
.footer-grid p { font-size: 14px; color: var(--muted); margin: 18px 0 0; max-width: 38ch; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  transition: all .35s var(--ease);
}
.socials a:hover { border-color: var(--gold); background: rgba(201,168,106,.1); }
.socials svg { width: 16px; height: 16px; fill: currentColor; color: var(--muted); }
.socials a:hover svg { color: var(--gold); }

.footer-bar {
  border-top: 1px solid var(--line-soft);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--muted);
}

/* Reveal animation ------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1120px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* Collapse the nav to a menu button well before the tabs get cramped. */
@media (max-width: 1120px) {
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(8,7,7,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .45s var(--ease), visibility .45s var(--ease);
  }
  .nav-links a { font-size: 15px; letter-spacing: 0.3em; padding: 10px 20px; }
  body.nav-open .nav-links { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-toggle { display: block; z-index: 110; }
}

@media (max-width: 860px) {
  .nav-cta .btn { display: none; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media::after { display: none; }

  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--tall img { aspect-ratio: 3 / 4; }
  .form__row { grid-template-columns: 1fr; }
  .hero__meta { position: static; margin-top: 56px; }
  .hero { min-height: auto; }
}

@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }

  /* Compact footer on phones only ---------------------------------------- */
  .site-footer { padding-top: 40px; }
  .footer-grid { gap: 26px; padding-bottom: 32px; }
  .footer-grid h4 { font-size: 9px; margin-bottom: 12px; }
  .footer-grid ul { gap: 8px; }
  .footer-grid a { font-size: 13px; }
  .footer-grid p { font-size: 13px; margin-top: 12px; }
  .socials { margin-top: 16px; }
  .socials a { width: 36px; height: 36px; }
  .footer-bar { padding: 16px 0; font-size: 10.5px; gap: 8px 18px; }
}
