/* =====================================================================
   MUSEUM COZY APARTMENT — Site Styles v1.0
   ---------------------------------------------------------------------
   Museum-exhibit aesthetic — port from the v3 React prototype.
   Sharp corners (no border radius), asymmetric grids, numbered sections,
   plate captions, Mediterranean palette (aegean + terracotta + cream).
   Fonts: Archivo (sans) + DM Serif Display (serif) + JetBrains Mono (mono).
   ===================================================================== */

:root {
  /* Mediterranean palette */
  --aegean: #1d5b78;
  --aegean-deep: #0f3a4f;
  --aegean-soft: #5e94ab;
  --terracotta: #c5704b;
  --terracotta-soft: #e3a787;
  --olive: #7a7d3a;
  --sand: #e8dcc4;
  --sand-deep: #d4c19a;
  --cream: #faf6ee;
  --stone: #8a8378;
  --ink: #2a2622;

  /* Surface tokens */
  --background: #faf6ee;
  --foreground: #2a2622;
  --card: #ffffff;
  --border: #e0d6c0;
  --muted: #f0e9d8;
  --muted-foreground: #6b6256;

  /* Typography */
  --font-sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "DM Serif Display", Georgia, serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Layout */
  --maxw: 1400px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}
::selection { background: var(--terracotta); color: var(--cream); }

/* ---------- helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.container.narrow { max-width: 860px; }

.section {
  padding: clamp(72px, 9vw, 140px) 0;
}

.label-meta {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--stone);
}
.label-meta.aegean { color: var(--aegean); }

.section-num {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--terracotta);
}

.plate-caption {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Section eyebrow — number + line + label */
.eyebrow {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 64px;
}
.eyebrow.center {
  justify-content: center;
}
.eyebrow .section-num { font-size: 0.875rem; }
.eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--terracotta);
}

/* Big display headline */
.display {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.02;
  color: var(--ink);
  margin: 0;
}
.display em {
  font-style: italic;
  color: var(--aegean);
}
.display-sm {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  line-height: 1.15;
}
.lede {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  max-width: 56ch;
  margin: 1rem 0 0;
  line-height: 1.65;
}
.lede.center {
  margin-inline: auto;
  text-align: center;
}
.muted { color: var(--muted-foreground); }

/* Link underline animation */
.link-underline {
  position: relative;
  display: inline-block;
  color: var(--aegean);
  font-weight: 500;
  font-size: 0.875rem;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 24px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--foreground);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  border-radius: 0; /* sharp corners — museum aesthetic */
}
.btn-sm { padding: 10px 20px; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-soft);
  border-color: var(--terracotta-soft);
}
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--foreground);
}
.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: all 0.5s var(--ease);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(250, 246, 238, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--maxw);
  margin-inline: auto;
  /* Keep the logo clear of the iPhone notch / status bar (viewport-fit=cover).
     env() is 0 on non-notched devices, so desktop is unaffected. */
  padding: env(safe-area-inset-top, 0px)
           max(var(--gutter), env(safe-area-inset-right, 0px))
           0
           max(var(--gutter), env(safe-area-inset-left, 0px));
}
.site-header.scrolled .header-inner { height: 80px; }

/* Brand — single logo image (icon + wordmark in one SVG) */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;  /* controls currentColor inside the logo (text part) */
  transition: color 0.4s var(--ease);
}
.site-header.scrolled .brand { color: var(--foreground); }
.brand-mark {
  display: block;
  /* Icon-only aqueduct mark; explicit width so the inline SVG can't expand and push the wordmark */
  height: 46px;
  width: 58px;
  fill: currentColor;
  flex: none;
}
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: currentColor;
}
.brand-word em {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .brand-mark { height: 40px; }
  .brand-word { font-size: 1.15rem; }
}
@media (max-width: 480px) {
  .brand-mark { height: 36px; }
  .brand-word em { letter-spacing: 0.26em; }
}

