/* ============================================================
   Stillwater Meadows — Wedding & Event Venue, Boomer NC
   Design: rustic mountain elegance — pine, cream, gold
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-500i.woff2") format("woff2");
  font-weight: 500; font-style: italic; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --pine:        #20382c;
  --pine-deep:   #162a20;
  --pine-ink:    #0e1d15;
  --moss:        #4a6b52;
  --gold:        #b98a3e;
  --gold-soft:   #d3b078;
  --cream:       #faf6ed;
  --cream-2:     #f3ecdc;
  --sand:        #e9dfc9;
  --ink:         #2b2a25;
  --ink-soft:    #5c584e;
  --white:       #fffdf7;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 18px 50px rgba(14, 29, 21, .16);
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --maxw: 1180px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.0625rem;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--moss); text-decoration: none; }
a:hover { text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--pine-deep); }

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--pine-deep);
  letter-spacing: .01em;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--gold); }
.eyebrow.center::after { content: ""; width: 2.2rem; height: 1px; background: var(--gold); }

h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 600; }

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head h2 { margin: .8rem 0 .9rem; }
.section-head p.lede { color: var(--ink-soft); font-size: 1.12rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .86rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
  cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--pine-ink); }
.btn-gold:hover { background: var(--pine-deep); color: var(--cream); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(250, 246, 237, .55); }
.btn-ghost:hover { background: var(--cream); color: var(--pine-deep); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--pine-deep); border-color: var(--moss); }
.btn-ghost-dark:hover { background: var(--pine-deep); color: var(--cream); transform: translateY(-2px); }
.btn-sm { padding: .7rem 1.3rem; font-size: .78rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 1.4rem 0;
}
.site-header.scrolled {
  background: rgba(22, 42, 32, .96);
  box-shadow: 0 6px 30px rgba(0,0,0,.25);
  padding: .7rem 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .name {
  font-family: var(--serif); font-weight: 700;
  font-size: 1.5rem; color: var(--cream); letter-spacing: .04em;
}
.brand .tag {
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-soft); margin-top: .28rem;
}
.main-nav ul { display: flex; gap: 1.7rem; align-items: center; }
.main-nav a {
  color: rgba(250, 246, 237, .85); font-size: .84rem;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  transition: color .2s;
}
.main-nav a:hover { color: var(--gold-soft); }
.main-nav a.btn { color: var(--pine-ink); }
.main-nav a.btn:hover { color: var(--pine-ink); }
.main-nav .btn { padding: .6rem 1.15rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 5px 0; transition: .3s; }

@media (max-width: 900px) {
  .nav-toggle { display: block; z-index: 61; }
  .main-nav {
    position: fixed; inset: 0; background: var(--pine-deep);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 1.6rem; }
  .main-nav a { font-size: 1.05rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,29,21,.78) 0%, rgba(14,29,21,.12) 34%, rgba(14,29,21,.28) 56%, rgba(14,29,21,.86) 100%),
    linear-gradient(90deg, rgba(14,29,21,.45) 0%, rgba(14,29,21,.18) 42%, rgba(14,29,21,.04) 72%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(4rem, 9vh, 7rem); }
.hero-inner .eyebrow { color: var(--gold-soft); }
.hero-inner h1 { color: var(--white); max-width: 15ch; margin: 1.1rem 0 1.2rem; }
.hero-inner p.lede { color: rgba(250,246,237,.92); max-width: 52ch; font-size: 1.15rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-meta {
  display: flex; gap: 2.2rem; flex-wrap: wrap; margin-top: clamp(2.2rem, 6vh, 3.6rem);
  border-top: 1px solid rgba(250,246,237,.25); padding-top: 1.4rem;
}
.hero-meta div b { display: block; font-family: var(--serif); font-size: 1.55rem; color: var(--white); font-weight: 600; }
.hero-meta div span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,246,237,.75); }

.scroll-cue {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(250,246,237,.55); border-radius: 14px; z-index: 3;
}
.scroll-cue::after {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; border-radius: 2px; background: var(--gold-soft);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0% { opacity: 1; transform: translate(-50%, 0); } 70% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ---------- Welcome ---------- */
.welcome-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.welcome-copy .lead-para { font-size: 1.28rem; font-family: var(--serif); color: var(--pine); }
.welcome-copy p { color: var(--ink-soft); margin-top: 1.1rem; }
.welcome-copy .cta-row { margin-top: 2rem; }
.welcome-media { position: relative; }
.welcome-media img { border-radius: 6px; box-shadow: var(--shadow); }
.welcome-media .frame-cap {
  position: absolute; bottom: -1.1rem; left: -1.1rem;
  background: var(--pine); color: var(--cream);
  font-family: var(--serif); font-style: italic; font-size: 1.02rem;
  padding: .9rem 1.4rem; border-radius: 4px;
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-media .frame-cap { left: .8rem; }
}

