/* ============================================================
   Heaven's Landing — heavenslanding.com
   Modern luxury · mobile-first
   ============================================================ */

:root {
  --ink: #12161a;          /* near-black blue-green */
  --ink-soft: #1c2329;
  --paper: #f7f4ee;        /* warm cream */
  --paper-deep: #efe9df;
  --gold: #b9924f;         /* brass */
  --gold-bright: #d4af6d;
  --stone: #6b7280;
  --line: rgba(18, 22, 26, 0.12);
  --line-light: rgba(247, 244, 238, 0.18);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Avenir Next", "Helvetica Neue", sans-serif;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.display {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ---------- Header / nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header .bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-header.scrolled {
  background: rgba(18, 22, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line-light);
}

/* backdrop-filter turns the header into the containing block for its
   position:fixed children, which traps the mobile menu inside the header bar.
   Drop it while the menu is open so the overlay can fill the viewport. */
body.nav-open .site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: #fff;
  z-index: 102;
}
.brand .logo {
  height: clamp(3.2rem, 7vw, 4.6rem);
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}
.brand .name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand .tag {
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 0.4rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}
.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.main-nav a:hover { color: #fff; }
.main-nav a.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}
.main-nav .nav-cta {
  border: 1px solid var(--gold);
  padding: 0.55rem 1.3rem;
  color: var(--gold-bright);
}
.main-nav .nav-cta:hover { background: var(--gold); color: var(--ink); }

.nav-toggle {
  display: none;
  z-index: 102;
  background: none;
  border: 0;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.nav-toggle::before { top: 0.65rem; }
.nav-toggle span    { top: 1.075rem; }
.nav-toggle::after  { top: 1.5rem; }
body.nav-open .nav-toggle::before { top: 1.075rem; transform: rotate(45deg); }
body.nav-open .nav-toggle span    { opacity: 0; }
body.nav-open .nav-toggle::after  { top: 1.075rem; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(18, 22, 26, 0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .main-nav a { font-size: 1rem; }
  body.nav-open .main-nav { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}
.hero.short { min-height: 62svh; }

.hero-media,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14, 17, 20, 0.88) 0%, rgba(14, 17, 20, 0.25) 45%, rgba(14, 17, 20, 0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8rem var(--pad) clamp(3rem, 8vh, 6rem);
}
.hero h1 {
  font-size: clamp(2.8rem, 7.5vw, 5.6rem);
  font-weight: 500;
  max-width: 16ch;
  margin-bottom: 1.4rem;
}
.hero .sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 300;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.4rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--pad);
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 3.4rem;
  background: linear-gradient(to bottom, var(--gold-bright), transparent);
  animation: drip 2.4s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1) translateY(0.5rem); opacity: 0; }
}
@media (max-width: 640px) { .hero-scroll { display: none; } }

/* ---------- Buttons ---------- */

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}
.btn:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn.ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn.ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

.btn.ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(18, 22, 26, 0.35);
}
.btn.ghost-dark:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

/* ---------- Sections ---------- */

.section {
  padding: clamp(4rem, 10vh, 7.5rem) var(--pad);
}
.section > .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}
.section.tight { padding-top: clamp(2.5rem, 6vh, 4rem); }

.section.dark {
  background: var(--ink);
  color: var(--paper);
}
.section.dark .lede { color: rgba(247, 244, 238, 0.85); }
.section.deep { background: var(--paper-deep); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.split.rev > .split-media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split.rev > .split-media { order: 0; }
}

.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: clamp(320px, 55vh, 560px);
  object-fit: cover;
}
.split-media .frame {
  position: absolute;
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border: 1px solid var(--gold);
  z-index: -1;
}
.split-media.plain .frame { display: none; }

/* Phones: the fixed tall height crops these wide aerials down to a narrow
   vertical slice, and the offset frame runs past the right edge.
   Must come after the base rule above - equal specificity, so order decides. */
@media (max-width: 860px) {
  .split-media img { height: auto; }
  .split-media .frame { display: none; }
}

.split-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 1.3rem;
  max-width: 20ch;
}
.split-copy p + p { margin-top: 1.1rem; }
.split-copy .btn-row { margin-top: 2rem; }

.center-head { max-width: 760px; margin: 0 auto; text-align: center; }
.center-head .eyebrow { justify-content: center; }
.center-head .eyebrow::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.center-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 1.2rem;
}

/* ---------- Stats band ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem var(--pad);
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto;
}
.stats .stat .num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
}
.stats .stat .label {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.65);
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Season strip ---------- */

.seasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 3.2rem;
}
.seasons figure { position: relative; overflow: hidden; }
.seasons img {
  width: 100%;
  height: clamp(240px, 30vw, 420px);
  object-fit: cover;
  transition: transform 0.8s ease;
}
.seasons figure:hover img { transform: scale(1.05); }
.seasons figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(14,17,20,0.75), transparent);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}
@media (max-width: 760px) {
  .seasons { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Photo mosaic (home) ---------- */

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 3rem;
}
.mosaic a { overflow: hidden; position: relative; }
.mosaic img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.mosaic a:hover img { transform: scale(1.05); }
.mosaic a.wide { grid-column: span 2; }
@media (max-width: 760px) {
  .mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic a.wide { grid-column: span 2; }
  .mosaic img { height: 200px; }
}

/* ---------- Quote band ---------- */

.quote-band {
  position: relative;
  padding: clamp(6rem, 16vh, 10rem) var(--pad);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.quote-band::after { content: ""; position: absolute; inset: 0; background: rgba(14,17,20,0.55); }
.quote-band .wrap { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 500;
  line-height: 1.3;
}
.quote-band cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
@media (max-width: 860px) { .quote-band { background-attachment: scroll; } }

/* ---------- Spec table (runway) ---------- */

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 3rem;
}
@media (max-width: 1000px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .spec-grid { grid-template-columns: 1fr; } }
.spec {
  background: var(--paper);
  padding: 1.8rem 1.6rem;
}
.spec .k {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.6rem;
}
.spec .v {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}
.spec .v small {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--stone);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

.data-table { width: 100%; border-collapse: collapse; margin-top: 1.6rem; }
.data-table th, .data-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.data-table th {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
.data-table td:first-child { font-weight: 400; }

.notice {
  margin-top: 2.4rem;
  border-left: 2px solid var(--gold);
  padding: 1rem 1.4rem;
  background: var(--paper-deep);
  font-size: 0.95rem;
}

/* ---------- Gallery (media page) ---------- */

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2.6rem 0 2.2rem;
}
.filter-btn {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery a {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--paper-deep);
}
.gallery a.hidden { display: none; }
.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery a:hover img { transform: scale(1.06); }
@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .gallery img { height: 160px; }
}

/* ---------- Video grids ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2.6rem;
}
.video-card video, .video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  border: 0;
  display: block;
}
.video-card h3 {
  margin-top: 0.9rem;
  font-size: 1.2rem;
  font-weight: 500;
}
.video-card p { font-size: 0.9rem; color: var(--stone); }
.section.dark .video-card p { color: rgba(247,244,238,0.6); }

/* ---------- YouTube link cards ---------- */

.yt-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .yt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .yt-grid { grid-template-columns: 1fr; } }

.yt-card { display: block; }
.yt-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
}
.yt-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.yt-card:hover .yt-thumb img { transform: scale(1.04); opacity: 0.85; }
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(14, 17, 20, 0.55);
  backdrop-filter: blur(4px);
  transition: background 0.3s, border-color 0.3s;
}
.yt-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.95rem;
  border-color: transparent transparent transparent #fff;
}
.yt-card:hover .yt-play { background: var(--gold); border-color: var(--gold); }
.yt-card h3 { transition: color 0.25s; }
.yt-card:hover h3 { color: var(--gold-bright); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 12, 14, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(94vw, 1400px);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: none;
  border: 0;
  color: rgba(255,255,255,0.8);
  font-size: 2rem;
  font-family: var(--serif);
  cursor: pointer;
  padding: 1rem;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox button:hover { color: var(--gold-bright); }
.lb-close { top: 1rem; right: 1.2rem; }
.lb-prev { left: 0.6rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 0.6rem; top: 50%; transform: translateY(-50%); }

/* ---------- Cards (area page) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin-top: 3rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.card img { height: 230px; width: 100%; object-fit: cover; }
.card .body { padding: 1.6rem 1.5rem 1.8rem; flex: 1; }
.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
}
.card p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form { display: grid; gap: 1.2rem; }
.field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.45rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(18,22,26,0.3);
  padding: 0.65rem 0.1rem;
  border-radius: 0;
  transition: border-color 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.contact-side h3 {
  font-size: 1.05rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 0.7rem;
}
.contact-side h3:first-child { margin-top: 0; }
.contact-side p { font-size: 1rem; }
.contact-side a:hover { color: var(--gold); }
.contact-side .big {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 820px;
  margin: 2.6rem auto 0;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1.35rem 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  margin-left: auto;
  flex: none;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold); }
.faq details p {
  padding: 0 2.5rem 1.5rem 0;
  color: var(--ink-soft);
  max-width: 65ch;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: clamp(4.5rem, 12vh, 7.5rem) var(--pad);
}
.cta-band h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  max-width: 22ch;
  margin: 0 auto 1.2rem;
}
.cta-band p {
  max-width: 56ch;
  margin: 0 auto 2.4rem;
  color: rgba(247,244,238,0.75);
}
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */

.site-footer {
  background: #0d1114;
  color: rgba(247, 244, 238, 0.7);
  padding: 4rem var(--pad) 2.5rem;
  font-size: 0.9rem;
}
.site-footer .cols {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
}
@media (max-width: 860px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .cols { grid-template-columns: 1fr; } }

.site-footer .brand { margin-bottom: 1rem; }
.site-footer .brand .logo {
  height: 4.4rem;
  width: auto;
  align-self: flex-start;
  filter: none;
  margin-left: -0.3rem;
}
.site-footer .brand .tag { margin-top: 0.2rem; }
.site-footer h4 {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.55rem; }
.site-footer a:hover { color: #fff; }
.site-footer .fine {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(247,244,238,0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(247,244,238,0.45);
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