/* Desktop nav — clean labels, no numbers */
.primary-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) { .primary-nav { display: flex; } }
.primary-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s var(--ease);
}
.site-header.scrolled .primary-nav a { color: rgba(42, 38, 34, 0.6); }
.primary-nav a:hover,
.site-header.scrolled .primary-nav a:hover { color: inherit; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta .btn-outline {
  display: none;
}
@media (min-width: 1024px) { .header-cta .btn-outline { display: inline-flex; } }
.header-cta .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.header-cta .btn-outline:hover {
  background: #fff;
  color: var(--foreground);
}
.site-header.scrolled .header-cta .btn-outline {
  color: var(--foreground);
  border-color: var(--foreground);
}
.site-header.scrolled .header-cta .btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
}

/* Mobile toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s var(--ease);
}
.site-header.scrolled .nav-toggle span { background: var(--foreground); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
  background: var(--background);
  border-top: 1px solid var(--border);
}
.mobile-drawer.open {
  max-height: 80vh;
}
.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  padding: 16px var(--gutter);
}
.mobile-drawer a {
  display: block;
  padding: 12px 8px;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(224, 214, 192, 0.6);
}
.mobile-drawer a:last-of-type { border-bottom: 0; }

/* =====================================================================
   HERO — Ken Burns + asymmetric right-aligned content
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  transform: scale(1.05);
  animation: ken-burns 22s ease-in-out infinite;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 58, 79, 0.55) 0%,
    rgba(15, 58, 79, 0.25) 50%,
    rgba(15, 58, 79, 0.75) 100%
  );
  z-index: 2;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.4'/%3E%3C/svg%3E");
}
@keyframes ken-burns {
  0%   { transform: scale(1.05) translate(0%, 0%); }
  50%  { transform: scale(1.15) translate(-2%, -1%); }
  100% { transform: scale(1.05) translate(0%, 0%); }
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  right: var(--gutter);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.3s var(--ease);
}
.hero-dot.is-active {
  background: var(--terracotta-soft);
  width: 24px;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 112px var(--gutter) 96px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Top: location chip */
.hero-top {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-line {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.hero-top .label-meta { color: rgba(255, 255, 255, 0.9); }

/* Middle: big asymmetric type — pushed right */
.hero-middle {
  margin-left: auto;
  max-width: 768px;
  text-align: right;
}
@media (min-width: 1024px) { .hero-middle { max-width: 960px; } }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.95;
  color: #fff;
  margin: 0;
}
.hero-title span { display: block; }
.hero-title-line2 {
  font-style: italic;
  color: var(--terracotta-soft);
}
.hero-sub {
  margin: 32px 0 0 auto;
  max-width: 28rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

/* Bottom: minimal quick facts — single line, centered */
.hero-quickfacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  margin: 0 auto;
  max-width: 100%;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
.qf-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}
.qf-item dt { color: rgba(255, 255, 255, 0.55); }
.qf-item dd { margin: 0; color: #fff; font-weight: 500; }
.qf-sep { color: rgba(255, 255, 255, 0.3); }

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  animation: float-y 2s ease-in-out infinite;
}
@media (min-width: 768px) { .hero-scroll { display: flex; } }
.scroll-line {
  display: block;
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.5);
}
.scroll-word {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@keyframes float-y {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ---------- Mobile: centre the hero (the right-aligned asymmetry is a
   desktop-only treatment; on phones it reads cramped against the edge) ---------- */
@media (max-width: 768px) {
  .hero-content { padding-top: calc(108px + env(safe-area-inset-top, 0px)); padding-bottom: 84px; }
  .hero-top { justify-content: center; }
  .hero-middle { margin: 0 auto; max-width: 100%; text-align: center; }
  .hero-title { font-size: clamp(2.25rem, 9vw, 3.4rem); }
  .hero-sub { margin: 24px auto 0; max-width: 34rem; }
  .hero-actions { justify-content: center; }
  .hero-quickfacts { gap: 10px 18px; }
  .eyebrow { margin-bottom: 40px; }
}

/* =====================================================================
   STAY / WELCOME — asymmetric grid
   ===================================================================== */
.stay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .stay-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }
  .stay-headline { grid-column: span 7; }
  .stay-blurb { grid-column: span 5; margin-top: 64px; }
}
.stay-headline .display {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
}
.stay-headline .display span { display: block; }
.stay-headline .display em {
  font-style: italic;
  color: var(--aegean);
}
.stay-blurb p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  margin: 0 0 32px;
}
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--card);
}
.rating-chip .stars { color: var(--terracotta); font-size: 0.875rem; }
.rating-chip .rating-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
}
.rating-chip .rating-meta { color: var(--stone); }

