/* ============================================================
   Vitamin Sea Beach Retreat — Design System
   Colors: FLOUR / STONE / CLAY / TIGER EYE / INK
   Typography: Cormorant Garamond (serif) + Inter (sans)
   ============================================================ */

:root {
  --flour: #EDE7DC;
  --flour-soft: #F4F0E8;
  --stone: #DACFBC;
  --clay: #99948A;
  --tiger-eye: #8B4A2A;
  --tiger-eye-deep: #6E3A20;
  --ink: #1F1E1C;
  --ink-soft: #3A3835;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--flour);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============ TYPOGRAPHY ============ */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tiger-eye);
}
.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 24px;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 4.5vw, 60px); }
h3 { font-size: clamp(24px, 2.5vw, 36px); }
.serif-italic { font-style: italic; font-weight: 300; }
p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.lead { font-size: 17px; line-height: 1.75; color: var(--ink-soft); }

/* ============ BUTTONS ============ */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--flour); }
.btn-primary {
  background: var(--tiger-eye);
  color: var(--flour);
  border-color: var(--tiger-eye);
}
.btn-primary:hover {
  background: var(--tiger-eye-deep);
  border-color: var(--tiger-eye-deep);
  color: var(--flour);
}
.btn-light {
  border-color: var(--flour);
  color: var(--flour);
}
.btn-light:hover { background: var(--flour); color: var(--ink); }
.text-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tiger-eye);
  border-bottom: 1px solid var(--tiger-eye);
  padding-bottom: 4px;
  transition: opacity 0.2s;
}
.text-link:hover { opacity: 0.7; }

/* ============ HEADER ============ */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 32px 0;
}
.site-header.solid {
  position: relative;
  background: var(--ink);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--flour);
}
.logo-mark {
  display: inline-block;
  line-height: 0;
}
.logo-mark img {
  display: block;
  height: 56px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--flour);
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.6; }
.nav-links a.active { opacity: 0.6; }
.nav-book {
  border: 1px solid var(--flour);
  padding: 12px 24px;
  background: rgba(31, 30, 28, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.nav-book:hover { background: var(--flour); color: var(--ink) !important; }

/* ============ HERO ============ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: var(--flour);
}
.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(31,30,28,0.55) 0%, rgba(31,30,28,0.3) 25%, rgba(31,30,28,0.4) 50%, rgba(31,30,28,0.85) 90%, rgba(31,30,28,0.92) 100%),
    linear-gradient(to right, rgba(31,30,28,0.55) 0%, rgba(31,30,28,0.25) 45%, rgba(31,30,28,0) 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px;
}
.hero-eyebrow {
  color: var(--stone);
  margin-bottom: 28px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero h1 {
  color: var(--flour);
  max-width: 900px;
  margin-bottom: 32px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero h1 em { font-weight: 300; color: var(--stone); }
.hero-meta {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-meta-text {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--flour);
  letter-spacing: 0.04em;
  opacity: 0.85;
  max-width: 380px;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--flour);
  opacity: 0.7;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: var(--flour);
  margin: 12px auto 0;
  opacity: 0.5;
}

/* ============ PAGE HERO (smaller, for interior pages) ============ */

.page-hero {
  position: relative;
  height: 56vh;
  min-height: 420px;
  overflow: hidden;
  color: var(--flour);
}
.page-hero .hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero .hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31,30,28,0.5) 0%, rgba(31,30,28,0.2) 50%, rgba(31,30,28,0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.page-hero h1 {
  color: var(--flour);
  font-size: clamp(48px, 6vw, 80px);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  margin-top: 16px;
}
.page-hero .eyebrow {
  color: var(--stone);
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* ============ SECTIONS ============ */

section { padding: 120px 0; }
section.tight { padding: 80px 0; }
.bg-flour { background: var(--flour); }
.bg-flour-soft { background: var(--flour-soft); }
.bg-stone { background: var(--stone); }
.bg-ink { background: var(--ink); color: var(--flour); }

/* ============ INTRO ============ */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.intro-headline h2 { font-style: italic; font-weight: 300; }
.intro-body p + p { margin-top: 24px; }
.intro-body p { font-size: 17px; line-height: 1.75; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--clay);
  border-bottom: 1px solid var(--clay);
  margin-top: 80px;
  padding: 32px 0;
}
.stat {
  text-align: center;
  border-right: 1px solid rgba(153, 148, 138, 0.3);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ============ GALLERY GRID (homepage) ============ */

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.gallery-header h2 { font-style: italic; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.92);
}
.gallery-grid figure { overflow: hidden; position: relative; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.g-1 { grid-column: span 7; grid-row: span 2; }
.g-2 { grid-column: span 5; grid-row: span 2; }
.g-3 { grid-column: span 4; grid-row: span 2; }
.g-4 { grid-column: span 4; grid-row: span 2; }
.g-5 { grid-column: span 4; grid-row: span 2; }

/* ============ FEATURE BAND ============ */

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }
.feature-img {
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.feature-img.landscape { aspect-ratio: 3/2; }
.feature-img.portrait { aspect-ratio: 4/5; }
.feature-text h2 { margin-bottom: 32px; font-style: italic; }
.feature-text p { margin-bottom: 20px; }
.feature-text .text-link { margin-top: 24px; display: inline-block; }

/* ============ AMENITIES ============ */

.amenities-header { text-align: center; margin-bottom: 80px; }
.amenities-header h2 { font-style: italic; max-width: 700px; margin: 0 auto; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
}
.amenity { text-align: center; }
.amenity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--tiger-eye);
}
.amenity-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.2; }
.amenity h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}
.amenity p { font-size: 14px; line-height: 1.6; }

