/* ==========================================================================
   Lily Mirissa — 2026 redesign
   Palette kept from the original site: teal #35BCA8 on soft slate/cream.
   ========================================================================== */

:root {
  /* brand */
  --teal:        #35bca8;
  --teal-deep:   #23907f;
  --teal-dark:   #008080;
  --teal-tint:   #e7f6f3;

  /* neutrals */
  --ink:         #22303a;
  --body:        #55636e;
  --muted:       #8b979f;
  --cream:       #fdfbf7;
  --sand:        #f5efe6;
  --line:        #e5e0d7;
  --white:       #ffffff;

  /* type */
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:    "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* rhythm */
  --wrap:    1180px;
  --gutter:  clamp(20px, 5vw, 48px);
  --section: clamp(64px, 9vw, 120px);
  --radius:  14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(34, 48, 58, .06);
  --shadow:    0 18px 44px rgba(34, 48, 58, .10);
  --shadow-lg: 0 30px 70px rgba(0, 128, 128, .22);

  --ease: cubic-bezier(.22, .61, .36, 1);

  --header-h: 76px;
}

/* ── base ─────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  /* keeps the off-canvas mobile drawer from widening the viewport */
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: var(--teal-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal); }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 200;
  background: var(--teal-dark); color: #fff; padding: 12px 18px; border-radius: 8px;
}
.skip-link:focus { top: 16px; color: #fff; }

/* ── typography ───────────────────────────────────────────── */

.h2, .h3, h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}
.h2  { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.h3  { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.h2--light, .h3--light { color: #fff; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 .9em;
}
.eyebrow--light { color: rgba(255,255,255,.72); }

.signature {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--teal-deep);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .92rem; letter-spacing: .04em;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ── buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--sans); font-size: .88rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  padding: 14px 26px;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .2s var(--ease),
              box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid  { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(53,188,168,.30); }
.btn--solid:hover { background: var(--teal-deep); color: #fff; box-shadow: 0 12px 28px rgba(35,144,127,.36); }

.btn--outline { border-color: currentColor; color: var(--teal-deep); background: transparent; }
.btn--outline:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; }

.btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--teal-dark); border-color: #fff; }

.btn--light { border-color: rgba(255,255,255,.45); }

.btn--lg    { padding: 17px 34px; font-size: .92rem; }
.btn--block { width: 100%; }

/* ── announcement bar ─────────────────────────────────────── */

