/* ============================================================
   THEME CONTRACT — Terracota Design System
   Controls ONLY these variables. Structural CSS below is unchanged.
   ============================================================ */
:root {
  /* surfaces */
  --bg:        #F5F0E8;
  --bg-soft:   #EEE7D8;
  --surface:   #F9F5EE;

  /* text */
  --text:           #2C2416;
  --text-soft:      #7A6E5E;
  --text-on-accent: #F9F5EE;

  /* accent — Sage Green primary */
  --accent:       #6B8C6A;
  --accent-hover: #4E6E4D;
  --accent-soft:  #D4E3D3;
  --accent-muted: #9DB89C;

  /* special: star colour (Peach/Fuzz) */
  --accent-stars: #FFBE98;

  /* hairlines */
  --hairline: rgba(44, 36, 22, 0.10);

  /* typography */
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: 'Cormorant Garamond', Georgia, serif;

  /* spacing */
  --section-y: clamp(72px, 10vw, 140px);
  --container: 1240px;
  --gutter:    clamp(20px, 4vw, 40px);

  /* shape */
  --radius-sm:   4px;
  --radius-card: 16px;
  --radius-pill: 999px;

  /* shadows */
  --shadow-card: 0 12px 40px -8px rgba(44, 36, 22, 0.14);
  --shadow-soft: 0 8px 24px -8px rgba(44, 36, 22, 0.10);

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 84px; /* room for sticky CTA on mobile */
}

@media (min-width: 769px) { body { padding-bottom: 0; } }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-style: italic; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; }

p { line-height: 1.7; }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-soft);
  max-width: 58ch;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-accent);
  border: 1.5px solid rgba(249, 245, 238, 0.55);
}
.btn-ghost:hover {
  background: rgba(249, 245, 238, 0.12);
  border-color: rgba(249, 245, 238, 0.85);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 8vh, 96px);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 20, 10, 0.42) 0%,
    rgba(28, 20, 10, 0.18) 38%,
    rgba(28, 20, 10, 0.68) 80%,
    rgba(20, 14, 6, 0.88) 100%
  );
  z-index: 1;
}

.hero .container { position: relative; z-index: 2; }

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 24s infinite;
  transform: scale(1.04);
  animation-timing-function: ease-in-out;
}
.hero-slide:nth-child(1) { animation-delay: 0s;   opacity: 1; }
.hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slide:nth-child(3) { animation-delay: 16s; }

@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.04); }
  8%   { opacity: 1; transform: scale(1.08); }
  33%  { opacity: 1; transform: scale(1.10); }
  41%  { opacity: 0; transform: scale(1.10); }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .hero-slide:nth-child(1) { opacity: 1; transform: scale(1); }
  .hero-slide:nth-child(2),
  .hero-slide:nth-child(3) { opacity: 0; }
}

.hero-eyebrow { color: var(--accent-stars); }

.hero h1 {
  color: var(--text-on-accent);
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.hero .lead {
  color: rgba(249, 245, 238, 0.88);
  margin-bottom: 2rem;
  max-width: 48ch;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Final CTA hero variant */
.hero-final {
  background-size: cover;
  background-position: center;
  min-height: 480px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 0;
}
.hero-final .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hero-final h2 {
  color: var(--text-on-accent);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-style: italic;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
  max-width: 22ch;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 1.25rem 0;
  overflow: hidden;
  /* iOS Safari: transform creates a compositing layer that properly clips overflow */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  isolation: isolate;
}

.trust-marquee {
  position: relative;
  overflow: hidden;
  /* iOS Safari fallback clip when overflow:hidden is ignored on transformed children */
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trustScroll 60s linear infinite;
  will-change: transform;
}
.trust-track:hover { animation-play-state: paused; }

@keyframes trustScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; overflow-x: auto; }
  .trust-marquee { mask-image: none; -webkit-mask-image: none; }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2.5rem;
  white-space: nowrap;
}
.trust-item + .trust-item::before {
  content: '·';
  opacity: 0.3;
  margin-right: -1.25rem;
}

