/* ============================================================
   Bel Casa Phuket · main.css
   Brand: gold #C2812B on white · Cinzel (display) + Outfit (body)
   Shape rule: buttons pill · cards/inputs 10px · images 14px
   ============================================================ */

:root {
  --gold: #C2812B;        /* brand accent, large display use */
  --gold-deep: #96621C;   /* buttons + small gold text (AA on white) */
  --gold-soft: #F6EDDD;   /* tint fills */
  --ink: #241D12;         /* headings, near-black warm */
  --body: #453C2E;
  --paper: #FFFFFF;
  --paper-soft: #FAF7F1;
  --line: #EAE3D6;
  --night: #211A0F;       /* dark band */
  --night-text: #F7F1E6;
  --radius-card: 10px;
  --radius-img: 14px;
  --wrap: 1180px;
  /* FINAL FONT SWAP: drop a woff2 into assets/fonts/, add an @font-face in fonts.css, and change --font-heading + --font-body here. Nothing else needs touching. */
  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-heading: 'Lato', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Lato', 'Segoe UI', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 { font-family: var(--font-heading); color: var(--ink); line-height: 1.18; font-weight: 600; }
h1 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.15rem); margin-bottom: 1.0rem; }
h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
h4, h5 { font-family: var(--font-body); font-weight: 600; color: var(--ink); }