/* ============ TESTIMONIAL ============ */

.testimonial-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 120px;
  color: var(--tiger-eye);
  line-height: 0.6;
  margin-bottom: 24px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  color: var(--flour);
  margin-bottom: 40px;
}
.testimonial cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ============ LOCATION / ATTRACTIONS ============ */

.location-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.location-header h2 { font-style: italic; max-width: 600px; }
.location-header p { max-width: 360px; margin-top: 16px; }
.attractions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.attraction figure {
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 20px;
}
.attraction img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.95);
}
.attraction:hover img { transform: scale(1.05); }
.attraction-name {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 4px;
}
.attraction-distance {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ============ HOST ============ */

.host-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.host-images {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}
.host-images img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  filter: saturate(0.95);
  position: relative;
  z-index: 2;
}
.host-images .img-backdrop {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--tiger-eye);
  opacity: 0.5;
  background: transparent;
  z-index: 1;
}
.host-text h2 { font-style: italic; margin-bottom: 32px; }
.host-text p + p { margin-top: 18px; }
.host-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--tiger-eye);
  margin-top: 32px;
}

/* ============ CTA ============ */

.cta {
  position: relative;
  padding: 180px 0;
  background-size: cover;
  background-position: center;
  color: var(--flour);
  text-align: center;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 30, 28, 0.5);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta h2 { color: var(--flour); font-style: italic; margin-bottom: 24px; }
.cta p { color: var(--stone); margin-bottom: 40px; font-size: 18px; }

/* ============ FOOTER ============ */

footer {
  background: var(--ink);
  color: var(--stone);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo-mark { color: var(--flour); margin-bottom: 24px; display: inline-block; }
.footer-brand .logo-mark img { height: 64px; }
.footer-brand p { color: var(--stone); max-width: 320px; font-size: 14px; line-height: 1.7; font-weight: 300; }
footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tiger-eye);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(218, 207, 188, 0.18);
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 14px; }
footer ul a {
  font-family: var(--serif);
  color: var(--flour);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.005em;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
footer ul a:hover { color: var(--stone); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(218, 207, 188, 0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}
.footer-policies {
  display: flex;
  gap: 24px;
}
.footer-policies a {
  color: var(--clay);
  transition: color 0.2s;
}
.footer-policies a:hover { color: var(--flour); }

/* ============ HOUSE PAGE — ROOM CARDS ============ */

.rooms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
}
.room figure {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 24px;
}
.room figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.95);
}
.room:hover figure img { transform: scale(1.04); }
.room h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
}
.room p { font-size: 16px; line-height: 1.7; }

/* ============ FULL GALLERY ============ */

.full-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.full-gallery figure {
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.full-gallery figure.tall { aspect-ratio: 3/4; }
.full-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: saturate(0.95);
}
.full-gallery figure:hover img { transform: scale(1.04); filter: saturate(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(31, 30, 28, 0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 100px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.18s ease;
}
.lightbox img.swapping { opacity: 0; }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid var(--flour);
  background: rgba(31, 30, 28, 0.4);
  color: var(--flour);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  transition: all 0.2s ease;
}
.lightbox-close { top: 32px; right: 32px; }
.lightbox-prev { top: 50%; left: 32px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 32px; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--flour); color: var(--ink); }
.lightbox-counter {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 700px) {
  .lightbox { padding: 60px 20px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 20px; right: 20px; }
}