.announce {
  position: relative; z-index: 60;
  background: var(--teal-dark);
  color: rgba(255,255,255,.9);
  font-size: .87rem;
}
.announce[hidden] { display: none; }
.announce__inner {
  display: flex; align-items: center; gap: 12px;
  padding-block: 11px;
}
.announce p { margin: 0; }
.announce strong { color: #fff; font-weight: 600; }
.announce__dot {
  width: 8px; height: 8px; flex: none; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(53,188,168,.7);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(53,188,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(53,188,168,0); }
}
.announce__close {
  margin-left: auto; flex: none;
  background: none; border: 0; color: inherit;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  opacity: .6; padding: 0 4px;
}
.announce__close:hover { opacity: 1; }

/* ── header ───────────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 50;
  transition: background .35s var(--ease), box-shadow .35s var(--ease),
              backdrop-filter .35s var(--ease);
}
.site-header__inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}

.site-header.is-stuck {
  background: rgba(0, 128, 128, .93);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px rgba(0, 128, 128, .20);
}

/* The lotus mark is the hotel's own white logo, so the brand lockup only ever
   sits on a dark surface: the header (over the hero or its dark scrolled
   state), the mobile drawer and the footer. */
.brand { display: inline-flex; align-items: center; gap: 13px; color: #fff; flex: none; }
.brand:hover { color: #fff; }
.brand__mark { width: 46px; height: auto; flex: none; }
.brand__name {
  font-family: var(--sans); font-weight: 700; font-size: 1.3rem;
  letter-spacing: -.005em; line-height: 1; color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav__list {
  display: flex; align-items: center; gap: 22px;
  list-style: none; margin: 0; padding: 0;
}
.nav__list a {
  position: relative;
  color: rgba(255,255,255,.92);
  font-size: .84rem; font-weight: 500; letter-spacing: .06em;
  padding-block: 6px;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--teal);
  transition: right .28s var(--ease);
}
.nav__list a:hover, .nav__list a.is-current { color: #fff; }
.nav__list a:hover::after, .nav__list a.is-current::after { right: 0; }

.nav__cta { padding: 11px 22px; font-size: .76rem; }

.burger {
  display: none; margin-left: auto;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 0; cursor: pointer;
}
.burger span {
  display: block; height: 2px; border-radius: 2px; background: #fff;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── hero ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  display: flex; align-items: center;
  isolation: isolate;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero::after { display: none; }
.hero__inner { padding-block: clamp(56px, 12vh, 120px); }

.hero .eyebrow--light {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 .34em;
  max-width: 22ch;
  text-shadow: 0 2px 24px rgba(0,0,0,.75), 0 1px 4px rgba(0,0,0,.8);
}
.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(255,255,255,.96);
  max-width: 48ch;
  margin-bottom: 2.2em;
  text-shadow: 0 2px 14px rgba(0,0,0,.75), 0 1px 3px rgba(0,0,0,.8);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__actions .btn--ghost {
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,.75);
}

.hero__facts {
  display: flex; flex-wrap: wrap; gap: clamp(20px, 5vw, 56px);
  list-style: none; margin: clamp(40px, 7vh, 72px) 0 0;
  padding: 22px clamp(20px, 4vw, 32px);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
}
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts strong {
  font-family: var(--display); font-size: 1.75rem; font-weight: 500; color: #fff; line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.hero__facts span {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-top: 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0;
  width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px;
  display: grid; place-items: start center; padding-top: 8px;
}
.hero__scroll span {
  width: 3px; height: 8px; border-radius: 2px; background: #fff;
  animation: scrollcue 1.9s var(--ease) infinite;
}
@keyframes scrollcue {
  0%   { transform: translateY(0);    opacity: 0; }
  35%  { opacity: 1; }
  75%  { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ── sections ─────────────────────────────────────────────── */

.section { padding-block: var(--section); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--teal-dark); color: rgba(255,255,255,.88); }
.section--dark a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.section-head { max-width: 62ch; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head__lead { font-size: 1.06rem; }
.section-head--light .section-head__lead { color: rgba(255,255,255,.85); }

.grid-2 {
  display: grid; gap: clamp(36px, 6vw, 72px);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.grid-2--wide { grid-template-columns: 1.05fr 1fr; }

/* ── media stack ──────────────────────────────────────────── */

.media-stack { position: relative; padding-bottom: 58px; padding-right: 42px; }
.media-stack__main {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.media-stack__inset {
  position: absolute; right: 0; bottom: 0;
  width: 56%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); border: 7px solid var(--cream);
  box-shadow: var(--shadow);
}
.media-stack--alt { padding-right: 0; padding-left: 42px; }
.media-stack--alt .media-stack__inset { right: auto; left: 0; border-color: var(--sand); }

/* ── cards ────────────────────────────────────────────────── */

.cards {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  display: grid; place-items: center;
  width: 50px; height: 50px; margin-bottom: 20px;
  border-radius: 14px; background: var(--teal-tint); color: var(--teal-deep);
}
.card__icon svg { width: 25px; height: 25px; }
.card h3 { font-size: 1.35rem; margin-bottom: .35em; }
.card p { font-size: .96rem; margin: 0; }

/* ── guide (things to do) ─────────────────────────────────── */

.guide-intro .filters { margin-bottom: 0; }
.guide-grid { margin-top: 4px; }
.card--guide h3 { margin-top: 2px; }
.card--guide p + p { margin-top: .7em; }
.card__cat {
  display: inline-block; font-family: var(--sans);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-deep); background: var(--teal-tint);
  padding: 4px 10px; border-radius: 999px;
  margin: 0 0 12px;
}
.card__rec {
  margin-top: 14px !important; font-size: .86rem; font-style: italic; color: var(--muted);
}
.card__tip {
  margin-top: 14px !important; padding: 12px 14px;
  background: var(--teal-tint); border-radius: var(--radius);
  font-size: .86rem; color: var(--teal-deep);
}
.card__media {
  display: block; margin: -34px -30px 20px; width: calc(100% + 60px);
  aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ── eco band ─────────────────────────────────────────────── */

.band { display: grid; grid-template-columns: 1fr 1fr; background: var(--teal-dark); }
.band__media { min-height: 380px; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__body { display: flex; align-items: center; color: rgba(255,255,255,.88); }
.band__inner { padding: clamp(48px, 7vw, 92px) clamp(28px, 5vw, 76px); max-width: 620px; }

.ticks { list-style: none; margin: 1.6em 0 0; padding: 0; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; font-size: .97rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 18px; height: 10px;
  border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

/* ── rooms ────────────────────────────────────────────────── */

.rooms { display: grid; gap: 28px; grid-template-columns: 1fr 1fr; }
.room {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.room:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.room__media { position: relative; overflow: hidden; }
.room__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .7s var(--ease); }
.room:hover .room__media img { transform: scale(1.05); }
.room__tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.94); color: var(--teal-dark);
  font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: 8px 15px; border-radius: 999px;
}
.room__body { padding: 30px; }
.room__body h3 { font-size: 1.6rem; }
.room__body p { font-size: .97rem; }
.room__meta {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  margin: 20px 0 0; padding: 0;
}
.room__meta li {
  font-size: .76rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--teal-deep); background: var(--teal-tint);
  padding: 6px 13px; border-radius: 999px;
}

.room-count {
  margin-top: 26px; padding: 20px 26px;
  background: var(--teal-tint); border-radius: var(--radius);
  text-align: center; font-size: .97rem; color: var(--ink);
}
.room-count strong { color: var(--teal-deep); }

.amenities { margin-top: clamp(48px, 6vw, 80px); }
.amenities__title { text-align: center; margin-bottom: 1.2em; }
.amenities__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 14px 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.amenities__list li {
  display: flex; align-items: center; gap: 14px;
  font-size: .96rem;
  padding: 14px 18px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
}
.amenities__list svg { width: 22px; height: 22px; flex: none; color: var(--teal); }

/* ── pills ────────────────────────────────────────────────── */

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.6em; }
.pill {
  font-size: .8rem; letter-spacing: .05em;
  padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); color: var(--ink);
}

/* ── rates ────────────────────────────────────────────────── */

.rates { display: grid; grid-template-columns: 1.45fr 1fr; gap: 28px; align-items: start; }

.rates__main {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
.rates__head { padding: 30px 32px 22px; border-bottom: 1px solid var(--line); }
.rates__head h3 { font-size: 1.6rem; margin-bottom: .2em; }
.rates__head p { font-size: .88rem; color: var(--muted); margin: 0; }

.rate-table { width: 100%; border-collapse: collapse; }
.rate-table thead th {
  font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  text-align: left; padding: 16px 32px 10px;
}
.rate-table thead th:last-child { text-align: right; }
.rate-table tbody th {
  font-family: var(--sans); font-weight: 500; font-size: .98rem;
  color: var(--ink); text-align: left; padding: 17px 32px;
  border-top: 1px solid var(--line);
}
.rate-table tbody td {
  text-align: right; padding: 17px 32px;
  border-top: 1px solid var(--line);
  font-size: .84rem; color: var(--muted); letter-spacing: .08em;
  white-space: nowrap;
}
.rate-table tbody tr { transition: background .2s var(--ease); }
.rate-table tbody tr:hover { background: var(--teal-tint); }
.price {
  font-family: var(--display); font-size: 1.85rem; color: var(--teal-deep);
  letter-spacing: 0; margin-right: .18em;
}
.is-peak { background: rgba(53,188,168,.07); }
.tag-peak {
  display: inline-block; margin-left: 10px; vertical-align: 2px;
  font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: var(--teal); padding: 3px 9px; border-radius: 999px;
}

.rates__side { display: grid; gap: 22px; }
.rates__side h3 { font-size: 1.4rem; }
.supp { list-style: none; margin: 0; padding: 0; }
.supp li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 13px 0; border-bottom: 1px dashed var(--line);
  font-size: .93rem;
}
.supp li:last-child { border-bottom: 0; }
.supp b { color: var(--teal-deep); white-space: nowrap; font-weight: 600; }

.rates__note {
  background: var(--teal-dark); color: rgba(255,255,255,.9);
  border-radius: var(--radius-lg); padding: 30px;
}
.rates__note h4 {
  font-family: var(--display); font-size: 1.4rem; color: #fff; margin: 0 0 .4em;
}
.rates__note p { font-size: .94rem; margin-bottom: 1.4em; }

/* ── gallery ──────────────────────────────────────────────── */

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter {
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.7); background: transparent;
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px;
  padding: 9px 19px; cursor: pointer;
  transition: all .25s var(--ease);
}
.filter:hover { border-color: rgba(255,255,255,.55); color: #fff; }
.filter.is-active { background: var(--teal); border-color: var(--teal); color: #fff; }

.gallery {
  display: grid; gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 0; padding: 0; cursor: zoom-in; background: rgba(255,255,255,.05);
  grid-column: span 1; grid-row: span 1;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), opacity .4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,128,128,.55));
  opacity: 0; transition: opacity .35s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item[hidden] { display: none; }

.gallery__more { text-align: center; margin-top: 32px; }

/* ── lightbox ─────────────────────────────────────────────── */

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(8px, 3vw, 32px);
  padding: clamp(16px, 4vw, 48px);
  background: rgba(10, 26, 24, .95);
  backdrop-filter: blur(6px);
  animation: fade .25s var(--ease);
}
.lightbox[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } }

.lightbox__figure { margin: 0; display: grid; place-items: center; gap: 14px; min-width: 0; }
.lightbox__figure img {
  max-width: 100%; max-height: 78vh; object-fit: contain;
  border-radius: 8px; box-shadow: var(--shadow-lg);
}
.lightbox__figure figcaption {
  color: rgba(255,255,255,.65); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
}
.lightbox__nav, .lightbox__close {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  color: #fff; cursor: pointer; border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.lightbox__nav:hover, .lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__nav { width: 52px; height: 52px; font-size: 2rem; line-height: 0; padding-bottom: 4px; }
.lightbox__close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; font-size: 1.7rem; line-height: 0; padding-bottom: 3px;
}

/* ── location ─────────────────────────────────────────────── */

.location { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; align-items: stretch; }

.map-card {
  position: relative; z-index: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  min-height: 440px;
}
.map { position: absolute; inset: 0; background: #dfe8e6; }
.map__hint {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0; z-index: 500;
  margin: 0; padding: 10px 20px; border-radius: 999px;
  background: rgba(0,128,128,.82); color: #fff;
  font-size: .8rem; letter-spacing: .05em;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.map__hint[hidden] { opacity: 0; }
.leaflet-container { font-family: var(--sans); }
.leaflet-tile-pane { filter: grayscale(60%) brightness(1.12) saturate(65%) contrast(95%); }
.map-pin {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  background: var(--teal); box-shadow: 0 6px 16px rgba(0,128,128,.35);
  border: 3px solid #fff;
}
.map-pin span {
  width: 10px; height: 10px; border-radius: 50%; background: #fff;
}

.location__side { display: grid; gap: 20px; align-content: start; }
.address-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
}
.address-card h3 { font-size: 1.5rem; margin-bottom: .3em; }
.address-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.address-card__actions .btn { font-size: .74rem; padding: 12px 20px; }

.distances { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.distances li {
  display: grid; grid-template-columns: 84px 1fr; gap: 14px; align-items: baseline;
  padding: 13px 4px; border-bottom: 1px solid var(--line);
  font-size: .93rem;
}
.distances li:last-child { border-bottom: 0; }
.distances b {
  font-family: var(--display); font-size: 1.22rem; color: var(--teal-deep); font-weight: 500;
}

.explore { margin-top: clamp(48px, 6vw, 76px); }
.explore h3 { margin-bottom: .9em; }
.explore__grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.explore__item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 16px;
}
.explore__item h4 {
  font-family: var(--display); font-size: 1.28rem; margin: 0 0 .25em; color: var(--ink);
}
.explore__item p { font-size: .92rem; margin: 0; }
.explore__more { margin: 28px 0 0; text-align: center; }

/* ── FAQ ──────────────────────────────────────────────────── */

.faq { max-width: 860px; }
.faq__item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 10px;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 21px 26px; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: 1.24rem; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none;
  width: 11px; height: 11px;
  border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq__item summary:hover { color: var(--teal-deep); }
.faq__body { padding: 0 26px 24px; font-size: .97rem; }

/* ── forms ────────────────────────────────────────────────── */

.booking { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.booking__alt { margin-top: 1.8em; font-size: .95rem; }

.form { display: grid; gap: 18px; }
.form--inline { max-width: 720px; margin-top: clamp(36px, 5vw, 56px); }

.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: inherit; opacity: .8;
}
.field .opt { font-weight: 400; letter-spacing: .04em; text-transform: none; opacity: .7; }

.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 15px; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(53,188,168,.2);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: #d98a72; }

.form > .btn { justify-self: start; }
.form > .btn--block { justify-self: stretch; }

.section--dark .field label { color: rgba(255,255,255,.75); }
.section--dark .field input,
.section--dark .field select,
.section--dark .field textarea {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff;
}
.section--dark .field input::placeholder,
.section--dark .field textarea::placeholder { color: rgba(255,255,255,.4); }
.section--dark .field input:focus,
.section--dark .field select:focus,
.section--dark .field textarea:focus { background: rgba(255,255,255,.12); border-color: var(--teal); }
.section--dark select option { color: var(--ink); }

.form__note { font-size: .88rem; margin: 0; min-height: 1.4em; }
.form__note.is-error { color: #e2856a; }
.form__note.is-ok { color: var(--teal); }

/* ── captcha ──────────────────────────────────────────────── */

.field--captcha { gap: 10px; }
.recaptcha-slot {
  /* Google's widget is a fixed 304x78px iframe; scale it down rather than
     letting it overflow on very narrow phones. */
  transform-origin: 0 0;
  min-height: 78px;
}
.captcha-note {
  margin: 0; font-size: .78rem; line-height: 1.5;
  color: var(--muted);
}
.captcha-note a { text-decoration: underline; text-underline-offset: 2px; }
.section--dark .captcha-note { color: rgba(255,255,255,.5); }
.section--dark .captcha-note a { color: rgba(255,255,255,.75); }
.section--dark .captcha-note a:hover { color: #fff; }

@media (max-width: 360px) {
  .recaptcha-slot { transform: scale(.88); min-height: 69px; }
}

/* ── contact cards ────────────────────────────────────────── */

.contact-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.contact-card {
  display: grid; gap: 4px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  color: var(--body);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--body); }
.contact-card__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 12px;
  border-radius: 13px; background: var(--teal-tint); color: var(--teal-deep);
}
.contact-card__icon svg { width: 23px; height: 23px; }
.contact-card b {
  font-family: var(--display); font-weight: 500; font-size: 1.24rem; color: var(--ink);
}
.contact-card span { font-size: .93rem; }

/* ── footer ───────────────────────────────────────────────── */

.site-footer { background: var(--teal-dark); color: rgba(255,255,255,.82); font-size: .94rem; }
.site-footer a { color: rgba(255,255,255,.95); }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1.1fr; gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(52px, 7vw, 84px);
}
.brand--footer { margin-bottom: 18px; }
.site-footer__brand p { max-width: 40ch; }
.site-footer h4 {
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #fff; margin: 0 0 1.4em;
}
.site-footer__nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer address { font-style: normal; line-height: 1.9; }
.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-block: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .82rem; color: rgba(255,255,255,.68);
}
.site-footer__bottom p { margin: 0; }

