/* ===================================================================
   Eleve Vacation Collection — shared design system
   =================================================================== */

:root {
  --navy: #0a0c0f;
  --navy-soft: #15181d;
  --cream: #f8f5ef;
  --cream-deep: #efe9da;
  --gold: #c9a567;
  --gold-deep: #9c7c44;
  --coral: #c5573b;
  --text: #1a1b1d;
  --text-soft: #5b6068;
  --white: #ffffff;
  --border: rgba(10, 12, 15, 0.12);
  --shadow: 0 14px 40px rgba(10, 12, 15, 0.10);
  --radius: 2px;
  --radius-lg: 2px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1180px;
}

@media (prefers-reduced-motion: no-preference) and (min-width: 761px) {
  .hero { animation: heroZoom 24s ease-in-out infinite alternate; }
}
@keyframes heroZoom { from { background-size: 102% auto; } to { background-size: 116% auto; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  margin: 0 0 0.5em;
  color: var(--navy);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); line-height: 1.04; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.5rem); line-height: 1.18; letter-spacing: -0.005em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text-soft); }

a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 0.9em;
  display: block;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { padding-left: 0; }
.eyebrow.center::before {
  left: 50%;
  transform: translateX(-13px);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 108px 0; }
.section-tight { padding: 56px 0; }
.center { text-align: center; }
.lede {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 620px;
}
.center .lede { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.35s cubic-bezier(.22,1,.36,1), color 0.35s cubic-bezier(.22,1,.36,1),
              border-color 0.35s cubic-bezier(.22,1,.36,1), letter-spacing 0.35s ease,
              transform 0.2s ease, box-shadow 0.35s ease;
  white-space: nowrap;
}
.btn:hover { letter-spacing: 0.14em; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--gold); color: var(--navy); box-shadow: 0 10px 28px rgba(201,165,103,0.35); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--navy); color: var(--gold); box-shadow: 0 10px 28px rgba(10,12,15,0.25); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-light:hover { background: var(--white); border-color: var(--white); color: var(--navy); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 0.72rem; }

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 240, 0.98);
  box-shadow: 0 8px 28px rgba(10,12,15,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.015em;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.nav-links a {
  color: var(--navy);
  opacity: 0.7;
  position: relative;
  padding-bottom: 8px;
  transition: opacity 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-deep);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { width: 70%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; }

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

/* Breadcrumb */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-soft);
  padding: 18px 0 0;
}
.breadcrumb a { color: var(--text-soft); position: relative; transition: color 0.25s ease; }
.breadcrumb a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold-deep);
  transition: width 0.3s cubic-bezier(.22,1,.36,1);
}
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb a:hover::after { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(195deg, rgba(8,10,13,0.58) 0%, rgba(8,10,13,0.9) 100%), var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}
@media (max-width: 760px) {
  .hero {
    animation: none !important;
    background-size: cover !important;
    background-attachment: scroll;
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 28px 88px;
}
.hero h1 { color: var(--white); max-width: 760px; text-shadow: 0 2px 24px rgba(0,0,0,0.45); }
.hero p.lede { color: rgba(255,255,255,0.88); text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.hero .hero-tag { text-shadow: none; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,10,13,0.55);
  border: 1px solid rgba(201,165,103,0.55);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  padding: 9px 20px 9px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-tag::before { content: ""; width: 20px; height: 1px; background: var(--gold); display: inline-block; flex-shrink: 0; }

@keyframes heroFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-tag, .hero h1, .hero p.lede, .hero .search-bar {
  animation: heroFadeUp 0.9s cubic-bezier(.22,1,.36,1) both;
}
.hero-tag { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.22s; }
.hero p.lede { animation-delay: 0.36s; }
.hero .search-bar { animation-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .hero-tag, .hero h1, .hero p.lede, .hero .search-bar { animation: none; }
}

/* Floating search / booking bar */
.search-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  margin-top: 32px;
  max-width: 880px;
}
.search-field {
  padding: 6px 18px;
  border-right: 1px solid var(--border);
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.search-field input, .search-field select {
  border: none;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--navy);
  width: 100%;
  background: transparent;
}
.search-bar .btn { margin: 4px; }
@media (max-width: 760px) {
  .search-bar { grid-template-columns: 1fr 1fr; }
  .search-bar .btn { grid-column: 1 / -1; }
}

/* Trust strip */
.trust-strip {
  background: var(--navy);
  color: var(--white);
  border-top: 1px solid rgba(201,165,103,0.35);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 44px 0;
  text-align: center;
}
.trust-grid > div { border-right: 1px solid rgba(255,255,255,0.1); }
.trust-grid > div:last-child { border-right: none; }
.trust-grid .stat-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-bottom: 8px; }
.trust-grid .stat-value { font-family: var(--serif); font-size: 1.3rem; color: var(--gold); }
@media (max-width: 760px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* Cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: none;
  transition: border-color 0.35s ease, transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s cubic-bezier(.22,1,.36,1);
}
.card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 20px 44px rgba(10,12,15,0.12); }
.card-media {
  aspect-ratio: 4/3;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.22,1,.36,1); }
.card:hover .card-media img { transform: scale(1.06); }
.card-media .placeholder-label {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
  padding: 0 16px;
}
.coming-soon-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(20,32,44,0.85); color: var(--white);
  font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.card-body { padding: 20px; }
