/* =========================================================
   Sedona 6 — Hotel Group Website
   Shared stylesheet for all pages
   ========================================================= */

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

:root {
  /* ----- BRAND PALETTE (3 colors) ----- */
  --sand:      #f2e7d2;   /* primary warm tone — soft backgrounds & chips */
  --ember:     #b75043;   /* primary accent — buttons, links, ember glows */
  --gold-pale: #d9b979;   /* secondary accent — italic emphasis, gold edges */

  /* ----- DERIVED TONES (tuned to harmonize with the brand 3) ----- */
  --ink:         #1f1611;             /* primary text — warm near-black */
  --warm-white:  #faf3e3;             /* lighter than sand, page background */
  --cream:       #f7eedb;             /* between warm-white and sand */
  --sand-deep:   #e7d6b5;             /* darker sand for chips/hover */
  --ember-dark:  #983e34;             /* ember hover state */
  --ember-light: #cc6555;             /* ember soft */
  --gold:        #b08a37;             /* gold deep — for accent text on light bg */
  --sage:        #9a8a5a;             /* muted olive-gold (replaces old sage) */
  --sage-dark:   #6e6240;             /* darker olive */
  --muted:       #7a6c5a;             /* secondary text */
  --line:        rgba(31, 22, 17, 0.10);
  --line-strong: rgba(31, 22, 17, 0.18);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(31,22,17,0.06);
  --shadow-md: 0 8px 30px rgba(31,22,17,0.10);
  --shadow-lg: 0 20px 60px rgba(31,22,17,0.16);
}

html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 245, 237, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(250, 245, 237, 0.98);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.brand-mark {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-mark em { font-style: italic; color: var(--ember); font-weight: 400; }
.brand-logo {
  display: block;
  height: 42px;
  width: auto;
  object-fit: contain;
}
.footer-logo {
  display: block;
  height: 110px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.primary-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.25s;
}
.primary-nav a:hover { color: var(--ember); }
.primary-nav a.current { color: var(--ember); }
.primary-nav a.current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ember);
}
.header-cta {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ember);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--ember-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  width: 44px; height: 44px;
  border-radius: 2px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 18px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(250, 245, 237, 0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding: 6rem 2rem 3rem;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ink);
}
.mobile-menu a:hover { color: var(--ember); }
.mobile-menu .mm-cta {
  background: var(--ember);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: 2px;
  margin-top: 1rem;
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--ember);
}
.eyebrow.center { justify-content: center; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--ember); }
.section-lead {
  font-size: 1.02rem;
  color: var(--muted);
  font-weight: 400;
  max-width: 620px;
  line-height: 1.8;
}
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  border: 1px solid transparent;
  font-family: inherit;
}
.btn-primary { background: var(--ember); color: #fff; }
.btn-primary:hover { background: var(--ember-dark); transform: translateY(-1px); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--warm-white); }
.btn-ghost { color: var(--ember); padding: 0.95rem 0; border-bottom: 1px solid var(--ember); border-radius: 0; }
.btn-ghost:hover { color: var(--ember-dark); border-color: var(--ember-dark); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 9rem 0 5rem;
}

/* Full-bleed video hero (homepage) */
.hero-video {
  min-height: 100vh;
  background: var(--ink);
  padding: 9rem 0 6rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #18120e;
}
.hero-media video,
.hero-media img.hero-poster {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  transform: scale(1.05);
  animation: heroKenBurns 12s ease-in-out infinite alternate;
}
.hero-slideshow .hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
@keyframes heroKenBurns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(31,22,17,0.62) 0%, rgba(31,22,17,0.38) 35%, rgba(31,22,17,0.62) 75%, rgba(31,22,17,0.95) 100%),
    radial-gradient(ellipse at 25% 60%, rgba(184,80,66,0.22), transparent 60%);
  pointer-events: none;
}
.hero-video .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}
.hero-video .hero-headline { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,0.4); }
.hero-video .hero-headline em { color: var(--gold-pale); font-style: italic; }
.hero-video .hero-sub { color: rgba(255,255,255,0.92); text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.hero-video .eyebrow {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65), 0 0 22px rgba(0, 0, 0, 0.35);
}
.hero-video .eyebrow::before {
  background: var(--gold-pale);
  width: 2.4rem;
  height: 1.5px;
}
.hero-video .btn-outline { color: #fff; border-color: rgba(255,255,255,0.85); }
.hero-video .btn-outline:hover { background: #fff; color: var(--ink); }

.hero-trust {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.hero-trust span { display: flex; align-items: center; gap: 0.7rem; }
.hero-trust span::before {
  content: '◆';
  color: var(--gold-pale);
  font-size: 0.7rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  pointer-events: none;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: scrollHint 2.2s ease infinite;
  transform-origin: top;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Split-hero variant — text on the left, attractions collage on the right */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 55%, var(--sand) 100%);
  padding: 8rem 5rem 5rem;
  min-height: 100vh;
}
.hero-split::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(184,80,66,0.10), transparent 65%);
  pointer-events: none;
}
.hero-split .hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-split .eyebrow { color: var(--ember); }
.hero-split .eyebrow::before { background: var(--ember); }
.hero-split .hero-headline {
  color: var(--ink);
  text-shadow: none;
}
.hero-split .hero-headline em { color: var(--ember); }
.hero-split .hero-sub {
  color: var(--muted);
  text-shadow: none;
}
.hero-split .btn-outline { color: var(--ink); border-color: var(--ink); }
.hero-split .btn-outline:hover { background: var(--ink); color: var(--warm-white); }

