:root {
  --cream: #FAF6EF;
  --warm-beige: #EDE3D3;
  --warm-beige-2: #E4D6BE;
  --gold: #B08D57;
  --gold-soft: #C9A876;
  --sage: #8A9A80;
  --sage-soft: #A9B6A0;
  --charcoal: #2E2A24;
  --charcoal-soft: #55503F;
  --white: #FFFDF9;
  --shadow: 0 20px 50px -20px rgba(46, 42, 36, 0.18);
  --radius: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 18px;
}

.section-title { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 20px; }
.section-lead { max-width: 620px; color: var(--charcoal-soft); font-size: 1.05rem; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-head .section-lead { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 38px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .3s ease, color .3s ease;
}

.btn-primary { background: var(--charcoal); color: var(--cream); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(46,42,36,0.45); }

.btn-outline { background: transparent; color: inherit; border-color: rgba(46,42,36,0.35); }
.btn-outline:hover { border-color: var(--charcoal); transform: translateY(-3px); }
.btn-outline.on-photo { color: var(--white); border-color: rgba(255,253,249,0.55); }
.btn-outline.on-photo:hover { border-color: var(--white); }

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(176,141,87,0.55); }

/* ===== NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  background: rgba(250, 246, 239, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(46,42,36,0.06);
}
header .container { display: flex; align-items: center; justify-content: space-between; }

.logo { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 500; letter-spacing: 0.02em; }
.logo span { color: var(--gold); }

nav ul { display: flex; gap: 32px; }
nav a {
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--charcoal-soft);
  position: relative;
  padding-bottom: 4px;
  transition: color .3s ease;
}
nav a:hover, nav a.active { color: var(--charcoal); }
nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
nav a:hover::after, nav a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-actions .btn { padding: 12px 26px; font-size: 0.82rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span { width: 24px; height: 1.5px; background: var(--charcoal); transition: transform .3s ease, opacity .3s ease; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; }

/* ===== PHOTO HERO (full-bleed, real photos) ===== */
.photo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.photo-hero.page-hero { min-height: 62vh; }
.photo-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroImgIn 6s var(--ease) both;
}
@keyframes heroImgIn {
  from { transform: scale(1.14); opacity: 0.7; }
  to { transform: scale(1.04); opacity: 1; }
}

/* Homepage hero: 3 photos crossfading on an 18s loop, each with its own animation-delay set inline.
   fill-mode:backwards keeps a slide at opacity:0 during its own delay instead of the default
   opaque state, so the others don't get covered before their turn. */
.hero-slideshow .hero-slide {
  animation-name: heroSlideFade;
  animation-duration: 18s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: backwards;
}
@keyframes heroSlideFade {
  0%, 100% { opacity: 0; transform: scale(1.1); }
  8% { opacity: 1; transform: scale(1.06); }
  25% { opacity: 1; transform: scale(1.02); }
  33% { opacity: 0; transform: scale(1); }
}
.photo-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,42,36,0.38) 0%, rgba(46,42,36,0.30) 45%, rgba(46,42,36,0.62) 100%);
  z-index: 1;
}
.photo-hero-content { position: relative; z-index: 2; padding: 0 24px; color: var(--white); }
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,253,249,0.85);
  margin-bottom: 26px;
  display: block;
  animation: heroFadeUp .9s var(--ease) both;
  animation-delay: .15s;
}
.photo-hero h1 { font-size: clamp(2.4rem, 6.2vw, 4.6rem); max-width: 900px; margin: 0 auto 26px; font-weight: 500; color: var(--white); animation: heroFadeUp 1s var(--ease) both; animation-delay: .3s; }
.photo-hero.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.photo-hero p { max-width: 560px; margin: 0 auto 42px; color: rgba(255,253,249,0.88); font-size: 1.12rem; animation: heroFadeUp 1s var(--ease) both; animation-delay: .45s; }
.photo-hero-content .btn { animation: heroFadeUp 1s var(--ease) both; animation-delay: .6s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,253,249,0.16);
  border: 1px solid rgba(255,253,249,0.4);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
  animation: heroFadeUp .9s var(--ease) both;
  animation-delay: .3s;
}
.rating-chip strong { color: var(--gold-soft); }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: .12s; }
.reveal-delay-2.visible { transition-delay: .24s; }
.reveal-delay-3.visible { transition-delay: .36s; }

