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

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

:root {
  --ink: #1f1611;
  --warm-white: #faf5ed;
  --sand: #f0e6d2;
  --sand-deep: #e6d8bc;
  --cream: #f6ecdc;
  --ember: #b85042;
  --ember-dark: #9a3e33;
  --ember-light: #d06650;
  --gold: #b8892a;
  --gold-pale: #d9b97a;
  --sage: #8a9a7b;
  --sage-dark: #6b7a5e;
  --muted: #7a6e63;
  --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-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-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(31,22,17,0.55) 0%, rgba(31,22,17,0.32) 35%, rgba(31,22,17,0.55) 75%, rgba(31,22,17,0.95) 100%),
    radial-gradient(ellipse at 25% 60%, rgba(184,80,66,0.25), 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: var(--gold-pale); }
.hero-video .eyebrow::before { background: var(--gold-pale); }
.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.8rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 920px;
  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: 1.1rem;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.2rem;
  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(--serif);
  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(--serif);
  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='%23b85042' 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; }
.gallery-item {
  flex: 0 0 320px;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  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='%23b85042' 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;
  background:
    radial-gradient(ellipse at 90% 0%, rgba(184,80,66,0.10), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(184,137,42,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='%23b85042' 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; }

/* ---------- 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(138,154,123,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='%23b85042' 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 ---------- */
.section-why {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184,80,66,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(184,137,42,0.10), transparent 60%),
    var(--ink);
  color: var(--warm-white);
  overflow: hidden;
}
.section-why::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-title { color: var(--warm-white); }
.section-why .section-lead { color: rgba(255,255,255,0.78); }
.section-why .eyebrow { color: var(--gold-pale); }
.section-why .eyebrow::before { background: var(--gold-pale); }
.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(184,137,42,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(184,137,42,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='%23b8892a' 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(138,154,123,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='%23b85042' 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;
}

/* ---------- 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); }

/* ---------- 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 { gap: 1.2rem; font-size: 0.62rem; letter-spacing: 0.18em; }
  .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; }

  .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(2.2rem, 9vw, 3rem); }
  .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; }
}
