/* ---------- Base / Tokens ---------- */
:root {
  --bg: #fbf7f1;
  --bg-alt: #f3ebdd;
  --ink: #1f1a14;
  --ink-soft: #4a3f30;
  --muted: #877a64;
  --line: #e6dcc8;
  --gold: #b88746;
  --gold-dark: #976a2d;
  --navy: #1a2a4f;
  --navy-deep: #121f3d;
  --accent: #1a2a4f;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px rgba(40, 30, 15, 0.08);
  --shadow-md: 0 12px 32px rgba(40, 30, 15, 0.14);
  --shadow-lg: 0 30px 60px rgba(40, 30, 15, 0.22);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1200px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html, body { overflow-x: hidden; }

/* Anchor jumps land below the fixed header */
section[id] { scroll-margin-top: 80px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0 0 0.5em;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.7em;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
}
.btn-small { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(251, 247, 241, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.site-header.scrolled .brand { color: var(--ink); }
.brand-logo {
  display: block;
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--white);
  padding: 2px;
  flex-shrink: 0;
  transition: height 0.3s ease, width 0.3s ease;
}
.site-header.scrolled .brand-logo { height: 40px; width: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; }
.brand-text em {
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}
.site-header.scrolled .brand-text em { color: var(--muted); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }
.site-header.scrolled .nav a { color: var(--ink); }
.site-header.scrolled .nav a:hover { color: var(--gold-dark); }
.nav .btn { color: var(--white); }
.nav .btn:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,0.55) 0%, rgba(20,15,10,0.35) 40%, rgba(20,15,10,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 760px;
}
.hero-content .eyebrow { color: #f0d49a; }
.hero-content h1 { color: var(--white); }
.hero-content .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 620px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-meta {
  list-style: none;
  padding: 28px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 720px;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.hero-meta li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
}
.hero-meta .meta-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  color: #f0d49a;
  margin-top: 2px;
}
.hero-meta li span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.hero-meta li strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0;
}

