/* ==========================================================================
   Mizuki Retreat — site stylesheet
   Design system: "Organic" — cream ground, forest-green accent, sage second
   accent, Caprasimo display headings over Figtree, pill controls, soft radii.
   Full-bleed banner heroes, scroll-reveal animations, fixed header that
   turns solid on scroll. Every color/spacing/radius comes from the tokens.
   ========================================================================== */

/* ---------- Tokens ---------- */
/* Brand: #132a13 deep forest green + #ffffff white.
   Genty Sans (headings) + Quicksand Light (body). Genty Sans is licensed,
   not on Google Fonts — see the @font-face note below; Baloo 2 stands in
   until the font file is added to assets/fonts/. */
:root {
  --color-bg: #faf4e8;
  --color-surface: #efe3cd;
  --color-brand: #132a13;
  --color-text: #132a13;
  --color-divider: color-mix(in srgb, #132a13 18%, transparent);

  /* Forest green — matched to the Mizuki Retreat logo */
  --color-accent: #4a7c55;
  --color-accent-100: #e4eee4;
  --color-accent-200: #cadfcc;
  --color-accent-300: #a8c9ac;
  --color-accent-400: #79a681;
  --color-accent-500: #4a7c55;
  --color-accent-600: #3d6a47;
  --color-accent-700: #30553a;
  --color-accent-800: #24422c;
  --color-accent-900: #132a13;

  /* Sage second accent */
  --color-accent-2: #7a8a5e;
  --color-accent-2-100: #f0fae1;
  --color-accent-2-200: #e1eecc;
  --color-accent-2-300: #ccdbb2;
  --color-accent-2-400: #aebf92;
  --color-accent-2-500: #8fa073;
  --color-accent-2-600: #728157;
  --color-accent-2-700: #56633f;
  --color-accent-2-800: #3d472b;
  --color-accent-2-900: #272e1b;

  --color-neutral-100: #f9f4ed;
  --color-neutral-800: #474238;
  --color-neutral-900: #2e2b25;

  --font-heading: "Genty Sans", "Genty", "Baloo 2", "Georgia", serif;
  --font-heading-weight: 600;
  --font-body: "Quicksand", system-ui, sans-serif;

  --space-1: 4px;
  --space-2: 9px;
  --space-3: 13px;
  --space-4: 18px;
  --space-6: 26px;
  --space-8: 35px;

  --radius-md: 16px;
  --radius-lg: 32px;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2e2b25 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2e2b25 16%, transparent);
  --shadow-lg: 0 12px 32px color-mix(in srgb, #2e2b25 22%, transparent);

  --gutter: clamp(20px, 5vw, 72px);
  --content-width: 1200px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* When the Genty Sans font file arrives, drop it in assets/fonts/ and
   uncomment — every heading switches over automatically:
@font-face {
  font-family: "Genty Sans";
  src: url("../fonts/GentySans.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
*/

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.65;
  text-wrap: pretty;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
}

p { margin: 0; }
img { display: block; max-width: 100%; }
a { color: var(--color-accent-700); text-underline-offset: 3px; }
a:hover { color: var(--color-accent-800); }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

/* Photos render at full colour — the old "washed" treatment made them dull */
.washed { filter: none; }

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 14.5px;
  line-height: 1.2;
  color: var(--color-text);
  background: transparent;
  border: 1px solid transparent;
  padding: 11px 22px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--color-brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--color-accent-800); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:active { background: var(--color-brand); }
.btn-secondary { border-color: var(--color-divider); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); color: var(--color-text); }
.btn-secondary:active { background: color-mix(in srgb, var(--color-text) 14%, transparent); }
.btn-ghost { color: var(--color-accent-700); padding-inline: 12px; }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-accent) 10%, transparent); }
.btn-ghost:active { background: color-mix(in srgb, var(--color-accent) 18%, transparent); }
/* Light variants for use on dark banner imagery */
.btn-light { border-color: rgb(255 255 255 / 0.55); color: #fff; }
.btn-light:hover { background: rgb(255 255 255 / 0.14); color: #fff; border-color: rgb(255 255 255 / 0.8); }
.btn-light:active { background: rgb(255 255 255 / 0.22); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ---------- Tags ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border-radius: 999px;
}
.tag-accent { background: var(--color-accent-100); color: var(--color-accent-800); }
.tag-accent-2 { background: var(--color-accent-2-100); color: var(--color-accent-2-800); }
.tag-neutral { background: var(--color-neutral-100); color: var(--color-neutral-800); }
.tag-outline { border: 1px solid var(--color-accent-600); color: var(--color-accent-700); }
/* Tags over banner imagery */
.tag-light { border: 1px solid rgb(255 255 255 / 0.5); color: #fff; background: rgb(255 255 255 / 0.12); backdrop-filter: blur(4px); }

.tag-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

/* ---------- Header / navigation ----------
   Fixed over the banner: transparent with white text at the top of the page,
   cream + blur once scrolled (or when the mobile menu is open). */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(to bottom, rgb(15 22 14 / 0.45), transparent);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-bg) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--space-3) var(--gutter);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
  color: inherit;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 18px;
}
.nav-brand:hover { color: inherit; }
.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: rgb(255 255 255 / 0.92);
  border-radius: 50%;
  padding: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav-links a {
  text-decoration: none;
  color: inherit;
  font-size: 14.5px;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { opacity: 0.75; }
.nav-links a[aria-current="page"] {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  text-decoration-color: var(--color-accent-400);
}
.site-header.is-scrolled .nav-links a:hover { opacity: 1; color: var(--color-accent-700); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  color: inherit;
  border: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  border-radius: 999px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--color-bg);
    border-radius: 24px;
    padding: 14px 18px;
    margin-block: 4px 10px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { color: var(--color-text); padding: 10px 6px; font-size: 16px; }
  .nav-links .btn { margin-top: var(--space-2); color: #fff; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (min-width: 901px) {
  .nav-links .btn-primary { display: none; } /* desktop uses the separate .nav-cta */
}

/* ---------- Banner heroes ---------- */
.banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(380px, 56vh, 560px);
  overflow: hidden;
  isolation: isolate;
}
.banner-tall { min-height: clamp(540px, 92svh, 860px); }

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  animation: kenburns 24s var(--ease-out) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09) translateY(-1.5%); }
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgb(20 28 18 / 0.38),
    rgb(20 28 18 / 0.14) 42%,
    rgb(16 24 14 / 0.68)
  );
}

