/*
Theme Name: Vitamin Sea Beach Retreat
Theme URI: https://vitaminseabeachretreat.com
Author: Amber Robertson
Description: Custom block theme for Vitamin Sea Beach Retreat, a luxury coastal modern farmhouse vacation rental in Encinitas, California. Faithful WordPress port of the original hand-built site.
Version: 1.9.1
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vitaminsea
*/

/* ============================================================
   Vitamin Sea Beach Retreat — Design System
   Colors: FLOUR / STONE / CLAY / TIGER EYE / INK
   Typography: Instrument Serif (display) + 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: 'Instrument Serif', Georgia, 'Times New Roman', 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.14em;
  text-transform: uppercase;
  color: var(--tiger-eye);
}
.section-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  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(40px, 5.6vw, 78px); }
h2 { font-size: clamp(30px, 3.7vw, 50px); }
h3 { font-size: clamp(21px, 2.1vw, 30px); }
.serif-italic { font-style: italic; font-weight: 400; }
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.12em;
  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.12em;
  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.14em;
  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.16em;
  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: center;
}
.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: 46px;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  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; }
.build-photos {
  margin: 72px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
@media (max-width: 820px) {
  .build-photos { grid-template-columns: 1fr; gap: 30px; margin-top: 48px; }
}
.build-photos figure {
  margin: 0;
  max-width: 100%;
}
.build-photos img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.build-photos figcaption {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--clay);
  margin-top: 12px;
}
.amenity-photo {
  width: min(200px, 100%);
  aspect-ratio: 4 / 3;
  margin: 0 auto 22px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--stone);
}
.amenity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.amenity-photo.is-icon {
  background: var(--flour-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tiger-eye);
}
.amenity-photo.is-icon svg {
  width: 52px;
  height: 52px;
  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: 86px;
  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.14em;
  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(auto-fit, minmax(210px, 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.12em;
  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: 400px;
  margin: 0;
}
.host-images img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}
.host-images .img-backdrop { display: none; }
.host-text h2 { font-style: italic; margin-bottom: 32px; }
.host-text p + p { margin-top: 18px; }
.host-featured {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 30px;
}
.host-featured a {
  border-bottom: 1px solid var(--stone);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}
.host-featured a:hover { border-bottom-color: var(--tiger-eye); }
.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.14em;
  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.14em;
  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.14em;
  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.12em;
  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.14em;
  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.14em;
  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.14em;
  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.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.review-card .review-date {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  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.14em;
  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.14em;
  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.12em;
  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.12em;
  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.14em;
  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; }
  /* Tighter header so logo + Book Now don't collide on small viewports */
  .logo-mark img { height: 44px; }
  .nav-book { padding: 9px 14px; font-size: 10px; letter-spacing: 0.18em; }
  .hero-content { padding-bottom: 60px; }
  .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; }
}

/* ============ HAMBURGER + MOBILE MENU ============ */

.menu-toggle {
  display: none; /* hidden on desktop, shown on mobile */
  background: transparent;
  border: none;
  width: 44px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: opacity 0.2s ease;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--flour);
}
.menu-toggle:hover { opacity: 0.65; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--flour);
  color: var(--flour);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  line-height: 1;
  padding: 0;
}
.mobile-menu-close:hover { background: var(--flour); color: var(--ink); }
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-menu-nav a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--flour);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-nav a:hover { color: var(--tiger-eye); }
.mobile-menu-nav .mobile-menu-cta {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--tiger-eye);
  color: var(--flour);
  padding: 16px 36px;
  margin-top: 16px;
  border: 1px solid var(--tiger-eye);
}
.mobile-menu-nav .mobile-menu-cta:hover {
  background: var(--tiger-eye-deep);
  color: var(--flour);
}

