/* La Maison 24 — site.css
   World: the house's own materials. Sand-white walls, deep zellige green,
   dune gold. Arch of the façade as recurring shape. Young Serif / Hanken Grotesk. */

:root {
  --sand: #f4eee3;
  --sand-deep: #eae1cf;
  --ink: #22302a;
  --ink-soft: #55635a;
  --green: #1f4638;
  --green-deep: #17352b;
  --green-tint: #bccec4;
  --gold: #dca94b;
  --gold-deep: #b9852b;
  --coral: #c66a45;
  --line: rgba(34, 48, 42, 0.16);
  --line-light: rgba(244, 238, 227, 0.22);
  --display: "Young Serif", "Iowan Old Style", Georgia, serif;
  --body: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;
  --arch: 999px 999px 18px 18px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--wash, var(--sand));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: #a04f2e; color: #fdfaf3; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

h1, h2, .quote-lead { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.12; text-wrap: balance; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
section { padding: clamp(4.5rem, 9vw, 8rem) 0 0; }
p { max-width: 62ch; }

/* ---------- header ---------- */
.hd {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
  color: #fdfaf3;
  background: linear-gradient(180deg, rgba(23, 53, 43, 0.55) 0%, rgba(23, 53, 43, 0.25) 60%, rgba(23, 53, 43, 0) 100%);
}
.hd:not(.solid) .hd-mark, .hd:not(.solid) nav a, .hd:not(.solid) .hd-lang summary { text-shadow: 0 1px 10px rgba(23, 53, 43, 0.6); }
.hd-in {
  max-width: 1180px; margin: 0 auto;
  padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.hd.solid { background: var(--sand); color: var(--ink); box-shadow: 0 1px 0 var(--line); text-shadow: none; }
.hd-mark { font-family: var(--display); font-size: 1.25rem; text-decoration: none; white-space: nowrap; }
.hd-mark .no { font-size: 0.8em; }
.hd nav { display: flex; gap: 1.4rem; margin-left: auto; }
.hd nav a { text-decoration: none; font-weight: 600; font-size: 0.92rem; opacity: 0.92; }
.hd nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 5px; }
.hd-lang { position: relative; }
.hd-lang summary {
  list-style: none; cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.4rem 0.7rem; border: 1.5px solid currentColor; border-radius: 999px; opacity: 0.9;
}
.hd-lang summary::-webkit-details-marker { display: none; }
.hd-lang summary svg { width: 13px; height: 13px; transition: transform 0.25s var(--ease-out); }
.hd-lang[open] summary svg { transform: rotate(180deg); }
.hd-lang-menu {
  position: absolute; right: 0; top: calc(100% + 0.5rem); min-width: 10.5rem;
  background: var(--sand); color: var(--ink);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 40px -16px rgba(34, 48, 42, 0.4);
  padding: 0.4rem; display: flex; flex-direction: column;
}
.hd-lang-menu a {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; font-size: 0.95rem; font-weight: 600;
  padding: 0.55rem 0.8rem; border-radius: 9px;
}
.flag { border-radius: 2px; box-shadow: 0 0 0 1px rgba(34, 48, 42, 0.12); flex: none; }
.hd-lang summary .flag { margin-right: 0.1rem; }
.hd-lang-menu a:hover { background: var(--sand-deep); }
.hd-lang-menu a[aria-current="true"] { color: var(--green); background: rgba(220, 169, 75, 0.22); }
.hd-cta {
  text-decoration: none; font-weight: 700; font-size: 0.92rem;
  background: var(--gold); color: var(--ink);
  padding: 0.6rem 1.1rem; border-radius: 999px; white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s var(--ease-out);
}
.hd-cta:hover { background: #e7b859; transform: translateY(-1px); }
@media (max-width: 1020px) { .hd-mark .pg { display: none; } }
@media (max-width: 860px) {
  .hd nav { display: none; }
  .hd-lang { margin-left: auto; }
  .hd-in { gap: 0.8rem; padding-top: 0.7rem; padding-bottom: 0.7rem; }
  .hd-mark { font-size: 1.05rem; }
  .hd-cta { font-size: 0.82rem; padding: 0.5rem 0.85rem; }
  .hd-lang summary { padding: 0.32rem 0.6rem; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fdfaf3; padding: 0; }
.hero-img { position: absolute; inset: 0; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(75deg, rgba(23, 53, 43, 0.5) 0%, rgba(23, 53, 43, 0.22) 38%, rgba(23, 53, 43, 0) 62%),
    linear-gradient(180deg, rgba(23, 53, 43, 0.3) 0%, rgba(23, 53, 43, 0) 28%, rgba(23, 53, 43, 0.12) 52%, rgba(23, 53, 43, 0.55) 78%, rgba(23, 53, 43, 0.85) 100%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-img img { animation: settle 2.6s var(--ease-out) forwards; }
  @keyframes settle { to { transform: scale(1); } }
  .hero-copy > * { opacity: 0; transform: translateY(26px); animation: rise 1.1s var(--ease-out) forwards; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.12s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.22s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.32s; }
  .hero-copy > *:nth-child(5) { animation-delay: 0.42s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}
.hero-copy { position: relative; z-index: 1; width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 6vh, 4.5rem); }
.hero h1 { font-size: clamp(3rem, 8.5vw, 6rem); line-height: 1; text-shadow: 0 2px 10px rgba(23, 53, 43, 0.55), 0 8px 40px rgba(23, 53, 43, 0.45); }
.hero-place { font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.82rem; margin-top: 0.9rem; text-shadow: 0 1px 8px rgba(23, 53, 43, 0.6); }
.hero-sub { margin-top: 0.9rem; font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 34em; text-shadow: 0 1px 6px rgba(23, 53, 43, 0.65), 0 4px 22px rgba(23, 53, 43, 0.5); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.4rem; font-size: 0.86rem; font-weight: 600; }
.hero-trust span {
  display: inline-flex; align-items: center; gap: 0.42rem;
  background: rgba(23, 53, 43, 0.45); backdrop-filter: blur(6px);
  border: 1px solid rgba(253, 250, 243, 0.28);
  padding: 0.38rem 0.85rem; border-radius: 999px;
}
.hero-trust .star { color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; font-weight: 700; font-size: 1rem;
  padding: 0.95rem 1.7rem; border-radius: 999px;
  transition: background 0.2s ease, transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 8px 28px -10px rgba(23, 53, 43, 0.55); }
.btn-gold:hover { background: #e7b859; transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid rgba(253, 250, 243, 0.65); color: #fdfaf3; }
.btn-ghost:hover { background: rgba(253, 250, 243, 0.12); transform: translateY(-2px); }

/* ---------- house ---------- */
.house-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.house-text h2 { margin-bottom: 1.3rem; }
.house-text p + p { margin-top: 1rem; }
.facts { list-style: none; margin-top: 2.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1.4rem; }
.facts li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.95rem; font-weight: 500; }
.facts svg { flex: none; width: 22px; height: 22px; color: var(--green); margin-top: 0.1rem; }
.house-media { position: relative; }
.house-media .ph-a { border-radius: var(--arch); overflow: hidden; }
.house-media .ph-b {
  position: absolute; right: -6%; bottom: -12%; width: 46%;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 18px 44px -18px rgba(34, 48, 42, 0.5);
  border: 5px solid var(--sand);
}
@media (max-width: 860px) {
  .house-grid { grid-template-columns: 1fr; }
  .house-media { margin-top: 0.5rem; }
  .house-media .ph-b { bottom: -8%; right: 0; }
  .facts { grid-template-columns: 1fr; }
}

/* ---------- gallery ---------- */
.gal-head { display: flex; align-items: baseline; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.gal-head p { color: var(--ink-soft); max-width: 44ch; }
.gal { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(0.7rem, 1.6vw, 1.2rem); }
.gal figure { position: relative; cursor: zoom-in; display: grid; grid-template-rows: 1fr auto; }
.gal figure.s4 { grid-column: span 4; }
.gal figure.s2 { grid-column: span 2; }
.gal img {
  width: 100%; height: 100%; min-height: 0; object-fit: cover; aspect-ratio: 4 / 3;
  border-radius: 12px;
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
}
.gal figure.tall img { aspect-ratio: 3 / 3.6; }
.gal figure:hover img { transform: scale(1.015); filter: brightness(1.04); }
.gal figcaption { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.5rem; }
@media (max-width: 700px) {
  .gal { grid-template-columns: 1fr 1fr; }
  .gal figure.s4 { grid-column: span 2; }
  .gal figure.s2 { grid-column: span 1; }
}

/* ---------- residence ---------- */
.res-hero { border-radius: 18px; overflow: hidden; margin-bottom: 2.6rem; }
.res-hero img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }
.res-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.res-text h2 { margin-bottom: 1.3rem; }
.res-text p + p { margin-top: 1rem; }
.res-quote { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.res-quote .q { font-family: var(--display); font-size: 1.25rem; line-height: 1.35; }
.res-quote .by { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.5rem; }
.res-media figure { border-radius: var(--arch); overflow: hidden; }
.res-media img { width: 100%; aspect-ratio: 3 / 3.8; object-fit: cover; }
.cap { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.55rem; }
@media (max-width: 860px) { .res-grid { grid-template-columns: 1fr; } }

/* ---------- reviews (green field) ---------- */
.reviews { background: transparent; color: #f6f1e6; padding-bottom: clamp(4.5rem, 9vw, 8rem); }
.reviews h2 { color: #fdfaf3; }
.rev-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.rev-chips span {
  font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--line-light); border-radius: 999px;
  padding: 0.4rem 0.9rem; color: var(--green-tint);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.rev-chips .star { color: var(--gold); }
.quote-lead {
  font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.25; max-width: 24em;
  margin-top: 2.6rem; text-wrap: balance;
}
.quote-lead-by { margin-top: 1.1rem; font-size: 0.9rem; color: var(--green-tint); }
.rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 5vw, 4rem); margin-top: 2.8rem; }
.rev { border-top: 1px solid var(--line-light); padding: 1.5rem 0 1.7rem; }
.rev p { font-size: 1rem; }
.rev-by { margin-top: 0.8rem; font-size: 0.85rem; color: var(--green-tint); }
.rev-by strong { color: #f6f1e6; font-weight: 700; }
@media (max-width: 700px) {
  .rev-grid { grid-template-columns: 1fr; }
  .quote-lead::before { left: -0.06em; top: -0.42em; font-size: 2.4em; }
}

/* ---------- around ---------- */
.ar-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.ar-text h2 { margin-bottom: 1.3rem; }
.dist { list-style: none; margin-top: 2rem; }
.dist li {
  display: flex; align-items: baseline; gap: 0.8rem;
  padding: 0.72rem 0; border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.dist li::before { display: none; }
.dist .n { font-weight: 600; }
.dist .dots { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.dist .d { color: var(--ink-soft); white-space: nowrap; }
.ar-maps { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.4rem; font-weight: 700; font-size: 0.95rem; color: var(--green); }
.map-card { background: var(--sand-deep); border-radius: 18px; padding: clamp(1.2rem, 2.5vw, 2rem); }
.map-card svg { width: 100%; height: auto; }
.map-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.6rem; text-align: right; }
.ar-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(0.7rem, 1.6vw, 1.2rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.ar-strip img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: 12px; }
@media (max-width: 860px) {
  .ar-grid { grid-template-columns: 1fr; }
  .ar-strip { grid-template-columns: 1fr; }
  .ar-strip img { aspect-ratio: 16 / 10; }
}

/* ---------- book direct ---------- */
.direct-panel {
  background: var(--green); color: #f6f1e6;
  border-radius: var(--arch);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 5rem) clamp(2.8rem, 6vw, 4.5rem);
  text-align: center;
}
.direct-panel h2 { color: #fdfaf3; font-size: clamp(2.1rem, 4.2vw, 3.3rem); }
.direct-panel > p { margin: 1.3rem auto 0; color: #e8e0cf; max-width: 52ch; }
.direct-points { list-style: none; margin: 2rem auto 0; display: inline-flex; flex-direction: column; gap: 0.7rem; text-align: left; }
.direct-points li { display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 500; }
.direct-points svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 0.22rem; }
.direct-cta { margin-top: 2.4rem; }
.direct-cta .btn { font-size: 1.08rem; padding: 1.1rem 2.2rem; }
.direct-alt { margin-top: 1.6rem; font-size: 0.9rem; color: var(--green-tint); }
.direct-alt a { color: #f6f1e6; font-weight: 600; text-underline-offset: 4px; }

/* ---------- footer ---------- */
footer { background: var(--green-deep); color: #e8e0cf; margin-top: clamp(4.5rem, 9vw, 8rem); }
.ft { max-width: 1180px; margin: 0 auto; padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem) 2.2rem; }
.ft-top { display: flex; flex-wrap: wrap; gap: 2rem 4rem; justify-content: space-between; align-items: flex-start; }
.ft-mark { font-family: var(--display); font-size: 1.7rem; color: #fdfaf3; }
.ft-addr { margin-top: 0.8rem; font-size: 0.92rem; max-width: 34ch; color: var(--green-tint); }
.ft-nav { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.95rem; }
.ft-nav a { text-decoration: none; font-weight: 600; }
.ft-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.ft-langs { display: flex; gap: 0.7rem; font-size: 0.9rem; font-weight: 700; }
.ft-langs a { text-decoration: none; opacity: 0.75; }
.ft-langs a[aria-current="true"] { opacity: 1; color: var(--gold); }
.ft-bottom {
  margin-top: 2.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line-light);
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; justify-content: space-between;
  font-size: 0.8rem; color: var(--green-tint);
}

/* ---------- lightbox ---------- */
.lb { border: none; background: rgba(20, 30, 26, 0.94); width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh; padding: 0; }
.lb::backdrop { background: rgba(20, 30, 26, 0.7); }
.lb-in { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.lb img { max-width: min(92vw, 1200px); max-height: 84vh; border-radius: 8px; }
.lb-cap { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: #e8e0cf; font-size: 0.9rem; }
.lb button {
  position: absolute; background: rgba(244, 238, 227, 0.12); color: #f6f1e6;
  border: 1px solid rgba(244, 238, 227, 0.3); border-radius: 999px;
  width: 46px; height: 46px; font-size: 1.25rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lb button:hover { background: rgba(244, 238, 227, 0.25); }
.lb-x { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- window parallax (arch frames) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .plx > img, html.js .plx > video {
    transform: translateY(var(--plx, 0%)) scale(1.18);
    will-change: transform;
  }
}

/* ---------- guest guide strip ---------- */
.guide-head h2 { margin-bottom: 1.3rem; }
.guide-intro { color: var(--ink-soft); max-width: 52ch; }
.guide-strip {
  list-style: none; position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem;
  margin-top: 2.8rem; text-align: center;
}
.guide-strip::before {
  content: ""; position: absolute; top: 24px; left: 9%; right: 9%;
  border-top: 2px dotted var(--line);
}
.guide-strip li { position: relative; display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.gs-dot {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--sand); border: 2px solid var(--green); color: var(--green);
  margin-bottom: 0.5rem;
}
.gs-dot svg { width: 22px; height: 22px; }
.guide-strip strong { font-size: 0.98rem; line-height: 1.3; }
.gs-d { font-size: 0.85rem; color: var(--ink-soft); max-width: 20ch; }
.guide-note { margin-top: 2.4rem; font-size: 0.9rem; color: var(--ink-soft); }
.guide-note a { color: var(--green); font-weight: 700; text-underline-offset: 4px; }
@media (max-width: 860px) {
  .guide-strip { grid-template-columns: 1fr; gap: 1.6rem; text-align: left; }
  .guide-strip::before { top: 8%; bottom: 8%; left: 23px; right: auto; border-top: none; border-left: 2px dotted var(--line); }
  .guide-strip li { display: grid; grid-template-columns: 48px 1fr; column-gap: 1rem; align-items: center; }
  .gs-dot { margin-bottom: 0; grid-row: 1 / span 2; }
  .guide-strip strong, .gs-d { grid-column: 2; }
  .gs-d { max-width: none; }
}

/* ---------- resort print layer (ornaments, wallpaper, flourishes) ---------- */
.sprig { display: block; color: rgba(31, 70, 56, 0.4); margin: 0.2rem 0 1.3rem; }
.sprig-light { color: rgba(220, 169, 75, 0.55); }
.sprig-center { margin-left: auto; margin-right: auto; }

.crest { display: block; color: var(--green-tint); opacity: 0.9; }
.ft-crest { display: flex; justify-content: center; margin-bottom: 2.2rem; }

.house-text .lede::first-letter {
  font-family: var(--display); font-size: 3.3em; line-height: 0.82;
  float: left; padding: 0.06em 0.14em 0 0; color: var(--green);
}

.quote-lead { position: relative; padding-top: 0.4em; }
.quote-lead::before {
  content: "“"; position: absolute; top: -0.28em; left: -0.38em;
  font-family: var(--display); font-size: 3.2em; line-height: 1;
  color: var(--coral); opacity: 0.85;
}

.dusk { position: relative; background: var(--green); margin-top: clamp(4.5rem, 9vw, 8rem); }
.dusk::before {
  content: ""; position: absolute; inset: 0;
  background: url(/assets/img/site/wallpaper-green.webp) center / 720px repeat;
  opacity: 0.32; pointer-events: none;
}
.dusk::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 16, 0) 42%, rgba(10, 20, 16, 0.4) 100%);
  pointer-events: none;
}
.dusk > section { position: relative; z-index: 1; }
footer { position: relative; }
footer::before, .direct-panel::before {
  content: ""; position: absolute; inset: 0;
  background: url(/assets/img/site/wallpaper-green.webp) center / 720px repeat;
  opacity: 0.32; pointer-events: none;
}
.direct-panel { position: relative; overflow: hidden; }
.direct-panel::before { border-radius: inherit; }
.direct-panel::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(244, 238, 227, 0.28);
  border-radius: 999px 999px 14px 14px; pointer-events: none;
}
.reviews > .wrap, .night > .wrap, footer > .ft, .direct-panel > * { position: relative; z-index: 1; }
.direct-panel::after { z-index: 2; }

.cap, .gal figcaption, .map-note, .pc-note, .rev-by, .quote-lead-by { font-style: italic; }
.rev-by strong, .quote-lead-by strong { font-style: normal; }

/* ---------- guide page: the stay as a trail ---------- */
.gp { max-width: 900px; padding-top: 7rem; padding-bottom: clamp(3rem, 6vw, 5rem); }
.gp h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1.08; }
.gp-intro { margin-top: 1.2rem; color: var(--ink-soft); max-width: 56ch; }
.gp-trail { position: relative; margin-top: 3rem; }
.gp-trail::before {
  content: ""; position: absolute; left: 23px; top: 10px; bottom: 24px;
  border-left: 2px dotted var(--line);
}
.gp-sec {
  position: relative; display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 220px;
  column-gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: 0 0 clamp(2.6rem, 5vw, 3.6rem);
}
.gp-dot {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--sand); border: 2px solid var(--green); color: var(--green);
}
.gp-dot svg { width: 22px; height: 22px; }
.gp-body h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: 0.9rem; }
.gp-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 0.3rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid rgba(31, 70, 56, 0.35); border-radius: 999px;
  background: rgba(234, 225, 207, 0.55);
  padding: 0.45rem 0.9rem; font-size: 0.9rem; font-weight: 600; line-height: 1.25;
}
.chip svg { width: 17px; height: 17px; color: var(--green); flex: none; }
.gp-more { margin-top: 1.1rem; }
.gp-more summary {
  cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.9rem; font-weight: 700; color: var(--green);
  text-decoration: underline; text-underline-offset: 4px;
}
.gp-more summary::-webkit-details-marker { display: none; }
.gp-more summary::after { content: "+"; font-weight: 700; }
.gp-more[open] summary::after { content: "−"; }
.gp-more ul { list-style: none; margin-top: 0.7rem; max-width: 58ch; }
.gp-more li { position: relative; padding: 0.4rem 0 0.4rem 1.3rem; font-size: 0.95rem; color: var(--ink); }
.gp-more li::before {
  content: ""; position: absolute; left: 0; top: 0.95rem;
  width: 7px; height: 7px; border-radius: 999px; background: var(--gold);
}
.gp-photo { align-self: start; transform: rotate(var(--tilt, 0deg)); }
.gp-photo img {
  width: 100%; border-radius: 6px;
  border: 6px solid #fdfaf3;
  box-shadow: 0 16px 36px -16px rgba(34, 48, 42, 0.45);
}
@media (max-width: 860px) {
  .gp-sec { grid-template-columns: 48px minmax(0, 1fr); }
  .gp-photo { grid-column: 2; margin-top: 1.2rem; max-width: 240px; }
}

/* ---------- day cycle ---------- */
.tmark {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  color: #8a6220; margin: -0.5rem 0 1.1rem;
}
.tmark-light { color: var(--gold); }

.dial {
  position: fixed; left: 1.1rem; bottom: 1.1rem; z-index: 30;
  width: 138px; padding: 0.7rem 0.85rem 0.75rem;
  background: rgba(244, 238, 227, 0.82); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 60px 60px 14px 14px;
  box-shadow: 0 14px 34px -14px rgba(34, 48, 42, 0.35);
  color: var(--ink); text-align: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out), left 0.35s var(--ease-out), top 0.35s var(--ease-out);
}
.dial.on { opacity: 1; transform: none; pointer-events: auto; cursor: move; touch-action: none; }
.dial.dragging { transition: opacity 0.4s ease, transform 0.4s var(--ease-out); }
#dial-sun-hit { cursor: grab; }
#dial-sun-hit:active { cursor: grabbing; }
.dial.dial-dark { background: rgba(20, 33, 27, 0.85); color: #f6f1e6; border-color: rgba(244, 238, 227, 0.25); }
.dial.dial-dark .dial-wx { color: var(--green-tint); }
@media (prefers-reduced-motion: reduce) { .dial { display: none; } }
.dial-arc { display: block; width: 100%; height: auto; }
.dial-label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; }
.dial-wx { display: block; font-size: 0.72rem; color: var(--ink-soft); margin-top: 0.15rem; line-height: 1.3; }
@media (max-width: 700px) { .dial { width: 106px; left: 0.7rem; bottom: 0.7rem; padding: 0.5rem 0.6rem 0.55rem; } .dial-wx { display: none; } }

.ph-win video { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 3.2; }

.ar-strip .postcard { margin-top: 0.5rem; transition: transform 0.5s var(--ease-out); }
.ar-strip .postcard video {
  display: block; width: 100%; height: auto;
  border-radius: 6px;
  box-shadow: 0 16px 38px -16px rgba(34, 48, 42, 0.45);
}
.postcard.pc-1 { transform: rotate(-2deg); }
.postcard.pc-2 { transform: rotate(1.4deg) translateY(10px); }
.postcard.pc-3 { transform: rotate(-1.1deg); }
.ar-strip .postcard:hover { transform: rotate(0deg); }
.ar-strip .postcard .cap { text-align: center; }
.pc-note { font-size: 0.82rem; font-style: italic; color: var(--ink-soft); text-align: center; margin: 1.6rem auto 0; }

/* ---------- night ---------- */
.night { background: transparent; color: #f6f1e6; padding-bottom: clamp(4.5rem, 9vw, 8rem); }
.night h2 { color: #fdfaf3; margin-bottom: 1.3rem; }
.reviews h2 { margin-bottom: 1.1rem; }
.night-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.night-media { position: relative; padding-bottom: 3rem; }
.night-arch { width: 68%; border-radius: var(--arch); overflow: hidden; }
.night-arch video { display: block; width: 100%; height: auto; }
.night-arch .cap, .night-lights .cap { color: var(--green-tint); }
.night-lights {
  position: absolute; right: 0; bottom: 0; width: 42%;
  transform: rotate(1.6deg);
}
.night-lights img {
  display: block; width: 100%; height: auto; border-radius: 6px;
  box-shadow: 0 18px 44px -18px rgba(8, 18, 14, 0.7);
}
@media (max-width: 860px) {
  .night-grid { grid-template-columns: 1fr; }
  .night-arch { width: 78%; }
}
@media (max-width: 700px) {
  .ar-strip .postcard { width: 80vw; }
  .postcard.pc-1 { margin-right: auto; }
  .postcard.pc-2 { margin-left: auto; transform: rotate(1.4deg); }
  .postcard.pc-3 { margin-right: auto; margin-left: 6vw; }
}

.direct-finale {
  font-family: var(--display); font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #e8e0cf; margin-top: 2.2rem;
}

/* ---------- reveals (gated on html.js so a no-JS visitor sees everything) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .rv { opacity: 0; transform: translateY(26px); }
  html.js .rv.in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
}