.banner-content {
  position: relative;
  width: 100%;
  color: #fff;
  padding-block: 120px 64px;
}
.banner-tall .banner-content { padding-bottom: 88px; }

.banner-kicker {
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(255 255 255 / 0.85);
  margin-bottom: 18px;
}

.banner h1 {
  color: #fff;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.06;
  margin-left: -0.028em;
  max-width: 18ch;
  text-shadow: 0 2px 28px rgb(0 0 0 / 0.35);
}
.banner-tall h1 { font-size: clamp(44px, 6.2vw, 80px); }
.banner h1 span { display: block; }

.banner-lede {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  max-width: 58ch;
  margin-top: 22px;
  color: rgb(255 255 255 / 0.92);
}
.banner .btn-row { margin-top: 30px; }
.banner .tag-list { margin-top: 24px; }

/* Load-in rise for banner content */
.banner-content > * { animation: rise 0.9s var(--ease-out) both; }
.banner-content > *:nth-child(2) { animation-delay: 0.12s; }
.banner-content > *:nth-child(3) { animation-delay: 0.24s; }
.banner-content > *:nth-child(4) { animation-delay: 0.36s; }
.banner-content > *:nth-child(5) { animation-delay: 0.48s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  translate: -50% 0;
  width: 26px;
  height: 42px;
  border: 2px solid rgb(255 255 255 / 0.6);
  border-radius: 999px;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  translate: -50% 0;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.85);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(12px); opacity: 0; }
}
@media (max-width: 640px) { .scroll-cue { display: none; } }

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }
/* .reveal-group children are auto-tagged and staggered by main.js */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .banner-img { animation: none; }
  .banner-content > * { animation: none; }
  .scroll-cue::before { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Sections ---------- */
.section { padding-block: 56px; }
.section-tight { padding-block: 28px 56px; }

.kicker {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent-700);
  margin-bottom: 16px;
}

.section-title { font-size: 32px; line-height: 1.25; }

.lede {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  max-width: 56ch;
  margin-top: 28px;
}

.muted { color: color-mix(in srgb, var(--color-text) 78%, transparent); }
.muted-more { color: color-mix(in srgb, var(--color-text) 60%, transparent); }

.media-frame { border-radius: var(--radius-lg); overflow: hidden; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Split (image + copy) sections ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(260px, 5fr) minmax(300px, 7fr);
  gap: 48px;
  align-items: center;
}
.split-reverse { grid-template-columns: minmax(300px, 7fr) minmax(260px, 5fr); }
.split .media-frame img { height: 380px; transition: transform 0.7s var(--ease-out); }
.split .media-frame:hover img { transform: scale(1.04); }
.split .lede, .split p.muted { margin-top: 20px; max-width: 52ch; }
.split .tag-list { margin-top: 24px; }
.split .btn-row { margin-top: 28px; }