/* ============ MOBILE OVERRIDES (force) ============ */
/* Final block to guarantee mobile fixes win regardless of cascade order */
@media (max-width: 900px) {
  .logo-mark img { height: 38px !important; width: auto !important; }
  /* nav no longer wraps, so centre everything on one row */
  .nav-inner { align-items: center !important; }
  .site-header .nav-book {
    display: inline-flex !important;
    align-items: center !important;
    height: 44px !important;
    padding: 0 14px !important;
    font-size: 9px !important;
    letter-spacing: 0.16em !important;
  }
  /* Hamburger sits beside Book Now on one row */
  .nav-links {
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .menu-toggle { display: flex !important; }
  /* Keep the SCROLL indicator visible on mobile, but push hero content up
     enough that they don't overlap with the meta text */
  .hero .hero-content { padding-bottom: 85px !important; }
  .hero .scroll-cue {
    display: block !important;
    bottom: 24px !important;
    font-size: 9px !important;
  }
  .hero .scroll-cue::after { height: 28px !important; margin-top: 8px !important; }
}


/* ============================================================
   WORDPRESS COMPATIBILITY LAYER
   Neutralizes WordPress default block styles so the design
   renders exactly like the original site.
   ============================================================ */

body { margin: 0; }
.wp-site-blocks > * { margin-block-start: 0; }
.wp-site-blocks { padding: 0; }

/* Template part wrappers behave like the original elements */
header.wp-block-template-part { display: block; }
footer.wp-block-template-part {
  background: var(--ink);
  color: var(--stone);
  padding: 80px 0 32px;
}

/* Core block resets — zero-specificity guards so they never beat design rules */
:where(.wp-block-group, .wp-block-post-content, .entry-content) { margin: 0; padding: 0; }
:where(.wp-block-heading) { margin: 0; }
:where(figure.wp-block-image, .wp-block-image) { margin: 0; }
:where(.wp-block-image) img { display: block; }
:where(ul.wp-block-list) { margin: 0; padding: 0; }
:where(.wp-block-separator) { border: none; }

/* WordPress admin bar offset is handled by core; no action needed. */

/* The skip-link WordPress injects should stay visually hidden until focused */
.skip-link.screen-reader-text {
  border: 0; clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute !important; width: 1px;
  word-wrap: normal !important;
}
.skip-link.screen-reader-text:focus {
  clip-path: none; height: auto; width: auto; z-index: 100000;
  background: var(--flour); color: var(--ink); padding: 12px 20px;
  left: 8px; top: 8px;
}

/* ============================================================
   UTILITY CLASSES
   Replacements for the inline styles used on the original site,
   so blocks stay valid and editable in the block editor.
   ============================================================ */

.u-center { text-align: center; }
.u-italic { font-style: italic; }
.u-label-stone { color: var(--stone); }
.u-tiger { color: var(--tiger-eye); }
.u-center-mt60 { text-align: center; margin-top: 60px; }
.u-center-mt80 { text-align: center; margin-top: 80px; }
.u-mb24 { margin-bottom: 24px; }
.u-mb32 { margin-bottom: 32px; }
.u-mb40 { margin-bottom: 40px; }
.u-mb60 { margin-bottom: 60px; }
.u-pt140 { padding-top: 140px; }
.u-pt60 { padding-top: 60px; }
.u-pt40 { padding-top: 40px; }
.u-pad100 { padding: 100px 0; }
.u-pad100-center { padding: 100px 0; text-align: center; }
.u-pad60 { padding: 60px 0; }
.u-gallery-h1 { font-size: clamp(40px, 5vw, 64px); }
.u-lead-center { max-width: 600px; margin: 24px auto 0; }
.u-cta-note { font-size: 17px; color: var(--ink-soft); margin-bottom: 32px; }
.u-note-clay { font-size: 14px; color: var(--clay); }
.u-note-clay-sm { font-size: 13px; color: var(--clay); margin-top: 16px; }
.u-link-underline { color: var(--tiger-eye); border-bottom: 1px solid var(--tiger-eye); }

/* Separator inside prose must beat core block-library separator styles */
.prose hr.wp-block-separator {
  border: none;
  border-top: 1px solid var(--clay);
  opacity: 0.4;
  margin: 48px 0;
  width: auto;
  max-width: none;
  background: none;
}

/* Blocks used to rebuild original structures keep their exact look */
p.stat-num { font-size: 42px; }
p.attraction-name, p.review-name { margin: 0; }
p.theme-count { margin-bottom: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ============================================================
   MOBILE TAP TARGETS + HEADER FIT   (added 2026-08-26)
   Apple and Google both want interactive targets at 44px.
   The header was also overflowing 390px and wrapping the
   hamburger onto a second row.
   ============================================================ */

@media (max-width: 900px) {
  .nav-inner { flex-wrap: nowrap; }
  .nav-links { gap: 14px; flex-wrap: nowrap; }
  .nav-book {
    padding: 14px 16px;
    line-height: 1;
    white-space: nowrap;
  }
  .menu-toggle { height: 44px; }

  /* underlined text links were 20-24px tall, too small to hit reliably */
  .footer-policies a,
  .text-link,
  .host-featured a,
  footer ul a {
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* let the hero headline wrap naturally instead of orphaning a word */
  .hero-content h1 br { display: none; }
}

@media (max-width: 480px) {
  .nav-links { gap: 10px; }
  /* smaller wordmark so it does not butt up against Book Now */
  .logo-mark img { height: 30px !important; }
  .nav-book { padding: 14px 12px; font-size: 9.5px; letter-spacing: 0.12em; }
}


/* --- Responsive photo layers (v1.9.0) --- */
/* The CTA sections carry a photo behind the dark scrim. Without this the
   image element collapses to zero height and the photo never renders. */
.cta-img {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.cta::before { z-index: 1; }
.cta-inner { z-index: 2; }

/* Photos are real <img> elements inside these layers so the browser can pick
   a size from srcset instead of always pulling the 1536px file. */
.hero-img > picture,
.cta-img > picture,
.feature-img > picture {
	display: block;
	width: 100%;
	height: 100%;
}
.hero-img img,
.cta-img img,
.feature-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