.hero-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  height: 70vh;
  max-height: 680px;
  min-height: 480px;
}
.hero-collage figure {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s, box-shadow 0.4s;
}
.hero-collage figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.hero-collage img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s;
}
.hero-collage figure:hover img { transform: scale(1.04); }
.hero-collage figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.1rem 0.9rem;
  background: linear-gradient(to top, rgba(31,22,17,0.85), transparent);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-collage figcaption span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-pale);
  margin-bottom: 0.25rem;
}
.hero-collage .feature { grid-row: 1 / 3; }
.hero-collage .feature figcaption { font-size: 1.35rem; padding: 1.5rem 1.3rem 1.1rem; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2a1f17;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(31,22,17,0.40) 0%, rgba(31,22,17,0.30) 50%, rgba(250,245,237,0.85) 100%),
    radial-gradient(ellipse at 25% 60%, rgba(184,80,66,0.25), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.2rem;
  max-width: 800px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-headline em { font-style: italic; color: var(--gold-pale); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 1.8rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,0.8); }
.hero .btn-outline:hover { background: #fff; color: var(--ink); }
.hero .eyebrow { color: var(--gold-pale); }
.hero .eyebrow::before { background: var(--gold-pale); }

/* page-hero (smaller hero used on interior pages) */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2a1f17;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero-bg img,
.page-hero-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(31,22,17,0.55), rgba(31,22,17,0.4) 60%, rgba(250,245,237,0.9));
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-pale); }
.page-hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}
.page-hero .eyebrow { color: var(--gold-pale); justify-content: center; }
.page-hero .eyebrow::before { background: var(--gold-pale); }