/* ============ CONTACT ============ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}
.contact-info p + p { margin-top: 16px; }
.contact-info .label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tiger-eye);
  display: block;
  margin-bottom: 6px;
  margin-top: 24px;
}
.contact-info .value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field.full { grid-column: span 2; }
.form-field label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
}
.form-field input,
.form-field textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--clay);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--tiger-eye); }
.form-field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-submit { grid-column: span 2; margin-top: 16px; }

/* Inline form feedback */
.form-message {
  margin-top: 24px;
  padding: 18px 22px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
  border-left: 2px solid;
}
.form-message strong {
  font-weight: 500;
  font-style: italic;
}
.form-success {
  background: var(--flour-soft);
  border-color: var(--tiger-eye);
  color: var(--ink);
}
.form-error {
  background: rgba(139, 74, 42, 0.08);
  border-color: var(--tiger-eye-deep);
  color: var(--ink-soft);
  font-size: 15px;
}

/* ============ LOCATION PAGE — LARGE ATTRACTION CARDS ============ */

.places {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 50px;
}
.place figure {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 20px;
}
.place figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.place:hover figure img { transform: scale(1.04); }
.place .category {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tiger-eye);
  margin-bottom: 8px;
}
.place h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 6px;
}
.place .distance {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.place p { font-size: 15px; line-height: 1.65; }

/* ============ REVIEWS PAGE ============ */

.rating-banner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-top: 1px solid var(--clay);
  border-bottom: 1px solid var(--clay);
}
.rating-banner .stat-num {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 88px);
  line-height: 1;
  color: var(--ink);
}
.rating-banner .stat-num em {
  font-style: italic;
  font-weight: 300;
  color: var(--tiger-eye);
}
.rating-banner .stars {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--tiger-eye);
  margin-top: 8px;
}
.rating-banner .stat-block {
  text-align: center;
}
.rating-banner .stat-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 12px;
}
.rating-banner .stat-divider {
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  color: var(--clay);
  opacity: 0.5;
}

/* Rave themes grid */
.themes-header { text-align: center; margin-bottom: 80px; }
.themes-header h2 { font-style: italic; max-width: 700px; margin: 0 auto; }
.themes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}
.theme-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--flour);
  border: 1px solid rgba(153, 148, 138, 0.15);
  transition: all 0.3s ease;
}
.theme-card:hover {
  border-color: var(--tiger-eye);
  background: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(31, 30, 28, 0.06);
}
.theme-card .theme-count {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tiger-eye);
  margin-bottom: 16px;
}
.theme-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--ink);
}
.theme-card .theme-quote {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-style: italic;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 50px;
}
.review-card {
  position: relative;
  padding-left: 32px;
  border-left: 1px solid var(--tiger-eye);
}
.review-card blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
}
.review-card .review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.review-card cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}
.review-card .review-date {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
}
.review-card .review-stars {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--tiger-eye);
  margin-bottom: 12px;
}

/* Reviews compact hero */
.reviews-hero {
  position: relative;
  height: 60vh;
  min-height: 460px;
  overflow: hidden;
  color: var(--flour);
}
.reviews-hero .hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.reviews-hero .hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(31,30,28,0.55) 0%, rgba(31,30,28,0.3) 50%, rgba(31,30,28,0.6) 100%),
    linear-gradient(to bottom, rgba(31,30,28,0.3) 0%, rgba(31,30,28,0.2) 40%, rgba(31,30,28,0.65) 100%);
}
.reviews-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 0;
}
.reviews-hero h1 {
  color: var(--flour);
  font-size: clamp(48px, 6vw, 80px);
  margin: 16px 0 32px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.reviews-hero .eyebrow {
  color: var(--stone);
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}

/* Inline rating treatment — replaces the box */
.rating-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flour);
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.rating-inline .rating-stars {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--stone);
  text-transform: none;
}
.rating-inline .rating-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--flour);
}
.rating-inline .dot {
  color: var(--stone);
  opacity: 0.5;
}