@media (max-width: 860px) {
  .split, .split-reverse { grid-template-columns: 1fr; gap: 28px; }
  .split .media-frame img { height: 300px; }
  .split-reverse .media-frame { order: -1; }
}

/* ---------- Circle stats (home) ---------- */
.circle-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  padding: 56px 0;
}
.stat-circle {
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 24px;
  transition: transform 0.4s var(--ease-out);
}
.stat-circle:hover { transform: scale(1.05); }
.stat-circle strong {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 44px;
}
.stat-circle small {
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
  margin-top: 10px;
  max-width: 15ch;
}
.stat-circle:nth-child(1) { width: 210px; height: 210px; background: var(--color-accent-100); }
.stat-circle:nth-child(1) strong { color: var(--color-accent-700); }
.stat-circle:nth-child(2) { width: 190px; height: 190px; background: var(--color-accent-2-100); margin-top: 28px; }
.stat-circle:nth-child(2) strong { color: var(--color-accent-2-700); }
.stat-circle:nth-child(3) { width: 230px; height: 230px; background: var(--color-accent-2-200); }
.stat-circle:nth-child(3) strong { color: var(--color-accent-2-800); font-size: 38px; }
.stat-circle:nth-child(3) small { max-width: 17ch; }
.stat-circle:nth-child(4) { width: 190px; height: 190px; background: var(--color-accent-200); margin-top: 28px; }
.stat-circle:nth-child(4) strong { color: var(--color-accent-700); font-size: 30px; }

@media (max-width: 640px) {
  .circle-stats { justify-content: center; }
  .stat-circle:nth-child(n) { margin-top: 0; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease-out);
}
a.card { text-decoration: none; color: var(--color-text); display: block; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
a.card:hover { color: var(--color-text); }
.card img { width: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.card:hover img { transform: scale(1.06); }
.card-content { padding: 22px 24px 26px; }
.card-content h3, .card-content h2 { font-size: 22px; }
.card-content p {
  font-size: 14.5px;
  line-height: 1.65;
  color: color-mix(in srgb, var(--color-text) 75%, transparent);
  margin-top: 10px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card-grid-wide { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid .card img { height: 170px; }
.card-grid-wide .card img { height: 220px; }
@media (max-width: 480px) {
  .card-grid, .card-grid-wide { grid-template-columns: 1fr; }
}

/* ---------- Feature list (about) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px 56px;
}
.feature-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-bottom: 14px;
}
.feature-dot-2 { background: var(--color-accent-2); }
.feature-grid h2 { font-size: 24px; }
.feature-grid p { margin-top: 12px; }

/* ---------- Hosts panel (about) ---------- */
.hosts-panel {
  background: var(--color-accent-100);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(280px, 1fr);
  gap: 40px;
  align-items: start;
}
.hosts-panel .portrait {
  width: min(240px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.hosts-panel .portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.hosts-panel .portrait:hover img { transform: scale(1.06); }
.hosts-panel h2 { font-size: 32px; }
.hosts-panel .quote {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 20px;
  color: var(--color-accent-800);
  margin-top: 26px;
}
@media (max-width: 700px) {
  .hosts-panel { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hosts-panel .tag-list { justify-content: center; }
}

/* ---------- Menu (restaurant) ---------- */
.menu-card { padding: 28px 30px; }
.menu-card h3 { font-size: 22px; color: var(--color-accent-800); margin-bottom: 18px; }
.menu-card dl { display: flex; flex-direction: column; gap: 14px; margin: 0; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  line-height: 1.5;
}
.menu-item dt { flex: 1; }
.menu-item dd { margin: 0; font-weight: 600; white-space: nowrap; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 18px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}
.gallery-grid figure.tall { grid-row: span 2; }
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.4s ease;
}
.gallery-grid figure:hover img { transform: scale(1.07); filter: brightness(1.06); }
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
}

/* ---------- Full-width image quote band (home) ---------- */
.image-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 8vw, 110px) clamp(24px, 5vw, 72px);
  color: #fff;
}
.image-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgb(16 24 14 / 0.72), rgb(16 24 14 / 0.35));
}
.image-band blockquote {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.4;
  max-width: 30ch;
  margin: 0;
  color: #fff;
}
.image-band figcaption {
  font-size: 15.5px;
  color: rgb(255 255 255 / 0.75);
  margin-top: 24px;
}

/* ---------- Info tiles (contact) ---------- */
.info-card { padding: 24px 28px; }
.info-card .kicker { margin-bottom: 8px; }
.info-card p { font-size: 15.5px; line-height: 1.7; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(300px, 7fr);
  gap: 32px;
  align-items: stretch;
}
.contact-layout .stack { display: flex; flex-direction: column; gap: 18px; }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .map-frame { min-height: 320px; }
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.tile {
  border-radius: 24px;
  padding: 26px 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile h3 { font-size: 20px; }
.tile p { font-size: 14.5px; line-height: 1.7; margin-top: 10px; }
.tile-accent { background: var(--color-accent-100); }
.tile-sage { background: var(--color-accent-2-100); }
.tile-sage-deep { background: var(--color-accent-2-200); }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px 48px;
  max-width: 1000px;
}
.faq-grid h3 { font-family: var(--font-body); font-size: 17px; font-weight: 600; }
.faq-grid p {
  font-size: 14.5px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--color-text) 75%, transparent);
  margin-top: 8px;
}