/* ---------- LIGHT TRUST STRIP (for interior pages) ---------- */
.trust-strip-light {
  background: var(--cream);
  padding: 2.5rem 2.5rem;
  border-top: 1px solid rgba(31,22,17,0.06);
  border-bottom: 1px solid rgba(31,22,17,0.06);
  position: relative;
  overflow: hidden;
}
.trust-strip-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(184,80,66,0.12) 1px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
  opacity: 0.55;
}
.trust-strip-light .trust-strip-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.trust-strip-light .trust-stat strong {
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ember);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trust-strip-light .trust-stat span {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- PROPERTIES RAIL (small horizontal anchor strip) ---------- */
.properties-rail {
  background: var(--warm-white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.properties-rail-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  gap: 0.5rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.properties-rail-label {
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  padding-right: 0.5rem;
}
.properties-rail a {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.properties-rail a:hover { color: var(--ember); border-bottom-color: var(--ember); }

/* ---------- TRUST STRIP (numbers under the hero) ---------- */
.trust-strip {
  background: var(--ink);
  padding: 3rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.trust-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(217,185,122,0.10) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.trust-strip-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-stat strong {
  font-family: var(--sans);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold-pale);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.trust-stat span {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ---------- GALLERY RAIL (real photos from each property) ---------- */
.gallery-strip {
  background: var(--warm-white);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.gallery-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='220' viewBox='0 0 360 220'><g fill='none' stroke='%23b75043' stroke-width='1' opacity='0.5'><path d='M0 30 Q 90 0 180 30 T 360 30'/><path d='M0 60 Q 90 30 180 60 T 360 60'/><path d='M0 95 Q 90 65 180 95 T 360 95'/><path d='M0 140 Q 90 110 180 140 T 360 140'/><path d='M0 185 Q 90 155 180 185 T 360 185'/></g></svg>");
  background-size: 360px 220px;
  opacity: 0.10;
  pointer-events: none;
}
.gallery-strip .gallery-head {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 2.5rem;
  padding: 0 2.5rem;
  text-align: center;
  z-index: 2;
}
.gallery-rail {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 2.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.gallery-rail::-webkit-scrollbar { display: none; }

/* Carousel wrapper with nav buttons + dots */
.gallery-carousel { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.25s, transform 0.25s, opacity 0.25s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-nav:hover { background: var(--gold); color: #fff; }
.gallery-nav:disabled { opacity: 0.35; cursor: default; }
.gallery-prev { left: 0.75rem; }
.gallery-next { right: 0.75rem; }
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0 2.5rem;
}
.gallery-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s, width 0.25s;
}
.gallery-dots button.active { background: var(--clay); width: 22px; border-radius: 4px; }
@media (max-width: 720px) {
  .gallery-nav { width: 42px; height: 42px; font-size: 1.3rem; }
  .gallery-prev { left: 0.25rem; }
  .gallery-next { right: 0.25rem; }
}
/* Mosaic grid layout — magazine-style collage */
.gallery-mosaic {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
  grid-auto-flow: dense;
}
.gallery-item.m-tall-left   { grid-column: span 3; grid-row: span 2; }
.gallery-item.m-top-left    { grid-column: span 3; grid-row: span 1; }
.gallery-item.m-top-right   { grid-column: span 3; grid-row: span 1; }
.gallery-item.m-bottom-wide { grid-column: span 6; grid-row: span 1; }
.gallery-item.m-tall-right  { grid-column: span 3; grid-row: span 2; }
@media (max-width: 900px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; padding: 0 1.25rem; }
  .gallery-item.m-tall-left,
  .gallery-item.m-top-left,
  .gallery-item.m-top-right,
  .gallery-item.m-bottom-wide,
  .gallery-item.m-tall-right { grid-column: span 2; grid-row: span 1; }
}
.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s, box-shadow 0.4s;
  background: #1a120c;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.3rem 1.1rem;
  background: linear-gradient(to top, rgba(31,22,17,0.92), transparent);
  color: #fff;
}
.gallery-item figcaption strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}
.gallery-item figcaption span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

/* ---------- SECTION BASE ---------- */
section { padding: 6rem 2.5rem; position: relative; }
.container { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; }
.section-head { max-width: 720px; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---------- SECTION BACKGROUND PATTERNS ----------
   Layered, subtle backgrounds that give each section its own texture
   without competing with content. All patterns use CSS / SVG data URIs
   so no extra files are required.
*/

/* Reusable: a soft topographic line pattern in red rock tones */
.bg-topo {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='220' viewBox='0 0 360 220'><g fill='none' stroke='%23b75043' stroke-width='1' opacity='0.5'><path d='M0 30 Q 90 0 180 30 T 360 30'/><path d='M0 60 Q 90 30 180 60 T 360 60'/><path d='M0 95 Q 90 65 180 95 T 360 95'/><path d='M0 140 Q 90 110 180 140 T 360 140'/><path d='M0 185 Q 90 155 180 185 T 360 185'/></g></svg>");
  background-repeat: repeat;
  background-size: 360px 220px;
}

/* Intro section — warm sun-glow + faint topo lines */
.section-intro {
  overflow: hidden;
  padding: 3.5rem 2.5rem;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(184,80,66,0.10), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(176, 138, 55,0.07), transparent 55%),
    var(--warm-white);
}
.section-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='220' viewBox='0 0 360 220'><g fill='none' stroke='%23b75043' stroke-width='1' opacity='0.5'><path d='M0 30 Q 90 0 180 30 T 360 30'/><path d='M0 60 Q 90 30 180 60 T 360 60'/><path d='M0 95 Q 90 65 180 95 T 360 95'/><path d='M0 140 Q 90 110 180 140 T 360 140'/><path d='M0 185 Q 90 155 180 185 T 360 185'/></g></svg>");
  background-size: 360px 220px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* ---------- INTRO / TWO-COL ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.two-col-image img { width: 100%; height: 100%; object-fit: cover; }
.two-col p { color: var(--muted); margin-bottom: 1rem; line-height: 1.85; }
.two-col p:last-of-type { margin-bottom: 2rem; }

/* Neil quote & signature */
.neil-quote { font-style: italic; }
.neil-signature {
  display: block;
  width: 150px;
  height: auto;
  margin: 0.8rem 0 1.2rem;
  opacity: 0.95;
  /* Force signature to render white on dark backgrounds */
  filter: brightness(0) invert(1);
}
.neil-signature-text {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--gold-pale);
  margin: 1rem 0 1.5rem;
}

/* ---------- HOTEL CARDS ---------- */
.section-hotels {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(184,80,66,0.07), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(154, 138, 90,0.08), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.section-hotels::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='220' viewBox='0 0 360 220'><g fill='none' stroke='%23b75043' stroke-width='1' opacity='0.5'><path d='M0 30 Q 90 0 180 30 T 360 30'/><path d='M0 60 Q 90 30 180 60 T 360 60'/><path d='M0 95 Q 90 65 180 95 T 360 95'/><path d='M0 140 Q 90 110 180 140 T 360 140'/><path d='M0 185 Q 90 155 180 185 T 360 185'/></g></svg>");
  background-size: 360px 220px;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 2rem;
}
.hotel-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hotel-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.hotel-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.hotel-card:hover .hotel-card-image img { transform: scale(1.04); }
.hotel-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--ember);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
}
.hotel-card-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.hotel-card-body h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.hotel-best {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.9rem;
}
.hotel-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.hotel-highlights {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.hotel-highlights li {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  background: var(--sand);
  color: var(--ink);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.hotel-card-actions {
  margin-top: auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.hotel-card-actions .btn-ghost { padding: 0.4rem 0; font-size: 0.72rem; }

/* expanded hotel cards on /hotels page */
.hotel-detail {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2rem;
}
.hotel-detail:nth-child(even) .hotel-detail-image { order: 2; }
.hotel-detail-image { aspect-ratio: 4/3; overflow: hidden; }
.hotel-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.hotel-detail-body { padding: 2.8rem; display: flex; flex-direction: column; justify-content: center; }
.hotel-detail-body h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.hotel-detail-body p { color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem; }
.hotel-detail-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
}
.hotel-detail-meta span::before { content: '◆'; margin-right: 0.5rem; color: var(--gold); }

/* ---------- WHY DIRECT / DARK SECTIONS ---------- */
.section-why,
.section-dark {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184,80,66,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(176, 138, 55,0.10), transparent 60%),
    var(--ink);
  color: var(--warm-white);
  overflow: hidden;
}
.section-why::before,
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(217,185,122,0.18) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.section-why > *,
.section-dark > * { position: relative; z-index: 1; }
.section-why .section-title,
.section-dark .section-title { color: var(--warm-white); }
.section-why .section-lead,
.section-dark .section-lead { color: rgba(255,255,255,0.78); }
.section-why .eyebrow,
.section-dark .eyebrow { color: var(--gold-pale); }
.section-why .eyebrow::before,
.section-dark .eyebrow::before { background: var(--gold-pale); }
.section-dark p { color: rgba(255,255,255,0.82); }
.section-dark a.btn-ghost { color: var(--warm-white); border-color: rgba(255,255,255,0.4); }
.section-dark a.btn-ghost:hover { background: rgba(255,255,255,0.08); }
/* When .section-intro is also .section-dark, keep the dark background */
.section-intro.section-dark {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184,80,66,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(176, 138, 55,0.10), transparent 60%),
    var(--ink);
}
.section-intro.section-dark::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(217,185,122,0.18) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 1;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.why-item h4 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--gold-pale);
}
.why-item p { color: rgba(255,255,255,0.78); font-size: 0.95rem; line-height: 1.75; }
.why-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(176, 138, 55,0.15);
  border: 1px solid rgba(217,185,122,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

/* ---------- ATTRACTIONS ---------- */
.section-attractions {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(176, 138, 55,0.10), transparent 55%),
    radial-gradient(ellipse at 0% 80%, rgba(184,80,66,0.07), transparent 60%),
    var(--warm-white);
  overflow: hidden;
}
.section-attractions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='220' viewBox='0 0 360 220'><g fill='none' stroke='%23b08a37' stroke-width='1' opacity='0.55'><path d='M0 30 Q 90 0 180 30 T 360 30'/><path d='M0 60 Q 90 30 180 60 T 360 60'/><path d='M0 95 Q 90 65 180 95 T 360 95'/><path d='M0 140 Q 90 110 180 140 T 360 140'/><path d='M0 185 Q 90 155 180 185 T 360 185'/></g></svg>");
  background-size: 360px 220px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.attraction-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.attraction-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.attraction-card-image { aspect-ratio: 16/10; overflow: hidden; }