/* ===== ABOUT / PHILOSOPHY ===== */
.about { padding: 110px 0; text-align: center; }
.about .container { max-width: 780px; }
.about p {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.6;
}
.about .divider { width: 46px; height: 2px; background: var(--gold); margin: 0 auto 40px; }

.split-section { padding: 110px 0; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-grid img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split-grid.reverse .split-photo { order: 2; }
.split-photo { position: relative; }
.split-text p { color: var(--charcoal-soft); margin-bottom: 18px; font-size: 1.02rem; }

/* ===== STOCK PHOTO DISCLOSURE ===== */
.stock-tag {
  position: absolute; left: 14px; top: 14px; z-index: 3;
  background: rgba(46,42,36,0.72);
  backdrop-filter: blur(3px);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0; transform: translateY(-6px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.service-photo:hover .stock-tag,
.package-card:hover .stock-tag,
.split-photo:hover .stock-tag,
.gallery-item:hover .stock-tag {
  opacity: 1; transform: translateY(0);
}

.stat-row { display: flex; gap: 48px; margin-top: 28px; flex-wrap: wrap; }
.stat-row .stat-num { font-family: 'Fraunces', serif; font-size: 2.2rem; color: var(--gold); display: block; }
.stat-row .stat-label { font-size: 0.82rem; color: var(--charcoal-soft); letter-spacing: 0.02em; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--warm-beige); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -20px rgba(46,42,36,0.25); }
.service-photo { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-icon {
  position: absolute; bottom: -22px; left: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
.service-body { padding: 36px 26px 30px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--charcoal-soft); font-size: 0.94rem; margin-bottom: 16px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span {
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  background: var(--warm-beige);
  padding: 5px 12px;
  border-radius: 999px;
}

.services-grid.carousel-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding-bottom: 4px;
  animation: carousel-marquee linear infinite;
  animation-duration: var(--marquee-duration, 15s);
}
.services-grid.carousel-track .service-card {
  flex: 0 0 var(--card-width, 320px);
}

/* ===== PACKAGES ===== */
.packages { padding: 120px 0; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 50px; }
.package-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}
.package-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.package-card:hover img { transform: scale(1.07); }
.package-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(46,42,36,0.05) 40%, rgba(46,42,36,0.82) 100%);
}
.package-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px 26px; color: var(--white); }
.package-body h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 8px; }
.package-body p { color: rgba(255,253,249,0.85); font-size: 0.88rem; }

.gift-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--charcoal); color: var(--cream);
  border-radius: var(--radius); padding: 36px 44px; flex-wrap: wrap;
}
.gift-banner h4 { color: var(--cream); font-size: 1.3rem; margin-bottom: 6px; }
.gift-banner p { color: rgba(250,246,239,0.7); font-size: 0.92rem; }
.gift-banner-img { width: 110px; height: auto; border-radius: 10px; flex-shrink: 0; box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5); }

/* ===== FACILITIES ===== */
.facilities { padding: 90px 0; background: var(--sage); }
.facilities .section-head .section-lead { color: rgba(255,253,249,0.85); }
.facilities .section-head h2 { color: var(--white); }
.facilities .eyebrow { color: var(--white); opacity: 0.85; }
.facilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.facility-badge {
  background: rgba(255,253,249,0.12);
  border: 1px solid rgba(255,253,249,0.28);
  border-radius: var(--radius);
  padding: 38px;
  display: flex; gap: 22px; align-items: flex-start;
  color: var(--white);
  backdrop-filter: blur(6px);
}
.facility-badge svg { width: 34px; height: 34px; stroke: var(--white); flex-shrink: 0; }
.facility-badge h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; }
.facility-badge p { color: rgba(255,253,249,0.82); font-size: 0.92rem; }

/* ===== REVIEWS ===== */
.reviews { padding: 120px 0; }
.rating-summary { text-align: center; margin-bottom: 60px; }
.rating-summary .stars { color: var(--gold); font-size: 1.6rem; letter-spacing: 4px; margin-bottom: 10px; }
.rating-summary .score { font-family: 'Fraunces', serif; font-size: 3rem; }
.rating-summary .score span { font-size: 1.2rem; color: var(--charcoal-soft); }
.rating-summary p { color: var(--charcoal-soft); font-size: 0.95rem; }
.review-card {
  background: var(--warm-beige);
  border-radius: var(--radius);
  padding: 36px 30px;
  flex: 0 0 var(--card-width, 320px);
}
.review-card .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-card p { font-size: 0.95rem; color: var(--charcoal-soft); margin-bottom: 22px; }
.review-card .reviewer { font-size: 0.85rem; font-weight: 500; color: var(--charcoal); }