p { max-width: 65ch; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
strong { color: var(--ink); font-weight: 600; }
em.accent { font-style: normal; color: var(--gold-deep); font-weight: 500; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 1.25rem; }

section { padding: 4.5rem 0; }
section[id] { scroll-margin-top: 78px; }
@media (max-width: 700px) { section { padding: 3rem 0; } }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.band-soft { background: var(--paper-soft); }
.band-tint { background: var(--gold-soft); }
.band-night { background: var(--night); }
.band-night h2, .band-night h3 { color: var(--night-text); }
.band-night p { color: rgba(247, 241, 230, 0.85); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  padding: 0.78rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid var(--gold-deep);
  background: var(--gold-deep);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { background: #7C5117; border-color: #7C5117; text-decoration: none; box-shadow: 0 6px 18px rgba(150, 98, 28, 0.28); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--gold-deep); }
.btn.ghost:hover { background: var(--gold-soft); }
.btn.ghost-light { background: rgba(0,0,0,0.25); border-color: rgba(255,255,255,0.85); color: #fff; }
.btn.ghost-light:hover { background: rgba(0,0,0,0.45); }
.btn.on-night { background: var(--gold); border-color: var(--gold); color: #211A0F; }
.btn.on-night:hover { background: #D5953F; border-color: #D5953F; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.6rem; height: 68px; }
.brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  white-space: nowrap;
}
.brand:hover { text-decoration: none; color: var(--gold-deep); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; margin-left: auto; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  padding: 0.3rem 0; border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease, color 0.2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  border-bottom-color: var(--gold); text-decoration: none;
}
.nav > .btn { padding: 0.55rem 1.3rem; font-size: 0.9rem; }
.nav-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 0.4rem; }
.nav-toggle svg { width: 22px; height: 18px; }
.mobile-nav { display: none; }

@media (max-width: 920px) {
  .nav-links, .nav > .btn { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .mobile-nav {
    display: none; flex-direction: column; gap: 0.2rem;
    padding: 0.8rem 1.25rem 1.2rem; border-top: 1px solid var(--line); background: #fff;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 0.55rem 0; font-size: 1.02rem; color: var(--ink); font-weight: 500; }
  .mobile-nav .btn { color: #fff; text-align: center; margin-top: 0.6rem; }
  .mobile-nav-label {
    display: block; margin-top: 0.5rem; padding: 0.45rem 0 0.1rem;
    font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold-deep);
  }
  .mobile-nav a.mobile-nav-sub { padding: 0.4rem 0 0.4rem 0.9rem; font-size: 0.96rem; }
}

/* ---------- nav dropdown ("Holiday Villas & Residences") ---------- */
.nav-item.has-dropdown { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 0.35rem; }
.dropdown-trigger .chevron { font-size: 0.6rem; color: var(--gold-deep); transition: transform 0.2s ease; }
.nav-item.has-dropdown:hover .chevron,
.nav-item.has-dropdown:focus-within .chevron { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0; margin-top: 0.7rem;
  min-width: 260px; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  box-shadow: 0 14px 34px rgba(60, 42, 10, 0.16);
  padding: 0.5rem; z-index: 60;
}
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.6rem 0.7rem; border-radius: 6px;
  font-size: 0.92rem; font-weight: 500; color: var(--ink); border-bottom: none;
  white-space: nowrap;
}
.dropdown-menu a:hover, .dropdown-menu a:focus-visible {
  background: var(--gold-soft); text-decoration: none;
}

/* ---------- hero ---------- */
.hero { position: relative; padding: 0; min-height: 82vh; display: flex; align-items: center; }
.hero-media, .hero-media picture, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media { z-index: 0; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  /* directional: darkest behind the text block (left), photo stays bright on the right */
  background:
    linear-gradient(100deg, rgba(20,14,5,0.58) 0%, rgba(20,14,5,0.30) 42%, rgba(20,14,5,0.05) 72%),
    linear-gradient(to bottom, rgba(20,14,5,0.24) 0%, rgba(20,14,5,0.06) 45%, rgba(20,14,5,0.46) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; padding: 7rem 1.25rem 9rem; width: 100%; }
.hero-content .hero-eyebrow {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: #F2D9AE; margin-bottom: 1.1rem; text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}
.hero-content h1 { color: #fff; max-width: 28ch; text-shadow: 0 1px 2px rgba(0,0,0,0.45), 0 2px 26px rgba(0,0,0,0.5); }
.hero-sub {
  margin: 1.1rem 0 1.8rem; font-size: 1.1rem; max-width: 46ch; color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 1px 14px rgba(0,0,0,0.4);
}
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.cta-note { font-size: 0.85rem; margin-top: 0.9rem; max-width: 42ch; }
.hero-content .cta-note { color: rgba(255,255,255,0.88); text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
.cta-band .cta-note { margin-left: auto; margin-right: auto; }

/* hero page-variant (short, for inner pages) */
.hero.short { min-height: 48vh; }
.hero.short .hero-content { padding: 5rem 1.25rem 4rem; }

/* ---------- hero slideshow (index only: 3 slides, one per property) ---------- */
.hero-slide { opacity: 0; animation: hero-crossfade 18s ease-in-out infinite; }
.hero-slide:nth-of-type(1) { animation-delay: 0s; }
.hero-slide:nth-of-type(2) { animation-delay: 6s; }
.hero-slide:nth-of-type(3) { animation-delay: 12s; }
@keyframes hero-crossfade {
  0%   { opacity: 1; }
  28%  { opacity: 1; }
  33%  { opacity: 0; }
  94%  { opacity: 0; }
  100% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; }
  .hero-slide:first-of-type { opacity: 1; }
}

/* ---------- search card ---------- */
.search-dock { position: relative; z-index: 5; margin-top: -4.2rem; padding: 0 1.25rem; }
.search-card {
  max-width: 880px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card);
  box-shadow: 0 18px 50px rgba(60, 42, 10, 0.14);
  padding: 1.3rem 1.4rem 1.4rem;
}
.search-card .search-title {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 0.8rem;
}
.search-form { display: grid; grid-template-columns: 1fr 1fr 0.7fr auto; gap: 0.9rem; align-items: end; }
.search-form .field label {
  display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem;
}
.search-form .field { min-width: 0; }
.search-form .field input {
  width: 100%; min-width: 0; font-family: var(--font-body); font-size: 0.98rem; color: var(--ink);
  padding: 0.6rem 0.7rem; border: 1.5px solid var(--line); border-radius: var(--radius-card);
  background: #fff; box-sizing: border-box;
}
.search-form .field input:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.search-form .btn { padding: 0.72rem 1.6rem; }
@media (max-width: 760px) {
  .search-form { grid-template-columns: 1fr 1fr; }
  .search-form .btn { grid-column: 1 / -1; width: 100%; }
}

/* ---------- measure strip ---------- */
.measure-strip { border-bottom: 1px solid var(--line); padding: 2rem 0 2.2rem; }
.measure-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.measure-item .m-value {
  font-family: var(--font-heading); font-size: 1.7rem; font-weight: 600; color: var(--gold-deep);
}
.measure-item .m-value small { font-size: 0.85rem; letter-spacing: 0.06em; }
.measure-item .m-label { font-size: 0.9rem; margin-top: 0.15rem; }
@media (max-width: 760px) {
  .measure-strip .wrap { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
}

/* ---------- rating badge (gold star + Airbnb score, links out) ---------- */
.rating-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; color: var(--ink);
  background: var(--gold-soft); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.3rem 0.9rem 0.3rem 0.7rem;
  margin: 0.5rem 0 1rem;
}
.rating-badge:hover { text-decoration: none; background: #F0E1BE; }
.rating-star { color: var(--gold-deep); font-size: 1rem; line-height: 1; }
.rating-score { font-weight: 700; color: var(--ink); }
.rating-count, .rating-source { color: var(--body); font-weight: 500; }

/* ---------- villa feature splits ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; }
.split.media-right { grid-template-columns: 1fr 1.05fr; }
.split.media-right .split-media { order: 2; }
.split-media img { border-radius: var(--radius-img); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-media figcaption { font-size: 0.85rem; color: var(--body); margin-top: 0.5rem; }
@media (max-width: 860px) {
  .split, .split.media-right { grid-template-columns: 1fr; gap: 1.6rem; }
  .split.media-right .split-media { order: 0; }
}

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.2rem; padding: 0; list-style: none; }
.chips li {
  font-size: 0.86rem; font-weight: 500; color: var(--ink);
  background: var(--paper-soft); border: 1px solid var(--line);
  padding: 0.32rem 0.8rem; border-radius: 999px;
}
.band-soft .chips li, .band-tint .chips li { background: #fff; }

.price-line { margin: 0.4rem 0 1.4rem; font-size: 0.98rem; }
.price-line .amount { font-family: var(--font-heading); font-size: 1.55rem; font-weight: 600; color: var(--gold-deep); }
.price-line small { color: var(--body); }

.villa-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }

/* horizontal villa band (third property, different family) */
.villa-band {
  display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius-img); overflow: hidden; background: #fff;
}
.villa-band .vb-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.villa-band .vb-body { padding: 2.2rem 2.4rem; align-self: center; }
@media (max-width: 860px) {
  .villa-band { grid-template-columns: 1fr; }
  .villa-band .vb-media img { min-height: 220px; aspect-ratio: 16 / 10; }
  .villa-band .vb-body { padding: 1.5rem 1.3rem 1.8rem; }
}

/* ---------- location columns ---------- */
.loc-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; margin-top: 2.2rem; }
.loc-cols h4 { margin-bottom: 0.7rem; font-size: 1.02rem; }
.loc-cols ul { list-style: none; }
.loc-cols li { padding: 0.42rem 0; border-bottom: 1px solid var(--line); font-size: 0.94rem; display: flex; justify-content: space-between; gap: 1rem; }
.loc-cols li:last-child { border-bottom: none; }
.loc-cols li .place { color: var(--ink); font-weight: 500; }
.loc-cols li .dist { white-space: nowrap; color: var(--body); }
@media (max-width: 820px) { .loc-cols { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- quotes ---------- */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; margin-top: 2rem; }
.quote-card { border-left: 3px solid var(--gold); padding-left: 1.4rem; }
.quote-card blockquote { font-size: 1.12rem; color: var(--ink); line-height: 1.55; font-weight: 450; }
.quote-card cite { display: block; margin-top: 0.7rem; font-style: normal; font-size: 0.9rem; color: var(--body); }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 2rem; }
.gallery a, .gallery figure { border-radius: var(--radius-img); overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 0.35s ease; }
.gallery img:hover { transform: scale(1.03); }
.gallery .tall img { aspect-ratio: 3 / 4; }
.gallery .wide { grid-column: span 2; }
.gallery .wide img { aspect-ratio: 8 / 4.7; }
@media (max-width: 700px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .wide { grid-column: span 2; }
}

/* ---------- spec cards (villa pages) ---------- */
.spec-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.spec-card {
  background: var(--paper-soft); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.5rem 1.6rem;
  overflow: hidden;
}
.spec-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; margin-bottom: 0.6rem; }
.spec-card-media { margin: -1.5rem -1.6rem 1.1rem; }
.spec-card-media img { width: 100%; height: 180px; object-fit: cover; display: block; }
.spec-card-loc { font-size: 0.85rem; color: var(--body); margin: -0.3rem 0 0.9rem; }
.spec-card ul { list-style: none; }
.spec-card li { padding: 0.28rem 0; font-size: 0.95rem; padding-left: 1.1rem; position: relative; }
.spec-card li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
@media (max-width: 700px) { .spec-cards { grid-template-columns: 1fr; } }

/* good-to-know row */
.gtk { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 2rem; }
.gtk div { border-top: 2px solid var(--gold); padding-top: 0.7rem; }
.gtk .k { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--body); }
.gtk .v { color: var(--ink); font-weight: 500; margin-top: 0.2rem; font-size: 0.97rem; }
@media (max-width: 760px) { .gtk { grid-template-columns: 1fr 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 1.6rem; max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 0; font-weight: 600; color: var(--ink); font-size: 1.0rem;
}
.faq-item summary::after { content: "+"; color: var(--gold-deep); font-size: 1.2rem; line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 0 1.1rem; }

/* ---------- breaker ---------- */
.breaker { padding: 0; }
.breaker img { width: 100%; max-height: 62vh; object-fit: cover; }
.breaker-caption { text-align: center; font-size: 0.88rem; padding: 0.7rem 1rem 0; color: var(--body); }

/* ---------- book direct panel ---------- */
.book-direct-panel {
  background: var(--gold-soft); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: 1.7rem 1.9rem;
  margin: 1.8rem 0 0; max-width: 56ch;
}
.book-direct-panel h3 { margin-bottom: 0.5rem; }
.book-direct-detail { margin-top: 0.9rem; }
.book-direct-detail summary {
  cursor: pointer; list-style: none; font-weight: 600; color: var(--gold-deep); font-size: 0.92rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.book-direct-detail summary::-webkit-details-marker { display: none; }
.book-direct-detail summary::after { content: "+"; font-size: 1.05rem; }
.book-direct-detail[open] summary::after { content: "\2212"; }
.book-direct-detail p { margin-top: 0.7rem; font-size: 0.92rem; }
.book-direct-actions { margin-top: 1.2rem; }
.book-direct-actions .btn { padding: 0.68rem 1.4rem; font-size: 0.92rem; }
.also-listed { margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid rgba(150, 98, 28, 0.2); font-size: 0.85rem; }
.also-listed-label { font-weight: 600; color: var(--ink); margin-right: 0.4rem; }
.also-listed-names { color: var(--body); letter-spacing: 0.02em; }

/* ---------- inquiry / forms ---------- */
.inquiry-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; margin-top: 2.4rem; }
@media (max-width: 860px) { .inquiry-grid { grid-template-columns: 1fr; gap: 2rem; } }

.methods { list-style: none; margin-top: 1.4rem; }
.methods li { display: flex; gap: 0.9rem; padding: 0.75rem 0; align-items: flex-start; }
.methods .m-icon {
  flex: 0 0 38px; height: 38px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.methods .m-value { color: var(--ink); font-weight: 500; }
.methods .m-hint { font-size: 0.85rem; }

.inquiry { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card); padding: 1.7rem 1.7rem 1.9rem; }
.band-soft .inquiry, .band-tint .inquiry { box-shadow: 0 10px 34px rgba(60,42,10,0.07); }
.inquiry .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .inquiry .form-row { grid-template-columns: 1fr; } }
.inquiry label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--ink); margin: 0.9rem 0 0.3rem; }
.inquiry input, .inquiry select, .inquiry textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.97rem; color: var(--ink);
  padding: 0.62rem 0.7rem; border: 1.5px solid var(--line); border-radius: var(--radius-card); background: #fff;
}
.inquiry input:focus, .inquiry select:focus, .inquiry textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold);
}
.inquiry textarea { min-height: 110px; resize: vertical; }
.inquiry .btn { margin-top: 1.3rem; width: 100%; }
.form-note { font-size: 0.85rem; margin-top: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 26ch; margin-left: auto; margin-right: auto; }
.cta-band p { margin: 0.8rem auto 1.6rem; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--night); color: rgba(247,241,230,0.78); padding: 3.4rem 0 2rem; font-size: 0.93rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.14em; color: var(--night-text); margin-bottom: 0.7rem; }
.site-footer h5 { color: var(--night-text); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.site-footer ul { list-style: none; }
.site-footer li { padding: 0.22rem 0; }
.site-footer a { color: rgba(247,241,230,0.78); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(247,241,230,0.15);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- video band ---------- */
.video-band {
  position: relative; padding: 0; min-height: 62vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.video-band video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.video-band .hero-scrim {
  background: linear-gradient(to bottom, rgba(20,14,5,0.35), rgba(20,14,5,0.45));
}
.vband-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 5rem 1.25rem; }
.vband-content h2 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.4); margin-bottom: 0.6rem; }
.vband-content p { color: rgba(255,255,255,0.92); max-width: 52ch; margin: 0 auto; }