.attraction-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.attraction-card:hover .attraction-card-image img { transform: scale(1.06); }
.attraction-card-body { padding: 1.5rem; }
.attraction-card-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.attraction-meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.attraction-card-body p { color: var(--muted); font-size: 0.94rem; line-height: 1.7; }

/* ---------- TESTIMONIALS ---------- */
.section-testimonials {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184,80,66,0.08), transparent 50%),
    var(--sand);
  overflow: hidden;
}
.section-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(31,22,17,0.10) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: #fff;
  padding: 2.2rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 0.5rem; left: 1.2rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--ember);
  opacity: 0.25;
  line-height: 1;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.4rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial-author strong { color: var(--ember); font-weight: 500; }

/* ---------- FAQ ---------- */
.section-faq {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184,80,66,0.08), transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(154, 138, 90,0.07), transparent 55%),
    var(--warm-white);
  overflow: hidden;
}
.section-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='220' viewBox='0 0 360 220'><g fill='none' stroke='%23b75043' stroke-width='1' opacity='0.4'><path d='M0 30 Q 90 0 180 30 T 360 30'/><path d='M0 60 Q 90 30 180 60 T 360 60'/><path d='M0 95 Q 90 65 180 95 T 360 95'/><path d='M0 140 Q 90 110 180 140 T 360 140'/><path d='M0 185 Q 90 155 180 185 T 360 185'/></g></svg>");
  background-size: 360px 220px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.faq-list {
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--ember); }
.faq-question .faq-toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
  transition: transform 0.3s;
}
.faq-question .faq-toggle::before,
.faq-question .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ember);
  border-radius: 1px;
}
.faq-question .faq-toggle::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-question .faq-toggle::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); transition: transform 0.3s; }
.faq-item.open .faq-toggle::after { transform: translateX(-50%) scaleY(0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 2.5rem;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-band h2 em { font-style: italic; color: var(--gold-pale); }
.cta-band p {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}
.cta-band .btn {
  background: #fff;
  color: var(--ember);
}
.cta-band .btn:hover { background: var(--ink); color: #fff; }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--warm-white);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.85rem 1rem;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s, background 0.25s;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ember);
  background: #fff;
}
.contact-info { padding: 1rem 0; }
.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.contact-info p { color: var(--muted); margin-bottom: 1.8rem; line-height: 1.75; }
.contact-hotels {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.contact-hotels li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-hotels li:last-child { border-bottom: none; }
.contact-hotels strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}
.contact-hotels a.btn-ghost {
  font-size: 0.68rem;
  padding: 0.3rem 0;
}

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.7rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.blog-card-meta .sep { color: var(--muted); }
.blog-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.blog-card h3 a { transition: color 0.25s; }
.blog-card h3 a:hover { color: var(--ember); }
.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.blog-card .btn-ghost { padding: 0.3rem 0; font-size: 0.72rem; align-self: flex-start; }

/* Blog post (article) */
.article-wrap {
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.article-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='220' viewBox='0 0 360 220'><g fill='none' stroke='%23b75043' stroke-width='1' opacity='0.5'><path d='M0 30 Q 90 0 180 30 T 360 30'/><path d='M0 60 Q 90 30 180 60 T 360 60'/><path d='M0 95 Q 90 65 180 95 T 360 95'/><path d='M0 140 Q 90 110 180 140 T 360 140'/><path d='M0 185 Q 90 155 180 185 T 360 185'/></g></svg>");
  background-size: 360px 220px;
  opacity: 0.07;
  pointer-events: none;
}
.article {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}
.article-meta {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article-meta .sep { color: var(--muted); }
.article h1.article-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--ink);
}
.article h1.article-title em { color: var(--ember); font-style: italic; }
.article-figure {
  margin: 0 0 3rem;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.article-figure img { width: 100%; height: 100%; object-fit: cover; }
.article-lede {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 2rem;
  font-style: italic;
}
.article p, .article ul, .article ol {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.article h2 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 1.1rem;
  color: var(--ink);
}
.article ul, .article ol { padding-left: 1.5rem; }
.article li { margin-bottom: 0.6rem; line-height: 1.75; }
.article blockquote {
  border-left: 3px solid var(--ember);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin: 2.5rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ink);
}
.article-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem;
  margin-top: 3rem;
  background: var(--cream);
  border-radius: 4px;
}
.article-author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.article-author-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.article-author-bio { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* ---------- NEWSLETTER POPUP ---------- */
.newsletter-popup {
  position: fixed;
  inset: 0;
  background: rgba(31,22,17,0.72);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.newsletter-popup.open { opacity: 1; pointer-events: auto; }
.newsletter-popup-card {
  background: var(--warm-white);
  border-radius: 4px;
  padding: 3rem 2.5rem 2.5rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.5s ease;
  text-align: center;
  overflow: hidden;
}
.newsletter-popup.open .newsletter-popup-card { transform: none; }
.newsletter-popup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--ember), var(--gold-pale));
}
.np-close {
  position: absolute;
  top: 0.7rem; right: 0.85rem;
  width: 36px; height: 36px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}