/* ---------- About ---------- */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-highlights {
  display: grid;
  gap: 22px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.highlight h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.highlight p { margin: 0; font-size: 0.95rem; }

/* ---------- Rooms ---------- */
.rooms { background: var(--bg-alt); }
.room-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 80px;
}
.room-photo img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.room-info { padding: 48px 48px 48px 8px; }
.tag {
  display: inline-block;
  background: rgba(184,135,70,0.12);
  color: var(--gold-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.room-specs {
  list-style: none;
  padding: 0; margin: 24px 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 24px; padding-bottom: 24px;
}
.room-specs li {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: var(--ink);
}
.room-specs li strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.amenities-title {
  text-align: center;
  margin-bottom: 36px;
}
.amenities-grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.amenities-grid li {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.amenities-grid li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.amen-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(184, 135, 70, 0.10);
  color: var(--gold-dark);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.amen-icon svg { width: 26px; height: 26px; }
.amenities-grid li:hover .amen-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.06);
}
.amenities-grid h4 { margin: 0 0 6px; }
.amenities-grid p { margin: 0; font-size: 0.9rem; color: var(--muted); }
.amenities-head {
  text-align: center;
  margin-bottom: 40px;
}
.amenities-head .amenities-title {
  text-align: center;
  margin: 6px 0 0;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  box-shadow: var(--shadow-sm);
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: 3 / 4; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,10,5,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.lightbox button:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Contact ---------- */
.contact { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 22px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.ci-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-top: 4px;
}
.ci-value { color: var(--ink); font-size: 1rem; line-height: 1.5; }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 24px; }
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.contact-form textarea { resize: vertical; }
.form-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(184,135,70,0.12);
  color: var(--gold-dark);
  font-size: 0.9rem;
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--accent);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 24px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-logo {
  height: 56px;
  width: 56px;
  object-fit: cover;
  background: var(--white);
  padding: 4px;
  border-radius: 8px;
  display: block;
  margin-bottom: 14px;
}
.footer-tag { margin-top: 4px; font-size: 0.95rem; max-width: 320px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.78); }
.footer-links a:hover { color: var(--gold); }
.footer-base { padding-top: 22px; text-align: center; }
.footer-base small { color: rgba(255,255,255,0.5); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section { padding: 72px 0; }

  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    padding: 12px 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a {
    color: var(--ink) !important;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .nav a:last-child { border-bottom: none; }
  .nav .btn { width: 100%; margin-top: 6px; }

  .about-grid,
  .room-feature,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo img { height: 380px; }
  .room-info { padding: 32px; }
  .room-photo img { min-height: 320px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }

  /* Tighter typography */
  h1 { letter-spacing: -0.02em; line-height: 1.15; }
  h2 { letter-spacing: -0.01em; }

  /* Header / brand more compact */
  .site-header { padding: 14px 0; }
  .site-header.scrolled { padding: 10px 0; }
  .brand-logo { height: 40px; width: 40px; }
  .site-header.scrolled .brand-logo { height: 36px; width: 36px; }
  .brand-text strong { font-size: 1.05rem; }
  .brand-text em { font-size: 0.65rem; }

  /* Nav drawer */
  .nav { padding: 8px 18px 16px; }
  .nav a { padding: 16px 2px; font-size: 1rem; }

  /* Hero */
  .hero { min-height: 88vh; }
  .hero-content { padding-top: 82px; padding-bottom: 40px; }
  .hero-content .lead { font-size: 1rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-meta li { align-items: center; gap: 12px; }
  .hero-meta li strong { font-size: 1.3rem; }
  .hero-meta .meta-icon { width: 26px; height: 26px; }

  /* Room feature */
  .room-info { padding: 28px 22px; }
  .room-specs { grid-template-columns: 1fr; }
  .room-photo img { min-height: 240px; }

  /* Contact */
  .contact-form { padding: 22px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .map-wrap { height: 240px; margin-top: 28px; }

  /* Footer */
  .site-footer { padding: 48px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Welcome quote */
  .welcome-quote { padding: 56px 0; }

  /* About */
  .about-photo img { height: 320px; }
  .about-photo-badge { bottom: 14px; left: 14px; padding: 8px 14px; }
  .about-photo-badge strong { font-size: 1rem; }
  .about-photo-badge span { font-size: 0.62rem; }

  /* Amenities */
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .amenities-grid li { padding: 22px 16px; }
  .amen-icon { width: 48px; height: 48px; margin-bottom: 12px; }
  .amen-icon svg { width: 22px; height: 22px; }
  .amenities-grid h4 { font-size: 0.95rem; }
  .amenities-grid p { font-size: 0.82rem; }

  /* Lightbox tighter for small screens */
  .lightbox { padding: 16px; }
  .lightbox img { max-width: 94vw; max-height: 80vh; }
  .lightbox button { width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .nav-wrap { gap: 12px; }
  .brand-text { display: none; }
  h1 { font-size: 1.85rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .stat strong { font-size: 1.6rem; }
  .room-info { padding: 24px 18px; }
  .contact-form { padding: 18px; }
  .quote-mark { font-size: 4.2rem; }
}

/* ============================================================
   Polish layer — flourishes, animations, new components
   ============================================================ */

/* Decorative flourish (echoes the logo's gold motif) */
.flourish {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  margin: 14px auto 22px;
  width: 100%;
  max-width: 180px;
}
.flourish::before,
.flourish::after {
  content: '';
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex: 1;
}
.flourish .diamond {
  width: 7px; height: 7px;
  background: currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.flourish-light { color: #d4a574; }
.flourish-left {
  margin: 14px 0 22px;
  justify-content: flex-start;
  max-width: 160px;
}
.flourish-left::after { display: none; }
.flourish-left::before { flex: 0 0 60px; }

/* Section lead text under section heads */
.section-lead {
  max-width: 620px;
  margin: 4px auto 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(.22,.61,.36,1), transform 0.85s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Button arrow micro-interaction */
.btn-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
  font-size: 1.05em;
  line-height: 1;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Hero scroll cue (anchored bottom-left so it doesn't collide with the centered meta row) */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 2;
  transition: color 0.25s ease, transform 0.25s ease;
}
.hero-scroll:hover { color: var(--white); transform: translateY(-3px); }
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0));
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ---------- Stats Band ---------- */
.stats-band {
  background: var(--accent);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(184,135,70,0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(184,135,70,0.14) 0%, transparent 45%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.stat {
  text-align: center;
  padding: 0 12px;
  border-left: 1px solid rgba(255,255,255,0.14);
}
.stat:first-child { border-left: none; }
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e7c688;
}

/* About photo badge */
.about-photo { position: relative; }
.about-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.about-photo-badge strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
}
.about-photo-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

/* ---------- Welcome quote ---------- */
.welcome-quote {
  background:
    linear-gradient(135deg, rgba(184,135,70,0.04) 0%, rgba(26,42,79,0.04) 100%),
    var(--bg);
  padding: 100px 0;
  position: relative;
}
.welcome-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.45;
  margin-bottom: 0;
}
.welcome-inner blockquote {
  margin: 0;
  padding: 0;
}
.welcome-inner blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 28px;
}
.welcome-inner blockquote footer {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

/* ---------- Gallery filter ---------- */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 36px;
}
.gf-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
.gf-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.gf-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.gallery-item.is-hidden { display: none; }

/* ---------- Map ---------- */
.map-wrap {
  margin-top: 64px;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

/* ---------- WhatsApp floating button ---------- */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.wa-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.2);
  color: var(--white);
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.45;
  z-index: -1;
  animation: waPulse 2.2s ease-in-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.45; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Focus states (accessibility polish) ---------- */
a:focus-visible,
button:focus-visible,
.gf-btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Responsive overrides for new components ---------- */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat:nth-child(3) { border-left: none; }
  .welcome-quote { padding: 72px 0; }
  .map-wrap { height: 300px; margin-top: 40px; }
  .about-photo-badge {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
  }
}

@media (max-width: 600px) {
  .hero-scroll { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12); }
  .stat:first-child { border-top: none; }
  .quote-mark { font-size: 5rem; }

  /* Gallery: 2-column grid on phones for less endless scrolling */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item.tall { grid-row: span 2; }

  /* Horizontal-scroll filter so all tabs are reachable */
  .gallery-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    margin: 0 -18px 28px;
    padding: 0 18px 6px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .gallery-filter::-webkit-scrollbar { display: none; }
  .gf-btn {
    flex-shrink: 0;
    padding: 9px 16px;
    font-size: 0.82rem;
    scroll-snap-align: start;
  }

  .wa-fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-fab svg { width: 26px; height: 26px; }

  /* Section heads pull lead tighter to viewport */
  .section-head { margin-bottom: 36px; }
  .section-lead { font-size: 0.95rem; }
}