/* ---------- map (Leaflet, vendored) ---------- */
.map-embed {
  margin-top: 2.4rem; border: 1px solid var(--line); border-radius: var(--radius-img);
  overflow: hidden; aspect-ratio: 16 / 7; background: var(--paper-soft);
}
.map-note { font-size: 0.85rem; margin-top: 0.7rem; }
@media (max-width: 700px) { .map-embed { aspect-ratio: 4 / 3; } }
.map-embed .leaflet-tile-pane { filter: grayscale(0.4) saturate(0.72) sepia(0.06) brightness(1.03); }
.map-pin svg { display: block; filter: drop-shadow(0 3px 5px rgba(33,26,15,0.35)); }
.map-embed .leaflet-popup-content-wrapper { border-radius: 8px; font-family: var(--font-body); }
.map-embed .leaflet-popup-content { margin: 0.65rem 0.95rem; font-size: 0.95rem; font-weight: 600; }
.map-embed .leaflet-container a { color: var(--gold-deep); }

/* ---------- lightbox ---------- */
.lb-zoomable { cursor: zoom-in; }
.lb-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(22, 16, 6, 0.93);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
  padding: 2.5rem 1rem 1.5rem;
}
.lb-overlay.open { opacity: 1; pointer-events: auto; }
.lb-overlay img {
  max-width: min(94vw, 1400px); max-height: 82vh;
  border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lb-caption { color: rgba(247,241,230,0.85); font-size: 0.92rem; margin-top: 0.9rem; text-align: center; max-width: 70ch; }
.lb-btn {
  position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  color: #F7F1E6; width: 46px; height: 46px; border-radius: 50%;
  font-size: 1.35rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lb-btn:hover { background: rgba(194, 129, 43, 0.55); }
.lb-close { top: 1.1rem; right: 1.1rem; }
.lb-prev { left: 1.1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) {
  .lb-prev { left: 0.4rem; } .lb-next { right: 0.4rem; }
  .lb-overlay img { max-height: 72vh; }
}
@media (prefers-reduced-motion: reduce) { .lb-overlay { transition: none; } }

/* ---------- floating WhatsApp widget ---------- */
.wa-float { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 70; }
.wa-float-link {
  display: flex; align-items: center; gap: 0.65rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  box-shadow: 0 10px 30px rgba(33, 26, 15, 0.22);
  color: var(--ink); text-decoration: none;
  animation: wa-in 0.5s ease 0.3s both;
}
.wa-float-link:hover { text-decoration: none; box-shadow: 0 14px 36px rgba(33, 26, 15, 0.3); }
.wa-float-icon {
  flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-deep); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.wa-float-icon svg { width: 22px; height: 22px; }
.wa-float-text { display: flex; flex-direction: column; line-height: 1.25; }
.wa-float-title { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.wa-float-sub { font-size: 0.75rem; color: var(--body); }
@keyframes wa-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .wa-float-link { animation: none; } }
@media (max-width: 560px) {
  .wa-float { right: 0.8rem; bottom: 0.8rem; }
  .wa-float-text { display: none; }
  .wa-float-link { padding: 0.55rem; }
}

/* ---------- utilities ---------- */
.hide { display: none !important; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