.np-close:hover { color: var(--ember); transform: scale(1.1); }
.newsletter-popup-card h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  margin: 0.6rem 0 0.7rem;
  line-height: 1.2;
}
.newsletter-popup-card h3 em { color: var(--ember); font-style: italic; }
.newsletter-popup-card p {
  color: var(--muted);
  margin-bottom: 1.6rem;
  line-height: 1.7;
}
.np-form {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.np-form input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 2px;
  color: var(--ink);
}
.np-form input:focus {
  outline: none;
  border-color: var(--ember);
}
.np-form .btn { padding: 0.9rem 1.4rem; }
.np-fine {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* ---------- SOCIALS PAGE ---------- */
.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.discount-card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--line);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.discount-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.discount-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--ember), var(--gold));
}
.discount-card .badge {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.discount-card .discount-rate {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--ember);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.discount-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.discount-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.discount-card small {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  display: block;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.social-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.social-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.social-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 1.1rem;
  background: var(--cream);
  border-radius: 50%;
  color: var(--ember);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
  transition: background 0.3s, color 0.3s;
}
.social-card:hover .social-card-icon { background: var(--ember); color: #fff; }
.social-card strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}
.social-card span {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-bottom: 1.1rem;
}
.social-card .social-handle {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  margin-top: 0;
  margin-bottom: 0;
}

.newsletter-banner {
  background: linear-gradient(135deg, var(--ink) 0%, #2d1f15 100%);
  color: var(--warm-white);
  padding: 5rem 2.5rem;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.newsletter-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(217,185,122,0.15) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.newsletter-banner::after {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(184,80,66,0.25), transparent 65%);
  pointer-events: none;
}
.newsletter-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.newsletter-banner h2 em { color: var(--gold-pale); font-style: italic; }
.newsletter-banner p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.newsletter-banner-form { display: flex; gap: 0.6rem; }
.newsletter-banner-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 0.95rem 1rem;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
}
.newsletter-banner-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-banner-form input:focus { outline: none; border-color: var(--gold-pale); }
.newsletter-banner-form .btn { padding: 0.95rem 1.6rem; }

/* ---------- LEAD MAGNET (Travel Guide signup) ---------- */
.lead-magnet {
  background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 100%);
  padding: 5rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='360' height='220' viewBox='0 0 360 220'><g fill='none' stroke='%23b75043' stroke-width='1' opacity='0.5'><path d='M0 30 Q 90 0 180 30 T 360 30'/><path d='M0 60 Q 90 30 180 60 T 360 60'/><path d='M0 95 Q 90 65 180 95 T 360 95'/><path d='M0 140 Q 90 110 180 140 T 360 140'/><path d='M0 185 Q 90 155 180 185 T 360 185'/></g></svg>");
  background-size: 360px 220px;
  opacity: 0.18;
  pointer-events: none;
}
.lead-magnet-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lead-magnet-image {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 520px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.lead-magnet-image img { width: 100%; height: 100%; object-fit: cover; }
.lead-magnet-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(31,22,17,0.55));
}
.lead-magnet-image .lm-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--ember);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border-radius: 2px;
  z-index: 2;
}
.lead-magnet-image .lm-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  z-index: 2;
}
.lead-magnet-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.lead-magnet-content h2 em { color: var(--ember); font-style: italic; }
.lead-magnet-content p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.lead-magnet-includes {
  list-style: none;
  margin-bottom: 1.8rem;
}
.lead-magnet-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
}
.lead-magnet-includes li::before {
  content: '◆';
  color: var(--ember);
  font-size: 0.7rem;
  margin-top: 0.4rem;
}
.lead-magnet-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.6rem;
  background: #fff;
  padding: 0.6rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.8rem;
}
.lead-magnet-form input {
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.8rem 0.9rem;
  font-family: inherit;
  font-size: 0.92rem;
  border-radius: 2px;
}
.lead-magnet-form input:focus { outline: none; border-color: var(--ember); }
.lead-magnet-fine { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- EXPERIENCES HUB ---------- */
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.experience-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
}
.experience-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.experience-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.experience-tile:hover img { transform: scale(1.05); }
.experience-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31,22,17,0.15) 30%, rgba(31,22,17,0.85));
}
.experience-tile-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.4rem 1.4rem;
  z-index: 2;
}
.experience-tile-body span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 0.5rem;
}
.experience-tile-body strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.15;
  display: block;
  margin-bottom: 0.5rem;
}
.experience-tile-body p {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---------- DIRECT BOOKING BENEFITS (formal section) ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.benefit {
  background: #fff;
  padding: 2rem 1.6rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit-icon {
  width: 54px; height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--ember-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.6rem;
}
.benefit h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.benefit p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ---------- FEATURED BLOGS (homepage strip) ---------- */
.featured-blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.featured-blog {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s, box-shadow 0.4s;
  display: block;
  text-decoration: none;
  color: #fff;
}
.featured-blog:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-blog img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s;
}
.featured-blog:hover img { transform: scale(1.05); }
.featured-blog::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31,22,17,0.10) 40%, rgba(31,22,17,0.92));
}
.featured-blog-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.6rem 1.4rem 1.3rem;
}
.featured-blog-body span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 0.55rem;
}
.featured-blog-body strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  display: block;
}