/* ── mobile CTA bar ───────────────────────────────────────── */

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: none; gap: 10px; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(253,251,247,.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.mobile-bar.is-visible { transform: translateY(0); }
.mobile-bar .btn { flex: 1; padding: 13px 18px; font-size: .78rem; }

/* ── reveal on scroll ─────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span, .announce__dot { animation: none; }
}

/* ── responsive ───────────────────────────────────────────── */

@media (max-width: 1080px) {
  .rates    { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; }
  .gallery  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 66px; }

  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(340px, 84vw);
    flex-direction: column; align-items: stretch; justify-content: center;
    gap: 30px;
    padding: 40px var(--gutter);
    background: var(--teal-dark);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__list a { display: block; font-size: 1.02rem; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav__list a::after { display: none; }
  .nav__cta { align-self: flex-start; }
  .burger { display: block; }

  .grid-2, .rooms, .booking, .band { grid-template-columns: 1fr; }
  .grid-2--reverse > :first-child { order: 2; }
  .band__media { min-height: 260px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }

  .mobile-bar { display: flex; }
  .site-footer__bottom { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }

  .announce { font-size: .8rem; }
  .brand { gap: 10px; }
  .brand__mark { width: 38px; }
  .brand__name { font-size: 1.12rem; }

  .hero { min-height: 88svh; }
  .hero__title { font-size: clamp(2.25rem, 9.5vw, 3rem); }
  .hero__lead { margin-bottom: 1.7em; }
  .hero__facts {
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px;
    margin-top: clamp(28px, 5vh, 48px);
  }
  .hero__facts strong { font-size: 1.32rem; }
  .hero__actions .btn { flex: 1; }
  .hero__scroll { display: none; }

  .media-stack, .media-stack--alt { padding: 0 0 44px 0; }
  .media-stack__main { aspect-ratio: 4 / 3.4; }
  .media-stack__inset { width: 48%; right: 0; left: auto; }
  .media-stack--alt .media-stack__inset { left: auto; right: 0; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 2; }

  .rate-table thead th,
  .rate-table tbody th,
  .rate-table tbody td { padding-inline: 20px; }
  .rate-table tbody th { font-size: .9rem; }
  .price { font-size: 1.5rem; }
  .rates__head { padding: 24px 20px 18px; }

  .field-row { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .distances li { grid-template-columns: 72px 1fr; }
  .lightbox { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .lightbox__nav { position: relative; }
  .lightbox__figure { grid-row: 1; }
  .lightbox__nav--prev { grid-column: 1; grid-row: 2; justify-self: start; }
  .lightbox__nav--next { grid-column: 1; grid-row: 2; justify-self: end; }
}