/* Second grid: photo + host */
.stay-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .stay-grid-2 {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }
  .stay-photo { grid-column: span 8; }
  .stay-host { grid-column: span 4; margin-top: 64px; }
}
.stay-photo {
  margin: 0;
}
.stay-photo .photo-wrap {
  aspect-ratio: 16/11;
  overflow: hidden;
}
.stay-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stay-photo .plate-caption {
  margin-top: 12px;
}
.stay-host .host-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 12px 0 4px;
}
.stay-host .host-meta {
  font-size: 0.875rem;
  color: var(--stone);
  margin: 0 0 20px;
}
.stay-host .host-bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0 0 20px;
}
.signature {
  margin: 0;
  font-family: var(--font-serif);
}
.sig-name {
  font-style: italic;
  color: var(--ink);
}

/* =====================================================================
   GALLERY — asymmetric mosaic
   ===================================================================== */
.gallery {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(232, 220, 196, 0.4);
}
/* Masonry — fills columns top-down, no holes, any photo orientation, no manual cropping */
.gallery-grid {
  margin-top: 64px;
  columns: 2;
  column-gap: 12px;
}
@media (min-width: 768px) {
  .gallery-grid { columns: 3; column-gap: 16px; }
}
.g-tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--muted);
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .g-tile { margin-bottom: 16px; }
}
.g-tile img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease);
}
.g-tile:hover img { transform: scale(1.05); }

/* Tile overlay on hover */
.g-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 38, 34, 0.5), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.g-tile:hover::after { opacity: 1; }

.g-tile .tile-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  color: #fff;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  z-index: 2;
}
.g-tile:hover .tile-caption {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   AMENITIES — expandable catalog (accordion), not grid of cards
   ===================================================================== */
.amenity-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .amenity-head {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }
  .amenity-head .display { grid-column: span 8; }
  .amenity-head .lede { grid-column: span 4; margin-top: 16px; }
}

.amenity-cols {
  border-top: 1px solid var(--border);
}
.amenity-block {
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.amenity-block summary {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s var(--ease);
}
.amenity-block summary::-webkit-details-marker { display: none; }
.amenity-block summary:hover { color: var(--aegean); }
.amenity-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  flex: 1;
}
.amenity-toggle {
  font-size: 1.5rem;
  color: var(--stone);
  width: 32px;
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.amenity-block[open] .amenity-toggle { transform: rotate(45deg); }
.amenity-block ul {
  list-style: none;
  padding: 0 0 32px 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) {
  .amenity-block ul { grid-template-columns: 1fr 1fr; gap: 12px 48px; }
}
@media (min-width: 1024px) {
  .amenity-block ul { grid-template-columns: 1fr 1fr 1fr; }
}
.amenity-block li {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  position: relative;
  padding-left: 16px;
}
.amenity-block li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta);
}