/* ---------- INLINE NEWSLETTER FUNNEL (homepage section) ---------- */
.inline-newsletter {
  background:
    radial-gradient(ellipse at 90% 0%, rgba(184,80,66,0.10), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(176, 138, 55,0.07), transparent 55%),
    var(--warm-white);
  position: relative;
  overflow: hidden;
}
.inline-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(184,80,66,0.10) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.inline-newsletter .container {
  text-align: center;
  max-width: 720px !important;
}
.inline-newsletter-form {
  display: flex;
  gap: 0.6rem;
  margin: 1.5rem auto 0.8rem;
  max-width: 480px;
}
.inline-newsletter-form input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.95rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 2px;
}
.inline-newsletter-form input:focus { outline: none; border-color: var(--ember); }
.inline-newsletter-fine { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- PERSONA BADGE on hotel cards ---------- */
.persona-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c2185b;
  padding: 0.3rem 0.6rem;
  background: rgba(233, 30, 99, 0.12);
  border-radius: 2px;
  margin-bottom: 0.6rem;
}

/* ---------- PACKAGES (offers page) ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.package-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.package-image { aspect-ratio: 16/10; overflow: hidden; }
.package-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.package-card:hover .package-image img { transform: scale(1.05); }
.package-body { padding: 1.7rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.package-body h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.package-meta {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.package-body p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.package-includes {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.package-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.3rem 0;
}
.package-includes li::before {
  content: '✓';
  color: var(--ember);
  font-weight: 600;
}
.package-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1rem;
}
.package-price strong { color: var(--ember); font-size: 1.6rem; }
.package-price small { color: var(--muted); font-size: 0.8rem; font-family: var(--sans); font-weight: 400; }
.package-card .btn { margin-top: auto; }

/* ---------- GROUPS LEAD FORM ---------- */
.groups-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}
.groups-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 0;
}
.groups-type {
  background: #fff;
  padding: 1.6rem 1.4rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.groups-type:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.groups-type-icon {
  width: 44px; height: 44px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ember);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.groups-type strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.3rem;
}
.groups-type span { color: var(--muted); font-size: 0.85rem; }