/* ---------- Stat band ---------- */
.stats {
  background: var(--pine-deep);
  color: var(--cream);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat b {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--gold-soft); line-height: 1.1;
}
.stat span { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,246,237,.72); }
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Feature cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: 6px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card-body h3 { color: var(--pine-deep); }
.card-body p { color: var(--ink-soft); font-size: .98rem; }
.card-link { margin-top: auto; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.card-link:hover { color: var(--pine); }
@media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr; } }

/* ---------- Split feature (photo left / copy right) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media img { border-radius: 6px; box-shadow: var(--shadow); }
.split-copy p { color: var(--ink-soft); margin-top: 1rem; }
.check-list { margin-top: 1.4rem; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .8rem; align-items: baseline; color: var(--ink); }
.check-list li::before {
  content: ""; flex: 0 0 auto; width: 14px; height: 14px; margin-top: .35em;
  border: 1.5px solid var(--gold); border-radius: 50%;
  background: radial-gradient(circle at center, var(--gold) 0 3.5px, transparent 4px);
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
}

/* ---------- Parallax band ---------- */
.band {
  position: relative; isolation: isolate;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  color: var(--cream);
}
.band-bg { position: absolute; inset: 0; z-index: -1; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(14,29,21,.72), rgba(14,29,21,.55));
}
.band h2 { color: var(--white); }
.band .lede { color: rgba(250,246,237,.9); max-width: 56ch; margin-top: 1rem; }
.band .eyebrow { color: var(--gold-soft); }

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem;
}
.gallery-strip figure img { aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; transition: transform .35s; }
.gallery-strip figure { overflow: hidden; border-radius: 4px; position: relative; }
.gallery-strip figure:hover img { transform: scale(1.05); }
.gallery-strip figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem .9rem .7rem;
  background: linear-gradient(180deg, transparent, rgba(14,29,21,.72));
  color: var(--cream); font-family: var(--serif); font-style: italic; font-size: .98rem;
  opacity: 0; transition: opacity .3s;
}
.gallery-strip figure:hover figcaption { opacity: 1; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
.price-card {
  background: var(--white); border: 1px solid var(--sand); border-radius: 8px;
  padding: 2.4rem 2.2rem; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--gold); }
.price-card .badge {
  position: absolute; top: -13px; left: 2rem;
  background: var(--gold); color: var(--pine-deep);
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: 3px;
}
.price-card .price {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--pine-deep); line-height: 1.1;
}
.price-card .price small { font-size: 1.05rem; font-weight: 600; color: var(--ink-soft); }
.price-card .per { font-size: .85rem; color: var(--ink-soft); }
.price-card ul { margin: 1.4rem 0 1.8rem; display: grid; gap: .6rem; }
.price-card ul li { display: flex; gap: .7rem; align-items: baseline; font-size: .97rem; color: var(--ink-soft); }
.price-card ul li::before { content: "—"; color: var(--gold); font-weight: 700; }
.note { font-size: .86rem; color: var(--ink-soft); margin-top: 1.6rem; }
@media (max-width: 800px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- Trust strip ---------- */
.trust { text-align: center; }
.trust ul { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; }
.trust a {
  font-family: var(--serif); font-size: 1.35rem; color: var(--ink-soft);
  transition: color .2s;
}
.trust a:hover { color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 22ch; margin: 1rem auto; }
.cta-band .lede { margin: 0 auto 2rem; }
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-contacts { margin-top: 2.2rem; display: flex; gap: 2.4rem; justify-content: center; flex-wrap: wrap; font-size: .95rem; }
.cta-contacts a { color: var(--cream); border-bottom: 1px solid rgba(250,246,237,.35); padding-bottom: 2px; }
.cta-contacts a:hover { color: var(--gold-soft); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; min-height: 46vh; display: flex; align-items: flex-end;
  padding-top: 8rem; color: var(--cream); overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,29,21,.45), rgba(14,29,21,.8));
}
.page-hero .wrap { position: relative; z-index: 2; padding-bottom: clamp(2.5rem, 6vh, 4rem); width: 100%; }
.page-hero h1 { color: var(--white); margin: .8rem 0 .6rem; }
.page-hero p { color: rgba(250,246,237,.9); max-width: 60ch; }
.crumbs { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,246,237,.75); }
.crumbs a { color: var(--gold-soft); }