/* =====================================================================
   LOCATION — asymmetric grid: copy left, map right (offset)
   ===================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }
  .location-copy { grid-column: span 5; }
  .location-map { grid-column: span 7; }
}
.location-copy .display {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.location-copy .display em { font-style: italic; color: var(--aegean); }
.location-copy .lede { margin-top: 0; }
.location-address {
  margin: 32px 0 16px;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.location-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.location-map {
  margin: 0;
}
.location-map .map-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .location-map .map-wrap { aspect-ratio: 16/11; }
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3);
}
.location-map .plate-caption { margin-top: 12px; }

/* Location highlights — numbered list */
.location-points {
  list-style: none;
  margin: 80px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .location-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 48px;
  }
}
.poi-group {
  margin: 0;
}
.poi-group h4 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.poi-group .poi {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.poi li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9375rem;
}
.poi strong { font-weight: 500; }
.poi a { color: var(--foreground); transition: color 0.2s; }
.poi a:hover { color: var(--aegean); }
.poi em {
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--stone);
}

/* =====================================================================
   REVIEWS — big number + pull-quote grid
   ===================================================================== */
.reviews-headline {
  text-align: center;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.reviews-headline .big-rating {
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
}
.reviews-headline .stars { color: var(--terracotta); }
.reviews-headline .rating-sub { color: var(--terracotta); }
.reviews-headline .display-sub {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 1rem;
  color: var(--stone);
  letter-spacing: 0;
}

.ratings-bars {
  margin: 48px auto;
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
@media (min-width: 768px) {
  .ratings-bars { grid-template-columns: repeat(3, 1fr); }
}
.ratings-bars > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  font-size: 0.875rem;
  align-items: center;
}
.ratings-bars > div > span { color: var(--muted-foreground); }
.ratings-bars > div > strong { font-weight: 600; text-align: right; }
.ratings-bars .bar {
  grid-column: 1 / -1;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.ratings-bars .bar i {
  display: block;
  height: 100%;
  background: var(--terracotta);
}

.review-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .review-grid { grid-template-columns: 1fr 1fr; }
}
.review-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
}
.review-card .stars { color: var(--terracotta); font-size: 0.875rem; margin-bottom: 16px; }
.review-card blockquote {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--ink);
}
.review-card footer { font-size: 0.8125rem; color: var(--stone); }
.review-card footer strong { color: var(--foreground); font-weight: 500; }

.review-note {
  margin-top: 48px;
  text-align: center;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--stone);
}

/* =====================================================================
   BOOKING — asymmetric grid: copy left, form right
   ===================================================================== */
.book-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .book-wrap {
    grid-template-columns: repeat(12, 1fr);
    gap: 64px;
  }
  .book-copy { grid-column: span 5; }
  .book-form { grid-column: span 7; }
}
.book-copy .display {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
}
.book-copy .display em { font-style: italic; color: var(--aegean); }

.benefit-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-list li {
  display: flex;
  gap: 16px;
  font-size: 0.9375rem;
  align-items: baseline;
}
.benefit-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--terracotta);
  width: 24px;
  flex-shrink: 0;
}

.book-form {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px 32px;
}
@media (min-width: 640px) { .book-form { padding: 48px 40px; } }
.book-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 0 0 24px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}
.book-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}
.book-form label.full { grid-column: 1 / -1; }
.book-form label span em { font-style: normal; color: var(--stone); font-weight: 400; }
.book-form input,
.book-form select,
.book-form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s var(--ease);
  width: 100%;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  border-color: var(--aegean);
}
.book-form textarea { resize: vertical; min-height: 80px; }

/* Custom select arrow — native arrows clip text on some browsers */
.book-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Extra right padding for the custom arrow */
  padding-right: 40px;
  /* Custom arrow as background image (inline SVG, currentColor → ink) */
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%232a2622' stroke-width='1.5'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  cursor: pointer;
}
/* Make sure the Flatpickr alt input also looks right (it's an <input> that replaces the native date input) */
.book-form input.flatpickr-input {
  background-image: none;
  padding-right: 14px;
}
.book-form .btn-primary {
  margin-top: 8px;
  background: var(--aegean);
  border-color: var(--aegean);
  color: var(--cream);
}
.book-form .btn-primary:hover {
  background: var(--aegean-deep);
  border-color: var(--aegean-deep);
}
.form-note {
  margin: 12px 0 0;
  font-size: 0.8125rem;
  color: var(--stone);
  line-height: 1.5;
}
.form-note a { color: var(--aegean); text-decoration: underline; }
.form-success,
.form-error {
  margin: 16px 0 0;
  padding: 16px;
  font-size: 0.9375rem;
  border: 1px solid;
}
.form-success {
  color: var(--aegean);
  border-color: var(--aegean);
  background: rgba(29, 91, 120, 0.05);
}
.form-error {
  color: var(--terracotta);
  border-color: var(--terracotta);
  background: rgba(197, 112, 75, 0.05);
}