.trust-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.trust-text strong {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.trust-text span {
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* ============================================================
   STORY
   ============================================================ */
.story {
  background: var(--bg);
  padding-block: var(--section-y);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-copy .eyebrow { margin-bottom: 0.5rem; }
.story-copy h2 {
  font-style: italic;
  margin-bottom: 1.5rem;
}
.story-copy p {
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.story-copy p:last-of-type { margin-bottom: 0; }

.story-signature {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent) !important;
  margin-top: 1.5rem !important;
  font-size: 1.05rem;
}

.story-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-image { order: -1; }
  .story-image img { aspect-ratio: 4/3; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--bg-soft);
  padding-block: var(--section-y);
}

.gallery h2 { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 400px;
  grid-auto-flow: dense;
  gap: 0.5rem;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.gallery-item {
  display: block;
  overflow: hidden;
  background: var(--accent-soft);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-wide  { grid-column: span 2; }
.gallery-item-tall  { grid-row: span 2; }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }
}
@media (max-width: 480px) {
  .gallery-grid { grid-auto-rows: 160px; gap: 0.25rem; }
  /* Disable spanning on small phones — plain 2-col uniform grid */
  .gallery-item-wide { grid-column: span 1; }
  .gallery-item-tall { grid-row: span 1; }
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities {
  background: var(--bg);
  padding-block: var(--section-y);
}

.amenities h2 { margin-bottom: clamp(2rem, 4vw, 3rem); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.1rem 1rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.9rem;
  color: var(--text-soft);
}
.amenity:nth-child(-n+4) { border-top: none; }

.amenity-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

@media (max-width: 900px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .amenity:nth-child(-n+4) { border-top: 1px solid var(--hairline); }
  .amenity:nth-child(-n+3) { border-top: none; }
}
@media (max-width: 580px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity:nth-child(-n+3) { border-top: 1px solid var(--hairline); }
  .amenity:nth-child(-n+2) { border-top: none; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--bg-soft);
  padding-block: var(--section-y);
}
.reviews .container { margin-bottom: 3rem; }
.reviews h2 { margin-bottom: 0; }

.reviews-marquee {
  overflow: hidden;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  isolation: isolate;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.5rem 1.25rem 1rem;
  animation: reviewsScroll 50s linear infinite;
  will-change: transform;
}
.reviews-track:hover { animation-play-state: paused; }

@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; overflow-x: auto; }
  .reviews-marquee { mask-image: none; -webkit-mask-image: none; }
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  width: 360px;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.review-stars {
  color: var(--accent-stars);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.review-meta {
  font-size: 0.75rem;
  color: var(--text-soft);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--bg);
  padding-block: var(--section-y);
}
.location h2 { margin-bottom: 0.75rem; }
.location .lead { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.map-frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--hairline);
  margin-bottom: 2.5rem;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 480px;
  filter: saturate(0.9) contrast(0.97);
}
@media (max-width: 600px) { .map-frame iframe { height: 300px; } }

.map-open {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.map-open:hover { background: var(--accent-hover); transform: translateY(-1px); }

.location-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.location-highlights li {
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--hairline);
}
.location-highlights strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.location-highlights span {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.location-highlights em {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-soft);
}
@media (max-width: 700px) {
  .location-highlights { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--bg-soft);
  padding-block: var(--section-y);
  text-align: center;
}
.pricing h2 { margin-bottom: 0.75rem; }
.pricing .lead { margin-inline: auto; margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 2rem;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: box-shadow 0.25s var(--ease);
}
.price-card:hover { box-shadow: var(--shadow-card); }

.price-card-featured {
  border-color: var(--accent-soft);
  transform: translateY(-12px);
  box-shadow: var(--shadow-card);
  position: relative;
}

.price-flag {
  display: inline-block;
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.price-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 0.25rem;
}
.price-num {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--text);
}
.price-currency {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--text-soft);
  padding-top: 0.5rem;
}

.price-unit {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.price-period {
  margin-bottom: 1.25rem;
}
.price-period span {
  display: inline-block;
  font-size: 0.75rem;
  font-variant: small-caps;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  padding: 0.2rem 0.75rem;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.price-notes {
  text-align: left;
  list-style: none;
}
.price-notes li {
  font-size: 0.82rem;
  color: var(--text-soft);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--hairline);
  font-style: italic;
}
.price-notes li:last-child { border-bottom: none; }
.price-notes li::before { content: '· '; }

.price-disclaimer {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  font-style: italic;
}

@media (max-width: 800px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .price-card-featured { transform: none; }
}

/* ============================================================
   AVAILABILITY + INQUIRY
   ============================================================ */
.availability {
  background: var(--bg);
  padding-block: var(--section-y);
}
.availability h2 { margin-bottom: 0.75rem; }
.availability .lead { margin-bottom: clamp(2rem, 4vw, 3rem); }

.booking-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 860px) {
  .booking-card { grid-template-columns: 1fr; }
}

