/* ============================================================
   THE POLISHED HOME — styles.css
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --navy:       #2c2825;
  --gold:       #b8966e;
  --gold-mid:   #a07d57;
  --gold-light: #f5f0ea;
  --cream:      #faf8f5;
  --stone:      #e0d8cf;
  --warm-gray:  #8c7f74;
  --dark-gray:  #4a403a;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  border-bottom: 1px solid var(--stone);
}

.logo-wrap { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-icon {
  width: 30px; height: 30px;
  background: rgba(184,150,110,0.15);
  border: 1px solid rgba(184,150,110,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.logo-text {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--dark-gray);
  border-radius: 0.25rem;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover { color: var(--navy); background: var(--cream); }
.nav-arrow { font-size: 0.65rem; opacity: 0.6; transition: transform 0.25s; }
.has-mega:hover .nav-arrow { transform: rotate(180deg); }

.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 0.25rem !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}
.nav-cta:hover { background: var(--gold-mid) !important; }

/* Mega menu */
.has-mega { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--stone);
  border-radius: 0.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  padding: 2rem;
  display: grid;
  grid-template-columns: 220px 180px 220px;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  pointer-events: none;
  min-width: 660px;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mega-col-heading {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.75rem;
}
.mega-link {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 0.35rem;
  margin-bottom: 0.15rem;
  transition: background 0.15s;
}
.mega-link:hover { background: var(--gold-light); }
.mega-link-title { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.mega-link-desc { font-size: 0.72rem; color: var(--warm-gray); margin-top: 0.1rem; }
.mega-simple-link {
  display: block;
  font-size: 0.8rem;
  color: var(--dark-gray);
  padding: 0.3rem 0;
  transition: color 0.15s;
}
.mega-simple-link:hover { color: var(--gold); }

.mega-cta-box {
  background: var(--navy);
  border-radius: 0.4rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mega-cta-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.mega-cta-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: white;
  line-height: 1.3;
}
.mega-cta-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--gold);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s;
}
.mega-cta-btn:hover { background: var(--gold-mid); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  padding: 6rem 5vw;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,40,37,0.82) 40%, rgba(44,40,37,0.4) 100%);
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.85;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: white;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2rem;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}
.hero-badge-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-visual { position: relative; z-index: 1; }
.hero-main-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 340px;
  margin-left: auto;
}
.hmc-tag {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.hmc-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.hmc-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hmc-bottom { display: flex; align-items: center; justify-content: space-between; }
.hmc-pill {
  background: var(--gold);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-mid); }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  padding: 0.85rem 2rem;
  border-radius: 0.3rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: white; color: white; }

/* ============================================================
   QUICK BOOK BAR
   ============================================================ */
.quick-book {
  background: white;
  border-bottom: 1px solid var(--stone);
  padding: 1.25rem 2.5rem;
}
.quick-book-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.quick-book-label {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  white-space: nowrap;
}
.quick-book-label em { color: var(--gold); font-style: italic; }
.quick-book-divider { width: 1px; height: 32px; background: var(--stone); flex-shrink: 0; }
.quick-book-fields { display: flex; gap: 0.75rem; flex: 1; }
.quick-book-fields input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid var(--stone);
  border-radius: 0.3rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.quick-book-fields input:focus { border-color: var(--gold); }
.quick-book-fields button {
  background: var(--gold);
  color: white;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 0.3rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.quick-book-fields button:hover { background: var(--gold-mid); }

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 220px;
}
.photo-strip-item {
  background-size: cover;
  background-position: center;
}

/* ============================================================
   GOLD BAR
   ============================================================ */
.gold-bar {
  background: var(--gold-light);
  border-top: 1px solid rgba(184,150,110,0.2);
  border-bottom: 1px solid rgba(184,150,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.9rem 2rem;
  flex-wrap: wrap;
}
.gb-item {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-gray);
}
.gb-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 6rem 2.5rem;
}
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-eyebrow .line { flex: none; width: 24px; height: 1px; background: var(--gold); }
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header h2 em { color: var(--gold); font-style: italic; }
.section-header p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.8; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-bg { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto 1.25rem;
}
.services-grid-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: white;
  border: 1px solid var(--stone);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.service-card.featured { border-color: rgba(184,150,110,0.5); box-shadow: 0 4px 20px rgba(184,150,110,0.12); }
.sc-photo { height: 220px; background-size: cover; background-position: center; }
.sc-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.sc-num { font-size: 0.6rem; letter-spacing: 0.18em; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.sc-icon { margin-bottom: 0.75rem; }
.sc-name { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.6rem; }
.sc-desc { font-size: 0.82rem; color: var(--warm-gray); line-height: 1.7; margin-bottom: 1rem; }
.sc-features { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; }
.sc-features li {
  font-size: 0.78rem;
  color: var(--dark-gray);
  padding-left: 1rem;
  position: relative;
}
.sc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.sc-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.sc-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: letter-spacing 0.2s;
}
.sc-link:hover { letter-spacing: 0.08em; }
.sc-from { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--warm-gray); display: block; }
.sc-price { font-family: var(--serif); font-size: 1rem; color: var(--gold); }

/* ============================================================
   HERO CARD
   ============================================================ */