/* ---------- CTA panel ---------- */
.cta-panel {
  background: var(--color-accent-2-100);
  border-radius: var(--radius-lg);
  padding: 48px clamp(24px, 4vw, 64px);
}
.cta-panel-accent { background: var(--color-accent-100); }
.cta-panel h2, .cta-panel h3 { font-size: 26px; }
.cta-panel .lede { font-size: 15.5px; margin-top: 16px; max-width: 58ch; }
.cta-panel .btn-row { margin-top: 28px; }
.cta-panel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.cta-panel-row h2, .cta-panel-row h3 { max-width: 34ch; }
.cta-panel-row p { margin-top: 10px; }
.cta-panel-row .btn-row { margin-top: 0; }

/* ---------- Amenities ---------- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1080px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .amenity-grid { grid-template-columns: 1fr; } }
.amenity-card {
  border-radius: 24px;
  padding: 24px 24px 26px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.amenity-card:nth-child(4n+1) { background: var(--color-accent-100); }
.amenity-card:nth-child(4n+2) { background: var(--color-accent-2-100); }
.amenity-card:nth-child(4n+3) { background: var(--color-accent-2-200); }
.amenity-card:nth-child(4n+4) { background: var(--color-accent-200); }
.amenity-card h3 { font-size: 19px; }
.amenity-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14.5px;
  line-height: 1.55;
}
.amenity-card li { display: flex; gap: 10px; align-items: flex-start; }
.amenity-card li svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--color-accent-700);
}
/* Fallback checkmark if the icon library fails to load */
.amenity-card li:not(:has(svg))::before {
  content: "\2713";
  color: var(--color-accent-700);
  font-weight: 700;
  flex: none;
}

/* ---------- Guest reviews ---------- */
.rating-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.rating-chip svg { display: block; }

/* Horizontal snap carousel — with few reviews it sits still; add more
   and it scrolls sideways (swipe on touch, arrow buttons on desktop). */
.review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(328px, 85vw);
  gap: 24px;
  margin-top: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.review-grid::-webkit-scrollbar { display: none; }
.review-grid > * { scroll-snap-align: start; }

.scroller-nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.scroller-nav[hidden] { display: none; }
.scroller-btn {
  display: grid;
  place-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-divider);
  background: transparent;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, opacity 0.15s ease;
}
.scroller-btn:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.scroller-btn:disabled { opacity: 0.35; cursor: default; background: transparent; }
.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars {
  color: #e8a33d;
  font-size: 16px;
  letter-spacing: 3px;
}
.review-score {
  align-self: flex-start;
  background: #003580;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 8px 8px 8px 0;
  padding: 4px 10px;
}
.review-text { font-size: 15px; line-height: 1.7; flex: 1; margin: 0; }
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.review-name { font-weight: 600; font-size: 14px; }
.review-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: color-mix(in srgb, var(--color-text) 62%, transparent);
}
.review-source svg { display: block; }
.badge-booking {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: #003580;
  color: #fff;
  display: grid;
  place-content: center;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
}

/* ---------- Gallery lightbox ---------- */
.gallery-grid figure { cursor: zoom-in; }
body.lightbox-open { overflow: hidden; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgb(14 18 12 / 0.93);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 80vh;
  width: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.lightbox-caption {
  color: rgb(255 255 255 / 0.82);
  margin-top: 16px;
  font-size: 14.5px;
  text-align: center;
}
.lightbox-btn {
  position: absolute;
  display: grid;
  place-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.4);
  background: rgb(255 255 255 / 0.1);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.lightbox-btn:hover { background: rgb(255 255 255 / 0.22); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 16px; top: 50%; translate: 0 -50%; }
.lightbox-next { right: 16px; top: 50%; translate: 0 -50%; }
@media (max-width: 640px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 64px;
  justify-content: space-between;
  padding: 28px 0 56px;
  font-size: 13.5px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--color-text) 70%, transparent);
}
.site-footer .brand { max-width: 32ch; }
.site-footer .brand strong {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-size: 18px;
  color: var(--color-text);
}
.site-footer nav { display: flex; flex-direction: column; gap: 4px; }