/* =====================================================================
   FAQ — minimal accordion
   ===================================================================== */
.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--border);
}
.faq-list details {
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.faq-list summary {
  display: block;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--aegean); }
.faq-list p {
  margin: 0 0 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* =====================================================================
   FOOTER — dark aegean-deep, museum signage style
   ===================================================================== */
.site-footer {
  background: var(--aegean-deep);
  color: rgba(245, 239, 226, 0.85);
  padding: 64px 0 calc(32px + env(safe-area-inset-bottom, 0px));
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}
.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* Logo text uses currentColor — match the footer's light text color */
  color: #f5efe2;
}
.foot-mark {
  display: block;
  /* Icon-only aqueduct mark; explicit width so the inline SVG sits left, not floated right */
  height: 58px;
  width: 73px;
  fill: currentColor;
}
.foot-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  color: #f5efe2;
}
.foot-word em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .foot-mark { height: 48px; }
}
.foot-tag {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.4;
  color: #f5efe2;
  margin: 0;
  letter-spacing: 0.02em;
}
.footer-grid h5 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta-soft);
  margin: 0 0 20px;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
}
.footer-grid a {
  color: rgba(245, 239, 226, 0.7);
  transition: color 0.2s;
}
.footer-grid a:hover { color: #f5efe2; }
.foot-bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 226, 0.15);
  font-size: 0.75rem;
  color: rgba(245, 239, 226, 0.55);
}
@media (min-width: 640px) {
  .foot-bar { flex-direction: row; align-items: center; }
}
.foot-bar a { color: inherit; }
.foot-bar a:hover { color: #f5efe2; }

/* =====================================================================
   LIGHTBOX
   ===================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(42, 38, 34, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lb-figure {
  margin: 0;
  max-width: 1000px;
  max-height: 88vh;
}
.lb-figure img {
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}
.lb-figure figcaption {
  margin-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.lb-btn {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-btn:hover { background: rgba(255, 255, 255, 0.2); }
.lb-close { top: 16px; right: 16px; }
.lb-prev { left: 8px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.5rem; }
.lb-next { right: 8px; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; font-size: 1.5rem; }
@media (min-width: 768px) {
  .lb-prev { left: 24px; }
  .lb-next { right: 24px; }
}

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   FLATPICKR THEME OVERRIDE — match museum aesthetic
   ===================================================================== */
.flatpickr-calendar {
  border-radius: 0 !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 8px 32px rgba(42, 38, 34, 0.12) !important;
  font-family: var(--font-sans) !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange {
  background: var(--terracotta) !important;
  border-color: var(--terracotta) !important;
}
.flatpickr-day.inRange {
  background: rgba(197, 112, 75, 0.15) !important;
  border-color: rgba(197, 112, 75, 0.15) !important;
}
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: var(--stone) !important;
  background: rgba(138, 131, 120, 0.1) !important;
  text-decoration: line-through;
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-weekday {
  color: var(--ink) !important;
  fill: var(--ink) !important;
}
.flatpickr-current-month input.cur-year {
  color: var(--ink) !important;
}

/* =====================================================================
   Respect the user's reduced-motion preference (common on phones).
   Stops the always-on Ken Burns zoom, float cue and scroll reveals.
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide { transform: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* =====================================================================
   PRINT
   ===================================================================== */
@media print {
  .site-header, .hero-scroll, .lightbox, .hero-dots,
  .nav-toggle, .mobile-drawer { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 24px 0; }
}