/* Guest Favorite — refined typographic treatment */
.gf-banner {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--stone);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.gf-banner::before,
.gf-banner::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--stone);
  opacity: 0.5;
}
.gf-banner em {
  font-style: italic;
  color: var(--flour);
  font-weight: 400;
}

/* Filter + Sort bar */
.reviews-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--clay);
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.reviews-search {
  flex: 1;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}
.reviews-search:focus-within { border-bottom-color: var(--tiger-eye); }
.reviews-search svg {
  width: 16px;
  height: 16px;
  stroke: var(--clay);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.reviews-search input {
  flex: 1;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 0;
}
.reviews-search input::placeholder { color: var(--clay); }
.reviews-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
}
.reviews-sort select {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--clay);
  padding: 8px 36px 8px 14px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2399948A' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
  cursor: pointer;
}
.reviews-sort select:focus { outline: none; border-color: var(--tiger-eye); }
.reviews-count {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
  text-align: center;
  margin-bottom: 32px;
}

/* Review cards v2 (Airbnb-style with avatar) */
.reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 50px;
}
.review-card-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card-v2.hidden { display: none; }
.review-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--stone);
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-id { flex: 1; }
.review-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.review-loc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--clay);
  margin-top: 2px;
}
.review-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.review-meta-row .review-stars {
  color: var(--tiger-eye);
  letter-spacing: 0.08em;
  font-size: 13px;
}
.review-meta-row .review-date,
.review-meta-row .review-stay {
  font-weight: 400;
  color: var(--ink-soft);
}
.review-meta-row .review-dot {
  color: var(--clay);
}
.review-text {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}
.review-expand {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tiger-eye);
  background: none;
  border: none;
  border-bottom: 1px solid var(--tiger-eye);
  padding: 4px 0;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.review-expand:hover { opacity: 0.7; }

/* Response from Amber */
.review-response {
  margin-top: 8px;
  margin-left: 28px;
  padding: 18px 22px;
  background: var(--flour-soft);
  border-left: 2px solid var(--tiger-eye);
  display: flex;
  gap: 14px;
}
.review-response .response-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.review-response .response-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.review-response .response-body {
  flex: 1;
  min-width: 0;
}
.review-response .response-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.review-response .response-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tiger-eye);
}
.review-response .response-date {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}
.review-response .response-text {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}

.reviews-empty {
  text-align: center;
  padding: 80px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--clay);
}

/* Subcategory ratings */
.subratings {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid var(--clay);
  border-bottom: 1px solid var(--clay);
}
.subrating {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.subrating .num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 14px;
}
.subrating .sub-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  color: var(--tiger-eye);
}
.subrating .sub-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.subrating .label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
}

/* ============ LONG-FORM CONTENT (privacy, house rules) ============ */

.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 64px;
  margin-bottom: 20px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-top: 36px;
  margin-bottom: 12px;
}
.prose p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.prose ul {
  margin-left: 24px;
  margin-bottom: 24px;
}
.prose ul li {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.prose ul li::marker { color: var(--tiger-eye); }
.prose strong { font-weight: 500; color: var(--ink); }
.prose .meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 40px;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--clay);
  opacity: 0.4;
  margin: 48px 0;
}

/* ============ 404 PAGE ============ */

.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: var(--flour);
  text-align: center;
  position: relative;
}
.error-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 30, 28, 0.7);
}
.error-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 0 40px;
}
.error-code {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(80px, 12vw, 160px);
  color: var(--stone);
  line-height: 1;
  margin-bottom: 16px;
}
.error-content h1 {
  color: var(--flour);
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 24px;
}
.error-content p {
  color: var(--stone);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.error-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-links .nav-book { display: inline-block; }
  .nav-links { display: flex; }
  .nav-links a:not(.nav-book) { display: none; }
  .intro-grid, .feature-grid, .host-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .feature-grid.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .g-1, .g-2, .g-3, .g-4, .g-5 { grid-column: span 6; grid-row: span 2; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .attractions { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 16px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-header, .location-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .rooms, .places { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-list { grid-template-columns: 1fr; gap: 48px; }
  .reviews-controls { gap: 16px; }
  .themes-grid { grid-template-columns: repeat(2, 1fr); }
  .rating-banner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .rating-banner .stat-divider { display: none; }
  .subratings { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .full-gallery { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .form-submit { grid-column: span 1; }
}

@media (max-width: 600px) {
  .full-gallery { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
}