/* Continuous CSS marquee: content is duplicated once in JS, so -50% is exactly
   one set's width and the loop point is mathematically seamless (no scroll races). */
.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding-bottom: 4px;
  animation: carousel-marquee linear infinite;
  animation-duration: var(--marquee-duration, 15s);
}
@keyframes carousel-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--slide-distance, 50%))); }
}
.carousel-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(46,42,36,0.12);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background .3s ease, transform .3s ease;
}
.carousel-arrow:hover { background: var(--gold); }
.carousel-arrow:hover svg { stroke: var(--white); }
.carousel-arrow svg { width: 18px; height: 18px; stroke: var(--charcoal); transition: stroke .3s ease; }
.carousel-arrow.prev { left: -23px; }
.carousel-arrow.next { right: -23px; }
@media (max-width: 960px) {
  .carousel-arrow { display: none; }
}

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--warm-beige); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}
.gallery-item { border-radius: var(--radius); position: relative; overflow: hidden; cursor: pointer; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(46,42,36,0.55) 100%);
  opacity: 0; transition: opacity .4s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-caption {
  position: absolute; left: 18px; bottom: 14px; z-index: 2;
  color: var(--white); font-size: 0.85rem; letter-spacing: 0.03em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(20, 18, 14, 0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  padding: 40px;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 26px; right: 30px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,253,249,0.12); border: 1px solid rgba(255,253,249,0.3);
  color: var(--white); font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-caption { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; color: rgba(255,253,249,0.8); font-size: 0.9rem; }

/* ===== SERVICE MODAL ===== */
.service-modal {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(20, 18, 14, 0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  padding: 24px;
}
.service-modal.open { opacity: 1; pointer-events: auto; }
.service-modal-inner {
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 720px; width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 90px rgba(0,0,0,0.4);
  transform: translateY(16px);
  transition: transform .35s ease;
}
.service-modal.open .service-modal-inner { transform: translateY(0); }
.service-modal-close {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(20,18,14,0.5); border: none;
  color: var(--white); font-size: 1.3rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.service-modal-photo { aspect-ratio: 16/9; overflow: hidden; }
.service-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-modal-body { padding: 34px 36px 38px; }
.service-modal-body h3 { font-size: 1.5rem; margin-bottom: 14px; }
.service-modal-body p { color: var(--charcoal-soft); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.service-modal-body .service-tags { margin-bottom: 28px; }
.service-modal-body .btn { width: 100%; text-align: center; }

/* ===== CONTACT ===== */
.contact { padding: 120px 0; }

.booking-form {
  background: var(--warm-beige);
  border-radius: var(--radius);
  padding: 42px;
  max-width: 720px;
  margin: 0 auto 90px;
}
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(46,42,36,0.16);
  border-radius: 10px;
  background: var(--white);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  transition: border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; }
.field input:invalid.touched, .field input.invalid {
  border-color: #b0574f;
}
.field-error {
  display: block;
  min-height: 1.1em;
  font-size: 0.76rem;
  color: #b0574f;
  margin-top: 6px;
}
.date-field {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(46,42,36,0.16);
  border-radius: 10px;
  transition: border-color .3s ease;
}
.date-field:focus-within { border-color: var(--gold); }
.field input[type="date"] {
  color-scheme: light;
  cursor: pointer;
  position: relative;
  z-index: 0;
  background: transparent;
  border: none;
}
.field input[type="date"]:focus { border-color: transparent; }
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(56%) sepia(24%) saturate(701%) hue-rotate(1deg) brightness(94%) contrast(87%);
  cursor: pointer;
}
/* Hide the raw "zz/ll/aaaa" placeholder segments until a date is chosen,
   showing a clean custom placeholder instead. */
.field input[type="date"]:not(.has-value)::-webkit-datetime-edit-year-field,
.field input[type="date"]:not(.has-value)::-webkit-datetime-edit-month-field,
.field input[type="date"]:not(.has-value)::-webkit-datetime-edit-day-field,
.field input[type="date"]:not(.has-value)::-webkit-datetime-edit-text {
  color: transparent;
}
.date-placeholder {
  position: absolute;
  left: 16px; top: 50%; transform: translateY(-50%);
  font-size: 0.95rem;
  color: rgba(46,42,36,0.42);
  pointer-events: none;
  z-index: 1;
}
.field input[type="date"].has-value ~ .date-placeholder { display: none; }
.booking-form .btn { width: 100%; border: none; cursor: pointer; }
.booking-form .btn:disabled { opacity: 0.6; cursor: not-allowed; }
.booking-status { margin-top: 14px; font-size: 0.9rem; text-align: center; min-height: 1.2em; }
.booking-status.success { color: var(--sage); }
.booking-status.error { color: #b0574f; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { font-size: 1.4rem; margin-bottom: 26px; }
.contact-row { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-row svg { width: 22px; height: 22px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-row div a { color: var(--charcoal); border-bottom: 1px solid transparent; transition: border-color .3s ease; }
.contact-row div a:hover { border-color: var(--gold); }
.contact-row .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--charcoal-soft); margin-bottom: 3px; }

.schedule { background: var(--warm-beige); border-radius: var(--radius); padding: 34px 36px; }
.schedule h3 { font-size: 1.4rem; margin-bottom: 22px; }
.schedule-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(46,42,36,0.08); font-size: 0.92rem; }
.schedule-row:last-child { border-bottom: none; }
.schedule-row.peak {
  background: rgba(176,141,87,0.14);
  margin: 0 -14px; padding: 11px 14px; border-radius: 10px;
  border-bottom-color: transparent; font-weight: 500;
}
.schedule-row .peak-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-left: 8px; }
.contact-info .btn { margin-top: 10px; }

/* ===== FOOTER ===== */
footer { background: var(--charcoal); color: var(--cream); padding: 80px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(250,246,239,0.12);
}
footer .logo { color: var(--cream); margin-bottom: 14px; }
footer .logo span { color: var(--gold-soft); }
.footer-tagline { color: rgba(250,246,239,0.6); font-size: 0.9rem; max-width: 280px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 42px; height: 42px; border: 1px solid rgba(250,246,239,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s ease, background .3s ease;
}
.footer-social a:hover { border-color: var(--gold-soft); background: rgba(176,141,87,0.15); }
.footer-social svg { width: 18px; height: 18px; stroke: var(--cream); }

.footer-col h4 {
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(250,246,239,0.9);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: rgba(250,246,239,0.68); font-size: 0.92rem; transition: color .3s ease; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col p { color: rgba(250,246,239,0.68); font-size: 0.92rem; margin-bottom: 12px; }
.footer-col .fc-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(250,246,239,0.4); margin-bottom: 3px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 26px;
  flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: rgba(250,246,239,0.55);
}
.footer-bottom a { color: rgba(250,246,239,0.8); }
.footer-credit { font-size: 0.72rem; color: rgba(250,246,239,0.35); text-align: center; padding-top: 18px; }
.footer-credit a { color: rgba(250,246,239,0.5); }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed; bottom: 26px; right: 26px; z-index: 600;
  padding: 15px 26px; font-size: 0.85rem;
  box-shadow: 0 18px 40px -14px rgba(46,42,36,0.5);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.sticky-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .services-grid, .packages-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .booking-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form { padding: 30px; }
  .split-grid { grid-template-columns: 1fr; gap: 36px; }
  .split-grid.reverse .split-photo { order: 0; }
}

@media (max-width: 760px) {
  nav, .nav-actions .btn-outline { display: none; }
  .burger { display: flex; }
  .nav-actions .btn-gold { padding: 10px 20px; font-size: 0.78rem; }

  .mobile-menu {
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid rgba(46,42,36,0.1);
    padding: 10px 32px 26px;
    flex-direction: column; gap: 4px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
    z-index: 400;
  }
  .mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .mobile-menu a { padding: 13px 0; border-bottom: 1px solid rgba(46,42,36,0.06); font-size: 0.98rem; }

  .services-grid, .packages-grid, .reviews-grid, .gallery-grid, .facilities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 220px; }
  .gallery-item.tall { grid-row: span 1; }
  .about { padding: 90px 0 70px; }
  .split-section { padding: 80px 0; }
  .gift-banner { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 22px; }
  .sticky-cta { right: 18px; bottom: 18px; padding: 13px 22px; font-size: 0.8rem; }
  .photo-hero.page-hero { min-height: 46vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