.card-body h3 { margin-bottom: 4px; }
.card-body .price { color: var(--gold-deep); font-weight: 600; font-size: 0.95rem; }
.card-meta { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 10px; }

.pkg-card {
  text-align: center;
  padding: 26px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.35s ease, transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s cubic-bezier(.22,1,.36,1);
}
.pkg-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 16px 36px rgba(10,12,15,0.1); }
.pkg-card .pkg-price { font-family: var(--serif); font-size: 1.4rem; color: var(--gold-deep); margin: 6px 0; }
.pkg-card h4 { margin-bottom: 4px; font-family: var(--serif); }
.pkg-card p { font-size: 0.85rem; margin-bottom: 0; }

/* Story / split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img, .split .media-block {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--cream-deep);
}
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.96rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); margin-top: 9px; flex-shrink: 0;
}

/* Reviews */
.review-card { padding: 24px; }
.review-stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; font-size: 0.9rem; }
.review-source {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-top: 10px;
}

/* Section bg variants */
.bg-cream-deep { background: var(--cream-deep); }
.bg-navy { background: var(--navy); color: rgba(255,255,255,0.9); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.72); }

/* Gallery (property page) */
.gallery {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  cursor: pointer;
}
.gallery .g-main { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery > div:hover img { transform: scale(1.03); }
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery .g-main { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 16/10; }
  .gallery img { aspect-ratio: 1; }
}

.gallery-viewall {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(10,12,15,0.78);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}
.gallery-viewall:hover { background: var(--gold-deep); transform: translateY(-2px); }
@media (max-width: 760px) {
  .gallery-viewall { bottom: 10px; right: 10px; padding: 7px 14px; font-size: 0.72rem; }
}

/* Full photo gallery modal */
.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  overflow-y: auto;
  display: none;
}
.photo-modal.is-open { display: block; }
.photo-modal-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px 80px; }
.photo-modal-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  padding: 20px 0 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
}
.photo-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}
.photo-modal-close:hover { color: var(--gold-deep); }
.photo-section { margin-top: 28px; }
.photo-section h4 { font-family: var(--serif); font-size: 1rem; color: var(--navy); margin-bottom: 12px; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.photo-grid img:hover { transform: scale(1.02); box-shadow: 0 12px 28px rgba(10,12,15,0.18); }
@media (max-width: 760px) {
  .photo-modal-inner { padding: 0 16px 60px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid img { height: 160px; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8,10,13,0.96);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 84vh; object-fit: contain; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .lightbox-prev { left: 8px; width: 38px; height: 38px; }
  .lightbox-next { right: 8px; width: 38px; height: 38px; }
  .lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; }
}

body.modal-open { overflow: hidden; }

/* Property layout */
.property-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 920px) { .property-layout { grid-template-columns: 1fr; } }
.content-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.quick-facts { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.92rem; color: var(--text-soft); margin-bottom: 6px;}
.quick-facts span { display: flex; align-items: center; gap: 6px; }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  font-size: 0.92rem;
}
@media (max-width: 500px) { .amenity-grid { grid-template-columns: 1fr; } }

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  position: sticky;
  top: 100px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
}
.booking-price { font-family: var(--serif); font-size: 2.1rem; color: var(--navy); }
.booking-price span { font-family: var(--sans); font-size: 0.85rem; color: var(--text-soft); font-weight: 400; }
.booking-note { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 22px; }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.booking-fields .field-full { grid-column: 1 / -1; }
.field {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,165,103,0.16); }
.field label { display: block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); margin-bottom: 2px;}
.field input, .field select { border: none; width: 100%; font-family: var(--sans); font-size: 0.88rem; background: transparent; }
.price-breakdown { font-size: 0.88rem; margin: 16px 0; }
.price-breakdown div { display: flex; justify-content: space-between; padding: 5px 0; color: var(--text-soft); }
.price-breakdown .total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; color: var(--navy); font-weight: 600; }
.booking-placeholder-flag {
  background: #fdf3e3;
  border: 1px solid #ecd8ab;
  color: #8a6d3a;
  font-size: 0.76rem;
  padding: 8px 10px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 18px 0;
  font-weight: 600;
  font-family: var(--serif);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary { transition: color 0.25s ease; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold-deep);
  font-family: var(--sans);
  display: inline-block;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding-bottom: 18px;
  opacity: 0;
  transform: translateY(-6px);
  animation: faqIn 0.35s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes faqIn { to { opacity: 1; transform: none; } }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--sans); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 0.88rem; }
.site-footer a { position: relative; transition: color 0.25s ease; }
.site-footer a::after {
  content: "";
  position: absolute; left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(.22,1,.36,1);
}
.site-footer a:hover { color: var(--gold); }
.site-footer a:hover::after { width: 100%; }
.footer-brand { font-family: var(--serif); font-size: 1.3rem; color: var(--white); margin-bottom: 10px; }
.footer-newsletter { display: flex; gap: 8px; margin-top: 14px; max-width: 320px; }
.footer-newsletter input {
  flex: 1; padding: 10px 12px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06); color: var(--white); font-family: var(--sans); font-size: 0.85rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.footer-newsletter input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); outline: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; font-size: 0.78rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* Coming soon / placeholder pages */
.placeholder-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.placeholder-page .container { max-width: 560px; }

/* Announcement bar */
.build-banner {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  font-weight: 600;
}
.build-banner a { text-decoration: underline; color: var(--navy); }