.hero-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  padding: 2rem;
  width: 300px;
  flex-shrink: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.wcu-card {
  background: white;
  border: 1px solid var(--stone);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.wcu-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.wcu-icon {
  width: 46px; height: 46px;
  background: var(--gold-light);
  border: 1px solid rgba(184,150,110,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.wcu-card h3 { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--navy); margin-bottom: 0.6rem; }
.wcu-card p { font-size: 0.82rem; color: var(--warm-gray); line-height: 1.75; }

@media (max-width: 900px) { .wcu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wcu-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOME SERVICE TILES
   ============================================================ */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.home-service-tile {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--stone);
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}
.home-service-tile:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-3px); }
.hst-photo { height: 200px; background-size: cover; background-position: center; }
.hst-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.hst-name { font-family: var(--serif); font-size: 1.05rem; color: var(--navy); }
.hst-desc { font-size: 0.82rem; color: var(--warm-gray); line-height: 1.6; flex: 1; }
.hst-link { font-size: 0.78rem; font-weight: 600; color: var(--gold); margin-top: 0.75rem; letter-spacing: 0.03em; }

.home-service-cta {
  background: var(--navy) !important;
  border-color: transparent !important;
  justify-content: center;
}
.home-service-cta:hover { box-shadow: 0 8px 32px rgba(44,40,37,0.3) !important; }
.hst-cta-inner { padding: 2rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; height: 100%; justify-content: center; }
.hst-cta-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.hst-cta-title { font-family: var(--serif); font-size: 1.3rem; color: white; line-height: 1.3; }
.hst-cta-title em { color: var(--gold); font-style: italic; }
.hst-cta-btn { margin-top: 0.5rem; font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }

@media (max-width: 900px) { .home-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .home-services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-bg { background: white; }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.hiw-item { text-align: center; }
.hiw-circle {
  width: 52px; height: 52px;
  border: 1px solid rgba(184,150,110,0.35);
  background: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.hiw-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
}
.hiw-item h3 { font-family: var(--serif); font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 400; }
.hiw-item p { font-size: 0.82rem; color: var(--warm-gray); line-height: 1.7; }

/* ============================================================
   TRUST / TESTIMONIALS
   ============================================================ */
.trust-section { background: var(--navy); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.5rem;
  padding: 1.75rem;
}
.review-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1.25rem; font-style: italic; }
.review-author { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-section { background: var(--cream); }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.booking-left h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.booking-left h2 em { color: var(--gold); font-style: italic; }
.booking-left p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.8; margin-bottom: 2rem; }
.booking-promise { display: flex; flex-direction: column; gap: 0.75rem; }
.bp-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.82rem; color: var(--dark-gray); }
.bp-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

.booking-form { background: white; border: 1px solid var(--stone); border-radius: 0.5rem; padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--stone);
  border-radius: 0.3rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 0.3rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.submit-btn:hover { background: var(--gold-mid); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 6rem 2.5rem;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.page-hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.page-hero-eyebrow::before, .page-hero-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ============================================================
   CONTENT GRID (alternating image + text)
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-photo {
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.content-text h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.content-text h2 em { color: var(--gold); font-style: italic; }
.content-text p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.8; margin-bottom: 1.25rem; }
.content-text ul { display: flex; flex-direction: column; gap: 0.5rem; }
.content-text ul li {
  font-size: 0.85rem;
  color: var(--dark-gray);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.6;
}
.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.eyebrow-small {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 2rem 1.25rem 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 1.25rem; font-size: 0.88rem; color: var(--warm-gray); line-height: 1.8; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
}
.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: white;
  border: 1px solid var(--stone);
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
}
.pricing-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.pricing-name { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 0.5rem; }
.pricing-price { font-family: var(--serif); font-size: 2rem; color: var(--navy); margin-bottom: 0.25rem; }
.pricing-price span { font-size: 0.85rem; font-family: var(--sans); color: var(--warm-gray); }
.pricing-desc { font-size: 0.8rem; color: var(--warm-gray); line-height: 1.6; margin-bottom: 1.5rem; }
.pricing-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }
.pricing-features li {
  font-size: 0.82rem;
  color: var(--dark-gray);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.pricing-table th {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--stone); color: var(--dark-gray); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--cream); }

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.area-card {
  background: white;
  border: 1px solid var(--stone);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.area-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.area-photo { height: 160px; background-size: cover; background-position: center; }
.area-body { padding: 1.5rem; }
.area-name { font-family: var(--serif); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.4rem; }
.area-desc { font-size: 0.8rem; color: var(--warm-gray); line-height: 1.6; margin-bottom: 1rem; }
.area-link { font-size: 0.75rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; }

/* ============================================================
   TRUST BADGES (inline)
   ============================================================ */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-light);
  border: 1px solid rgba(184,150,110,0.25);
  border-radius: 0.4rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  padding: 4rem 2.5rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  align-self: start;
}
.footer-logo span { color: var(--gold); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 4rem 2rem; }
  .hero-card { display: none; }
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .content-grid.reverse { direction: ltr; }
  .booking-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .section { padding: 4rem 1.25rem; }
  .services-grid, .services-grid-2 { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid, .pricing-grid-2 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { height: 140px; }
  .quick-book-inner { flex-direction: column; align-items: stretch; }
  .quick-book-divider { display: none; }
  .quick-book-fields { flex-direction: column; }
  .hiw-grid { grid-template-columns: 1fr; }
  .mega-menu { display: none; }
}

@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}