/* ---------- REVIEWS (Google-style) ---------- */
.section-reviews-band {
  background: var(--ink);
  color: #f3efe5;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.section-reviews-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}
.reviews-carousel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
}
.reviews-track {
  position: relative;
  min-height: 140px;
}
.review-slide {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  text-align: center;
}
.review-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
}
.review-source-mark {
  font-family: var(--sans, sans-serif);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #f3efe5;
}
.review-source-mark span {
  font-weight: 800;
  letter-spacing: 0.02em;
}
.review-quote {
  font-family: var(--serif, serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  line-height: 1.45;
  color: #f3efe5;
  margin: 0 auto;
  width: 80%;
  max-width: 1100px;
  text-align: center;
}
.review-quote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243,239,229,0.65);
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2.2rem;
}
.reviews-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(243,239,229,0.55);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.reviews-dots button.is-active {
  background: #f3efe5;
  border-color: #f3efe5;
}
@media (max-width: 720px) {
  .reviews-carousel { padding: 3rem 1.5rem 2.25rem; }
  .review-quote { font-size: 1.35rem; }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  padding: 1.8rem 1.7rem;
  border-radius: 4px;
  border: 1px solid var(--line);
  position: relative;
}
.review-stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
.review-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  flex-shrink: 0;
}
.review-meta strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  display: block;
}
.review-meta span {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
}
.review-meta .review-source {
  margin-left: auto;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- STICKY BOOKING CTA (small floating button) ---------- */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  background: var(--ember);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(184,80,66,0.40);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s, background 0.25s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sticky-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.sticky-cta:hover { background: var(--ember-dark); }
.sticky-cta::before {
  content: '◆';
  font-size: 0.6rem;
  color: var(--gold-pale);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 5rem 2.5rem 2rem;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-mark { color: #fff; }
.footer-brand .brand-mark em { color: var(--gold-pale); }
.footer-brand p {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 320px;
}
.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold-pale); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- UTILITIES ---------- */
.muted { color: var(--muted); }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Scroll reveal (site-wide) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-left { transform: translateX(-28px); }
.reveal-left.in-view { transform: translateX(0); }
.reveal-right { transform: translateX(28px); }
.reveal-right.in-view { transform: translateX(0); }
.reveal-zoom { transform: scale(0.96); }
.reveal-zoom.in-view { transform: scale(1); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-up-lg { transform: translateY(48px); }
.reveal-up-lg.in-view { transform: translateY(0); }
.reveal-blur { filter: blur(10px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1), filter 0.9s ease; }
.reveal-blur.in-view { filter: blur(0); }
.reveal-rotate { transform: translateY(28px) rotate(-2deg); }
.reveal-rotate.in-view { transform: translateY(0) rotate(0); }
.reveal-clip { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s cubic-bezier(.7,0,.2,1), opacity 0.6s ease; }
.reveal-clip.in-view { clip-path: inset(0 0 0 0); }

/* Image ken-burns / zoom-on-reveal */
.reveal-img { overflow: hidden; }
.reveal-img img { transform: scale(1.12); transition: transform 1.4s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.reveal-img.in-view img { transform: scale(1); }

/* Parallax on scroll (driven by JS via --p variable, 0..1) */
[data-parallax] { will-change: transform; transform: translate3d(0, calc(var(--p, 0) * var(--parallax-strength, 60px)), 0); }

/* Smooth scrolling site-wide */
html { scroll-behavior: smooth; }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform-origin: 0 50%; transform: scaleX(var(--sp, 0)); background: linear-gradient(90deg, var(--sage, #7a8c6c), var(--terracotta, #c97b5e)); z-index: 1000; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-zoom, .reveal-up-lg, .reveal-blur, .reveal-rotate, .reveal-clip, .reveal-img img { opacity: 1 !important; transform: none !important; transition: none !important; filter: none !important; clip-path: none !important; }
  html { scroll-behavior: auto; }
  [data-parallax] { transform: none !important; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .header-inner { padding: 1rem 1.25rem; }
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }

  section { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 0 3rem; min-height: 80vh; }
  .hero-inner, .page-hero-inner { padding: 0 1.5rem; }
  .page-hero { padding: 8rem 0 3.5rem; }

  .hero-video {
    min-height: 85vh;
    padding: 7rem 0 4rem;
  }
  .hero-video .hero-inner { padding: 0 1.5rem; }
  .hero-trust { display: none; }
  .hero-scroll { display: none; }

  .trust-strip { padding: 2.5rem 1.5rem; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .trust-stat strong { font-size: 2rem; }
  .trust-strip-light { padding: 2rem 1.5rem; }
  .trust-strip-light .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .trust-strip-light .trust-stat strong { font-size: 1.7rem; }

  .properties-rail-inner { gap: 0.5rem 1.2rem; padding: 0 1.5rem; }
  .properties-rail a { font-size: 0.9rem; }
  .properties-rail-label { width: 100%; text-align: center; padding-right: 0; margin-bottom: 0.5rem; }

  .article { padding: 4rem 1.5rem; }
  .article-figure { margin-bottom: 2rem; }
  .article-lede { font-size: 1.2rem; }

  .newsletter-popup-card { padding: 2.5rem 1.5rem 2rem; }
  .newsletter-popup-card h3 { font-size: 1.55rem; }
  .np-form { flex-direction: column; }
  .np-form .btn { width: 100%; }

  .newsletter-banner { padding: 3.5rem 1.5rem; }
  .newsletter-banner-form { flex-direction: column; }
  .newsletter-banner-form .btn { width: 100%; }
  .discount-card { padding: 1.8rem 1.4rem; }
  .discount-card .discount-rate { font-size: 2.2rem; }

  .lead-magnet { padding: 4rem 1.5rem; }
  .lead-magnet-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .lead-magnet-image { aspect-ratio: 4/3; max-height: 360px; }
  .lead-magnet-form { grid-template-columns: 1fr; gap: 0.5rem; padding: 0.8rem; }
  .lead-magnet-form .btn { width: 100%; }

  .featured-blogs { grid-template-columns: 1fr; }
  .inline-newsletter-form { flex-direction: column; }
  .inline-newsletter-form .btn { width: 100%; }

  .package-grid { grid-template-columns: 1fr; }
  .package-body { padding: 1.5rem 1.4rem 1.6rem; }

  .groups-form { padding: 1.8rem 1.4rem; }

  .sticky-cta { bottom: 1rem; right: 1rem; padding: 0.8rem 1.1rem; font-size: 0.66rem; letter-spacing: 0.18em; }

  .gallery-rail { padding: 0.5rem 1.5rem 1.5rem; gap: 0.9rem; }
  .gallery-item { flex: 0 0 240px; }
  .gallery-item figcaption strong { font-size: 1.05rem; }
  .gallery-strip { padding: 4rem 0 5rem; }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 7rem 1.5rem 3rem;
    min-height: 0;
  }
  .hero-collage {
    height: auto;
    min-height: 0;
    max-height: none;
    grid-template-rows: 1fr 1fr;
    aspect-ratio: 5 / 4;
  }
  .hero-collage figcaption { font-size: 0.95rem; padding: 0.8rem 0.9rem 0.7rem; }
  .hero-collage .feature figcaption { font-size: 1.05rem; padding: 1rem 1rem 0.8rem; }
  .hero-collage figcaption span { font-size: 0.55rem; letter-spacing: 0.22em; }

  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col-image { aspect-ratio: 4/3; }
  .hotel-detail { grid-template-columns: 1fr; }
  .hotel-detail:nth-child(even) .hotel-detail-image { order: 0; }
  .hotel-detail-body { padding: 2rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero-headline { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hotel-card-actions { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .hotel-card-actions .btn-primary { width: 100%; text-align: center; }
}

/* ============ RETREAT SECTION ============ */
.retreat-section {
  padding: 6rem 0 7rem;
  background: var(--cream, #f6efe4);
  position: relative;
}
.retreat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.retreat-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}
.retreat-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.retreat-copy {
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #faf4ea;
}
.retreat-copy .section-title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0.6rem 0 1.4rem;
}
.retreat-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.retreat-copy .btn { align-self: flex-start; }

/* ---------- RETREAT COLLAGE (8-image asymmetric mosaic) ---------- */
.retreat-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 8px;
  margin-top: 0;
}
.retreat-collage .rc-cell {
  overflow: hidden;
  background: #ddd;
  border-radius: 2px;
}
.retreat-collage .rc-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.retreat-collage .rc-cell:hover img { transform: scale(1.06); }

.retreat-collage .rc-1 { grid-column: span 2; grid-row: span 2; }
.retreat-collage .rc-2 { grid-column: span 2; grid-row: span 2; }
.retreat-collage .rc-3 { grid-column: span 2; grid-row: span 2; }
.retreat-collage .rc-4 { grid-column: span 1; grid-row: span 2; }
.retreat-collage .rc-5 { grid-column: span 2; grid-row: span 2; }
.retreat-collage .rc-6 { grid-column: span 1; grid-row: span 2; }
.retreat-collage .rc-7 { grid-column: span 1; grid-row: span 2; }
.retreat-collage .rc-8 { grid-column: span 1; grid-row: span 2; }

@media (max-width: 900px) {
  .retreat-grid { grid-template-columns: 1fr; }
  .retreat-hero { min-height: 320px; }
  .retreat-copy { padding: 2.5rem 1.75rem; }
  .retreat-collage {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 130px;
  }
  .retreat-collage .rc-1,
  .retreat-collage .rc-2,
  .retreat-collage .rc-3,
  .retreat-collage .rc-4,
  .retreat-collage .rc-5,
  .retreat-collage .rc-6,
  .retreat-collage .rc-7,
  .retreat-collage .rc-8 { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 560px) {
  .retreat-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  .retreat-collage .rc-1,
  .retreat-collage .rc-2,
  .retreat-collage .rc-3,
  .retreat-collage .rc-4,
  .retreat-collage .rc-5,
  .retreat-collage .rc-6,
  .retreat-collage .rc-7,
  .retreat-collage .rc-8 { grid-column: span 1; grid-row: span 1; }
}