/* ---------- Two-col content ---------- */
.two-col { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: 6px; margin-bottom: .9rem; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1.25rem 1.5rem;
  font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--pine-deep);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--sans); font-size: 1.3rem; color: var(--gold); transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 1.5rem 1.4rem; color: var(--ink-soft); max-width: 72ch; }
.faq-item .answer p + p { margin-top: .7rem; }

/* ---------- Gallery page ---------- */
.masonry { column-count: 3; column-gap: .9rem; }
.masonry figure {
  break-inside: avoid; margin-bottom: .9rem; cursor: zoom-in; position: relative; border-radius: 4px; overflow: hidden;
}
.masonry img { width: 100%; transition: transform .35s; }
.masonry figure:hover img { transform: scale(1.03); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.5rem .9rem .6rem;
  background: linear-gradient(180deg, transparent, rgba(14,29,21,.75));
  color: var(--cream); font-family: var(--serif); font-style: italic; font-size: .95rem; opacity: 0; transition: opacity .3s;
}
.masonry figure:hover figcaption { opacity: 1; }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 1; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90; display: none;
  align-items: center; justify-content: center;
  background: rgba(10, 20, 14, .94); padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1200px); max-height: 84vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox .cap { position: absolute; bottom: 1.6rem; left: 0; right: 0; text-align: center; color: rgba(250,246,237,.85); font-family: var(--serif); font-style: italic; font-size: 1.05rem; }
.lightbox .close, .lightbox .prev, .lightbox .next {
  position: absolute; background: none; border: 1px solid rgba(250,246,237,.4); color: var(--cream);
  width: 46px; height: 46px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; transition: background .2s;
}
.lightbox .close:hover, .lightbox .prev:hover, .lightbox .next:hover { background: rgba(250,246,237,.15); }
.lightbox .close { top: 1.4rem; right: 1.4rem; }
.lightbox .prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--white); border: 1px solid var(--sand); border-radius: 8px; padding: 2.2rem 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--pine); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: .98rem;
  background: var(--cream); border: 1px solid var(--sand); border-radius: 4px; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185, 138, 62, .18);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: .8rem; }
.form-sent {
  display: none; margin-top: 1rem; padding: 1rem 1.2rem;
  background: #eaf3ea; border: 1px solid #bcd6bc; border-radius: 4px; color: #2c5a2c; font-size: .95rem;
}
.form-sent.show { display: block; }

.info-cards { display: grid; gap: 1rem; }
.info-card {
  background: var(--white); border: 1px solid var(--sand); border-radius: 6px;
  padding: 1.4rem 1.6rem;
}
.info-card h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: .98rem; }
.info-card a { color: var(--moss); font-weight: 500; }
.map-frame { border: 0; width: 100%; height: 340px; border-radius: 8px; box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-ink); color: rgba(250,246,237,.82); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.4rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--serif); font-size: 1.15rem; color: var(--white);
  margin-bottom: 1rem; font-weight: 600;
}
.footer-grid a { color: rgba(250,246,237,.72); font-size: .96rem; display: inline-block; margin-bottom: .45rem; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-brand .name { font-family: var(--serif); font-size: 1.7rem; color: var(--white); font-weight: 700; }
.footer-brand p { margin-top: .7rem; color: rgba(250,246,237,.6); font-size: .93rem; max-width: 34ch; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(250,246,237,.14);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(250,246,237,.5);
}
.footer-bottom a { color: rgba(250,246,237,.65); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--pine-ink); padding: .7rem 1.2rem; font-weight: 600;
}
.skip-link:focus { left: 0; }