/* Calendar */
.cal-status {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
  min-height: 1.2em;
}
.cal-status.error { color: #c0392b; }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-month {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
}
.cal-nav {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s;
}
.cal-nav:hover { background: var(--accent-soft); color: var(--accent); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  color: var(--text);
  position: relative;
  user-select: none;
}

.cal-day.is-empty,
.cal-day.is-past { opacity: 0.3; cursor: default; pointer-events: none; }
.cal-day.is-booked { background: var(--hairline); color: var(--text-soft); cursor: not-allowed; text-decoration: line-through; }
.cal-day.is-today { font-weight: 600; color: var(--accent); }
.cal-day.is-endpoint {
  background: var(--accent);
  color: var(--text-on-accent);
  font-weight: 500;
}
.cal-day.is-range { background: var(--accent-soft); color: var(--accent-hover); }
.cal-day:not(.is-booked):not(.is-past):not(.is-empty):hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cal-legend {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-soft);
}
.legend-key {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.legend-free   { background: var(--bg); border: 1px solid var(--hairline); }
.legend-booked { background: var(--hairline); }
.legend-selected { background: var(--accent); }

/* Inquiry form */
.inquiry { display: flex; flex-direction: column; gap: 0; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-name  { grid-column: 1; }
.field-email { grid-column: 2; }
.field-full  { grid-column: 1 / -1; }

.field label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.field-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.7rem;
  color: var(--accent-muted);
}

.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(107, 140, 106, 0.15);
}
.field textarea { resize: vertical; min-height: 80px; }
.field input[readonly] { cursor: pointer; }
.field input::placeholder,
.field textarea::placeholder { color: var(--accent-muted); }

.btn-submit { align-self: flex-start; margin-top: 0.25rem; }

.form-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  min-height: 1.4em;
}
.form-status.error   { color: #c0392b; }
.form-status.success { color: var(--accent); }

/* Booking success state */
.booking-success {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1rem;
  gap: 1rem;
}
.booking-success-icon { color: var(--accent); }
.booking-success-title {
  font-family: var(--display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--text);
}
.booking-success-lead { color: var(--text-soft); max-width: 40ch; }
.booking-success-meta { font-size: 0.82rem; color: var(--accent); }

@media (max-width: 580px) {
  .form-grid { grid-template-columns: 1fr; }
  .field-name, .field-email { grid-column: 1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg-soft);
  padding-block: var(--section-y);
}
.faq h2 { margin-bottom: clamp(2rem, 4vw, 3rem); }

.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item:first-child { border-top: 1px solid var(--hairline); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '›';
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.24s var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(90deg); }

.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  padding-block: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-property {
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.footer-address {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-host-line {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-contact a {
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-contact a:hover { color: var(--accent-hover); }

.footer-legal {
  text-align: right;
}
.footer-legal p {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.8;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 96px; /* above sticky CTA on mobile */
  right: 1.25rem;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(0.85); opacity: 0.5; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab::before { animation: none; }
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--text);
  color: var(--text-on-accent);
  font-size: 0.75rem;
  font-family: var(--sans);
  white-space: nowrap;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-fab:hover .whatsapp-fab-tooltip { opacity: 1; }

@media (min-width: 769px) {
  .whatsapp-fab { bottom: 1.5rem; }
}
@media (hover: none) {
  .whatsapp-fab-tooltip { display: none; }
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  box-shadow: 0 -4px 20px rgba(44, 36, 22, 0.08);
  padding: 0.75rem var(--gutter);
}
@media (max-width: 768px) { .sticky-cta { display: block; } }

.sticky-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container);
  margin-inline: auto;
}

.sticky-cta-info strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
}
.sticky-cta-info {
  font-size: 0.75rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.sticky-cta .btn { padding: 0.65rem 1.4rem; font-size: 0.85rem; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(28, 20, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: lbIn 0.2s ease;
}
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
  box-shadow: var(--shadow-card);
}

.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(249, 245, 238, 0.7);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: var(--text-on-accent); }

/* ============================================================
   THEME OVERRIDES
   ============================================================ */
.hero h1 { letter-spacing: -0.01em; }
.story h2 { letter-spacing: -0.01em; }

/* Visually hidden utility (honeypot) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
