/* ===================================================================
   Villa Sansonetti
   -------------------------------------------------------------------
   Chrome stays near-monochrome; all the warmth comes from the photographs.
   Display type is large, light and loosely set; labels are small,
   uppercase and widely tracked. Nothing in between.
   =================================================================== */

:root {
  /* Warm neutrals — never pure black */
  --ink:        #2B241E;
  --ink-soft:   #3F352B;
  --stone:      #78716C;
  --gray-warm:  #888B8D;
  --sand:       #B0A392;
  --olive:      #8D7C66;
  --paper:      #F0EDEA;
  --white:      #FFFFFF;
  --hairline:   #DCD7D1;

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

  --gut:   clamp(1.5rem, 5vw, 5rem);   /* page gutter */
  --stack: clamp(5rem, 11vw, 9.5rem);  /* vertical rhythm between sections */
}

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

/* the hidden attribute must win over any display rule below */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
figure { margin: 0; }

/* ─────────────────────────── TYPE ─────────────────────────── */

.h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: normal;          /* deliberate: never track the display serif */
  margin: 0 0 1.8rem;
  text-wrap: balance;
}

.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;             /* the tracking lives HERE, not on the serif */
  text-transform: uppercase;
  color: var(--gray-warm);
  margin: 0 0 1.4rem;
}
.eyebrow--light { color: rgba(255,255,255,0.75); }
.eyebrow--sm    { margin-bottom: 0.65rem; }

.lede {
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.body { color: var(--ink-soft); margin: 0 0 1.25rem; max-width: 60ch; }
.body--muted { color: var(--gray-warm); font-size: 15px; }

/* ─────────────────────────── LAYOUT ─────────────────────────── */

.wrap { max-width: 1360px; margin: 0 auto; padding: 0 var(--gut); }
.wrap--narrow { max-width: 760px; }

.section { padding: var(--stack) 0; }
.section--paper { background: var(--paper); }
.section--intro { padding-bottom: 0; }
.section--contact { background: var(--ink); color: var(--white); }

/* ─────────────────────────── NAV ─────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease);
}
.nav::after {           /* soft gradient keeps white links legible over the hero */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), transparent);
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.nav__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem var(--gut);
  transition: padding .4s var(--ease);
}

.nav__brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .5px;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  transition: color .4s var(--ease);
}

.nav__links { display: flex; gap: 2.25rem; }
.nav__links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s ease;
}
.nav__links a:hover { color: var(--white); }

.nav__right { display: flex; align-items: center; gap: 1.25rem; }

/* --- scrolled state: chrome turns solid --- */
.nav.is-scrolled { background: var(--white); box-shadow: 0 1px 0 var(--hairline); }
.nav.is-scrolled::after { opacity: 0; }
.nav.is-scrolled .nav__inner { padding-top: 1.05rem; padding-bottom: 1.05rem; }
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav.is-scrolled .nav__links a { color: var(--stone); }
.nav.is-scrolled .nav__links a:hover { color: var(--ink); }
.nav.is-scrolled .lang__current { color: var(--stone); }
.nav.is-scrolled .btn--ghost { color: var(--stone); border-color: var(--gray-warm); }
.nav.is-scrolled .btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.nav.is-scrolled .burger span { background: var(--ink); }

/* ─────────────────────────── BUTTONS ─────────────────────────── */

.btn {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: .85rem 2.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn--ghost:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.btn--solid {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  align-self: flex-start;
  padding: 1rem 2.75rem;
}
.btn--solid:hover { background: transparent; color: var(--white); }
.btn--solid:disabled { opacity: .5; cursor: default; }

/* ─────────────────────────── LANGUAGE ─────────────────────────── */

.lang { position: relative; }
.lang__current {
  display: flex; align-items: center; gap: .45rem;
  background: none; border: 0; cursor: pointer;
  font-family: inherit;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: .5rem 0;
  transition: color .3s ease;
}
.lang__current:hover { color: var(--white); }
.nav.is-scrolled .lang__current:hover { color: var(--ink); }
.lang__current svg { transition: transform .3s ease; }
.lang.is-open .lang__current svg { transform: rotate(180deg); }

.lang__menu {
  position: absolute;
  top: calc(100% + .5rem); right: 0;
  min-width: 140px;
  margin: 0; padding: .4rem 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--hairline);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: none; }
.lang__menu button, .lang__menu a {
  text-decoration: none;
  display: block; width: 100%;
  background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 13px;
  text-align: left;
  padding: .55rem 1.15rem;
  color: var(--stone);
  transition: background-color .2s ease, color .2s ease;
}
.lang__menu button:hover, .lang__menu a:hover { background: var(--paper); color: var(--ink); }
.lang__menu button[aria-current="true"], .lang__menu a[aria-current="true"] { color: var(--ink); font-weight: 400; }

/* ─────────────────────────── BURGER / MOBILE MENU ─────────────────────────── */

.burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 26px; height: 26px;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.burger span {
  display: block; height: 1px; width: 100%;
  background: var(--white);
  transition: transform .35s var(--ease), opacity .25s ease, background-color .4s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0;
  z-index: 99;
  background: var(--paper);
  display: flex; flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3.5vh, 3rem);
  padding: 4.5rem 1.5rem;
  /* Closed: clip so the (possibly taller-than-screen) content can't peek in at
     the top once translated off-screen. Open: allow scrolling on short phones,
     with the group centred via auto-margins so the top stays reachable. */
  overflow-y: hidden;
  transform: translateY(-100%);
  transition: transform .55s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}
.menu.is-open { transform: none; overflow-y: auto; }
.menu__links { display: flex; flex-direction: column; align-items: center; gap: clamp(.9rem, 2.2vh, 1.5rem); margin-top: auto; }
.menu__lang  { margin-bottom: auto; }
.menu__links a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 5.5vw, 1.85rem);
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
}
.menu__lang { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.menu__lang button, .menu__lang a {
  text-decoration: none;
  background: none; border: 0; cursor: pointer;
  font-family: inherit;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-warm);
  padding: .35rem;
}
.menu__lang button[aria-current="true"], .menu__lang a[aria-current="true"] { color: var(--ink); }

/* ─────────────────────────── HERO ─────────────────────────── */

.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;      /* text sits low, like Torre Maizza */
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__poster,
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__video { opacity: 0; transition: opacity .9s ease; }
.hero__video.is-playing { opacity: 1; }   /* only reveal once actually playing */

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43,36,30,.30) 0%, rgba(43,36,30,0) 35%),
    linear-gradient(0deg,   rgba(43,36,30,.62) 0%, rgba(43,36,30,0) 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gut) clamp(5rem, 11vh, 8rem);
  width: 100%;
}
.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 1.02;
  letter-spacing: normal;
  color: var(--white);
  margin: 0 0 .65rem;
}
.hero__tagline {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,.9);
  margin: 0;
}

.hero__scroll {
  position: absolute;
  right: var(--gut);
  bottom: clamp(5rem, 11vh, 8rem);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .3s ease;
}
.hero__scroll:hover { color: var(--white); }
.hero__scrollLine {
  width: 1px; height: 54px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,0));
}
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* ─────────────────────────── FIGURES ─────────────────────────── */

.figure--wide { margin-top: var(--stack); }
.figure--wide img { width: 100%; height: clamp(320px, 62vh, 780px); object-fit: cover; }

/* cross-dissolve slideshow (aerial + Savelletri at dusk) */
.xfade {
  position: relative;
  height: clamp(320px, 62vh, 780px);
  background: var(--ink);
}
.xfade__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;   /* soft dissolve */
  will-change: opacity;
}
.xfade__slide.is-active { opacity: 1; }
.xfade__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (prefers-reduced-motion: reduce) {
  .xfade__slide { transition: none; }
}

/* ─────────────────────────── SPLIT ─────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split--reverse .split__text  { order: 2; }
.split--reverse .split__media { order: 1; }
.split__media img { width: 100%; height: clamp(360px, 60vh, 680px); object-fit: cover; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__text  { order: 1; }
  .split--reverse .split__media { order: 2; }
}

/* ─────────────────────────── SPECS ─────────────────────────── */

.specs {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.specs li {
  font-size: 13px;
  letter-spacing: .3px;
  color: var(--ink-soft);
  padding: .8rem 0;
  border-bottom: 1px solid var(--hairline);
}
.specs li::before {
  content: '—';
  color: var(--sand);
  margin-right: .7rem;
}
.specs li:nth-child(odd) { padding-right: 1.5rem; }
@media (max-width: 560px) { .specs { grid-template-columns: 1fr; } }

/* ─────────────────────────── GRID / TILES ─────────────────────────── */

.grid { display: grid; gap: 12px; margin-top: var(--stack); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.grid--sea {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(0, 1fr);
}
.tile--tall { grid-row: span 2; }

@media (max-width: 900px) {
  .grid--3, .grid--sea { grid-template-columns: repeat(2, 1fr); }
  .tile--tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .grid--3, .grid--sea { grid-template-columns: 1fr; }
}

/* The signature move: a warm-black veil that EVAPORATES off the photograph.
   Deliberately no scale-on-hover — neither reference site uses one. */
.tile {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  min-height: 260px;
}
.tile img {
  width: 100%; height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.tile__scrim {
  position: absolute; inset: 0;
  /* a veil weighted to the bottom: keeps bright interiors bright, keeps captions legible */
  background: linear-gradient(180deg, rgba(43,36,30,.10) 0%, rgba(43,36,30,0) 30%, rgba(43,36,30,.10) 55%, rgba(43,36,30,.62) 100%);
  opacity: 1;
  transition: opacity .5s var(--ease);
}
.tile:hover .tile__scrim,
.tile:focus-visible .tile__scrim { opacity: .35; }

.tile__cap {
  position: absolute;
  left: 1.5rem; bottom: 1.35rem;
  z-index: 2;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white);
  text-align: left;
  text-shadow: 0 1px 12px rgba(43,36,30,.55);
  transition: opacity .4s ease;
}
.tile:hover .tile__cap { opacity: .85; }

/* ─────────────────────────── BEACHES (video tiles) ─────────────────────────── */

.beachgroup { margin-top: clamp(3rem, 6vw, 5rem); }
.beachgroup:first-of-type { margin-top: var(--stack); }

.beachgroup__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.4rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--hairline);
}
.beachgroup__label { margin: 0; color: var(--ink); }
.beachgroup__desc {
  margin: 0;
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-warm);
}

.grid--lido { grid-template-columns: 2fr 1fr; }
@media (max-width: 900px) { .grid--lido { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid--lido { grid-template-columns: 1fr; } }

/* video tile — mirrors .tile, but holds an autoplay-on-scroll loop */
.vtile {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 260px;
  background: var(--paper);
  cursor: default;
}
.vtile__video,
.vtile > picture img,
.tile--static img {
  width: 100%; height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
.vtile__video {
  /* the poster attribute shows until the clip is loaded + playing */
  background: var(--paper);
}
.vtile--wide { min-height: 340px; }
.tile--static { cursor: default; }

/* Olive grove — a large horizontal 16:9 video with the text on a card that
   overlaps its edge, so the two read as one composition (no crop on the video). */
.section--grove { background: var(--paper); overflow: hidden; }

.grove {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  align-items: center;
}
.grove__media {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}
.grove__media .vtile__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  object-fit: cover;   /* source is 16:9 → fills exactly, nothing cropped */
  display: block;
}
.grove__card {
  flex: 0 0 auto;
  width: min(42%, 452px);
  margin-left: clamp(-300px, -16vw, -160px);   /* slide the card over the video's edge */
  z-index: 2;
  background: var(--white);
  padding: clamp(1.9rem, 2.6vw, 2.5rem);
  box-shadow: 0 40px 90px -50px rgba(43, 36, 30, .5);
}
/* compact type so the card sits within the video's height (a card, not a column) */
.grove__card .eyebrow { margin-bottom: 0.85rem; }
.grove__card .h2 {
  font-size: clamp(1.9rem, 2.9vw, 2.9rem);
  line-height: 1.1;
  margin-bottom: 1.15rem;
}
.grove__card .body { font-size: 15px; line-height: 1.6; margin-bottom: 1rem; }
.grove__card .body:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .grove { flex-direction: column; align-items: stretch; }
  .grove__media { width: 100%; }
  .grove__card {
    width: auto;
    max-width: 34rem;
    align-self: center;
    margin: -2.75rem 1rem 0;              /* lift the card onto the video for integration */
  }
}

/* same bottom-weighted veil + caption as photo tiles */
.vtile .tile__scrim { pointer-events: none; }
.vtile:hover .tile__scrim { opacity: .5; }   /* videos: keep a touch more veil so caption stays legible */

/* ─────────────────────────── FEATURE (full-bleed + overlapping card) ───────── */

.feature {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: var(--stack) var(--gut);
  overflow: hidden;
}
.feature--short { min-height: 78vh; }

.feature__bg { position: absolute; inset: 0; }
.feature__bg img { width: 100%; height: 100%; object-fit: cover; }
.feature::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(43,36,30,.52) 0%, rgba(43,36,30,.12) 55%, rgba(43,36,30,0) 100%);
}

.feature__card {
  position: relative;
  z-index: 2;
  max-width: 520px;
  background: var(--white);
  padding: clamp(2.25rem, 4vw, 3.5rem);
}
.feature__card .body { margin-bottom: 0; }
.feature__card--right { margin-left: auto; }
.feature--short::after {
  background: linear-gradient(270deg, rgba(43,36,30,.52) 0%, rgba(43,36,30,.12) 55%, rgba(43,36,30,0) 100%);
}

@media (max-width: 700px) {
  .feature, .feature--short { min-height: 0; padding: 0; display: block; }
  .feature__bg { position: relative; height: 58vh; }
  .feature::after { display: none; }
  .feature__card, .feature__card--right {
    max-width: none;
    margin: 0;
    padding: clamp(2rem, 8vw, 3rem) var(--gut);
  }
}

/* ─────────────────────────── PLACES ─────────────────────────── */

.places {
  list-style: none;
  margin: var(--stack) 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
.place {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left .4s var(--ease);
}
.place:hover { padding-left: .6rem; }
.place__main { max-width: 62ch; }
.place__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 0 0 .2rem;
}
.place__desc { margin: 0; font-size: 14px; color: var(--gray-warm); line-height: 1.6; }
.place__time {
  flex: none;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .place { flex-direction: column; gap: .5rem; }
  .place__time { order: -1; }
}

/* ─────────────────────────── GETTING HERE ─────────────────────────── */

.getting { margin-top: var(--stack); }
.getting__h { margin-bottom: 1.75rem; }
.getting__list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4rem;
}
.getting__list li {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}
.getting__name { color: var(--ink); }
.getting__val  { color: var(--gray-warm); text-align: right; }
@media (max-width: 760px) { .getting__list { grid-template-columns: 1fr; } }

/* ─────────────────────────── CONTACT ─────────────────────────── */

.section--contact .eyebrow { color: rgba(255,255,255,.5); }
.section--contact .h2      { color: var(--white); }
.section--contact .body    { color: rgba(255,255,255,.72); }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
}
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.rates {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--sand);
  margin: 2rem 0 0;
}

.contact__direct, .contact__where { margin-top: 2.75rem; }
.contact__link {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  padding: .18rem 0;
  border-bottom: 1px solid transparent;
  width: fit-content;
  transition: border-color .3s ease, color .3s ease;
}
.contact__link:hover { border-bottom-color: rgba(255,255,255,.55); }

.contact__where address {
  font-style: normal;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: .6rem;
}

/* ─────────────────────────── FORM ─────────────────────────── */

.form { display: flex; flex-direction: column; gap: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form__row:has(.field--sm) { grid-template-columns: 1fr 110px; }
@media (max-width: 520px) {
  .form__row, .form__row:has(.field--sm) { grid-template-columns: 1fr; }
}

.field { display: flex; flex-direction: column; gap: .55rem; }
.field__label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.field input, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 300;
  padding: .5rem 0;
  border-radius: 0;                 /* iOS strips this otherwise */
  transition: border-color .3s ease;
}
.field textarea { resize: vertical; line-height: 1.65; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--white);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.32); }
.field input:user-invalid, .field textarea:user-invalid { border-bottom-color: #C86B5E; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.form__status {
  font-size: 14px;
  margin: 0;
  min-height: 1.2em;
  color: var(--sand);
}
.form__status.is-error { color: #E0938A; }

/* ─────────────────────────── FOOTER ─────────────────────────── */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: 0 0 3rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 3rem;
}
.footer__brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 0 .2rem;
}
.footer__tag { margin: 0; font-size: 13px; font-style: italic; }
.footer__meta { display: flex; flex-direction: column; align-items: flex-end; gap: .3rem; }
.footer__link {
  color: rgba(255,255,255,.75);
  font-size: 13px;
  text-decoration: none;
  transition: color .3s ease;
}
.footer__link:hover { color: var(--white); }
.footer__cookie { background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit; }
.footer__copy { font-size: 11px; letter-spacing: .5px; margin: .6rem 0 0; color: rgba(255,255,255,.42); }

/* ─────────────────────────── COOKIE CONSENT ─────────────────────────── */
.consent {
  position: fixed;
  right: var(--gut); bottom: var(--gut);
  z-index: 300;
  width: min(400px, calc(100vw - 2 * var(--gut)));
  background: var(--ink);
  color: rgba(255,255,255,.82);
  padding: 1.25rem 1.4rem 1.35rem;
  box-shadow: 0 30px 70px -28px rgba(43,36,30,.65);
}
.consent__msg { margin: 0 0 1.1rem; font-size: 13px; line-height: 1.6; }
.consent__actions { display: flex; gap: .6rem; justify-content: flex-end; }
.consent__btn {
  font-family: inherit; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: .6rem 1.5rem; cursor: pointer; border: 1px solid transparent;
  transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.consent__btn--solid { background: var(--white); color: var(--ink); border-color: var(--white); }
.consent__btn--solid:hover { background: transparent; color: var(--white); }
.consent__btn--ghost { background: transparent; color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.3); }
.consent__btn--ghost:hover { color: var(--white); border-color: rgba(255,255,255,.55); }
@media (max-width: 480px) {
  .consent { left: 0; right: 0; bottom: 0; width: auto; }
}
@media (max-width: 640px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta  { align-items: flex-start; }
}

/* ─────────────────────────── LIGHTBOX ─────────────────────────── */

.lb {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(43,36,30,.96);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 5rem;
  opacity: 0;
  transition: opacity .35s ease;
}
.lb.is-open { opacity: 1; }
.lb[hidden] { display: none; }

.lb__figure { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; max-width: 100%; max-height: 100%; }
.lb__figure img { max-width: 100%; max-height: 82vh; width: auto; object-fit: contain; }
.lb__figure figcaption {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align: center;
}

.lb__close, .lb__nav {
  position: absolute;
  background: none; border: 0; cursor: pointer;
  color: rgba(255,255,255,.65);
  transition: color .3s ease;
  line-height: 1;
}
.lb__close:hover, .lb__nav:hover { color: var(--white); }
.lb__close { top: 1.75rem; right: 2rem; font-size: 20px; }
.lb__nav   { top: 50%; transform: translateY(-50%); font-size: 48px; padding: 1rem; }
.lb__nav--prev { left: 1rem; }
.lb__nav--next { right: 1rem; }

@media (max-width: 640px) {
  .lb { padding: 3rem 1rem; }
  .lb__nav { font-size: 34px; padding: .5rem; }
}

/* ─────────────────────────── REVEAL ON SCROLL ─────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__video { display: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ─────────────────────────── FOCUS ─────────────────────────── */

:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}

/* ─────────────────────────── RESPONSIVE NAV ─────────────────────────── */

@media (max-width: 1220px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  /* Keep the primary CTA (Book / Enquire) visible on mobile — booking is the
     main action. Compact it, and move language switching into the burger menu
     (which already carries .menu__lang) so the bar never crowds. */
  .nav__cta { display: inline-block; padding: .6rem 1.15rem; font-size: 10px; letter-spacing: 1.5px; }
  .nav .lang { display: none; }
  .nav__right { gap: .85rem; }
}
@media (max-width: 360px) {
  .nav__brand { font-size: 1.3rem; }
  .nav__cta { padding: .55rem .95rem; }
}

/* ─────────────────────────── WHAT TO DO ─────────────────────────── */

/* Page banner — a short hero so the nav keeps its white-over-image treatment */
.pagehero {
  position: relative;
  height: clamp(360px, 52vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.pagehero__bg { position: absolute; inset: 0; }
.pagehero__bg img { width: 100%; height: 100%; object-fit: cover; }
.pagehero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43,36,30,.42) 0%, rgba(43,36,30,0) 30%),
    linear-gradient(0deg,   rgba(43,36,30,.78) 0%, rgba(43,36,30,.28) 42%, rgba(43,36,30,0) 68%);
}
/* keep the white hero text legible even over a bright photo */
.pagehero__content .eyebrow--light,
.pagehero__title,
.pagehero__tagline { text-shadow: 0 1px 20px rgba(43,36,30,.55); }
.pagehero__content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 var(--gut) clamp(2.5rem, 6vh, 4.5rem);
}
.pagehero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.03;
  color: var(--white);
  margin: .35rem 0 0;
}
.pagehero__tagline {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.9);
  margin: .6rem 0 0;
}

/* Sections + card grid */
.wtd-sec { padding: clamp(3.5rem, 7vw, 6rem) 0 0; }
.wtd-sec--last { padding-bottom: var(--stack); }
.wtd-sec__head { max-width: 760px; margin: 0 auto; padding: 0 var(--gut); }
.wtd-sec__head .h2 { margin-bottom: 0; }

.wtd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.4vw, 2.25rem);
  margin-top: 2.6rem;
}
.wtd-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 980px; }
@media (max-width: 900px) { .wtd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wtd-grid, .wtd-grid--2 { grid-template-columns: 1fr; } }

.wtd-card { display: flex; flex-direction: column; background: var(--white); }
.wtd-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--paper);
}
.wtd-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.wtd-card:hover .wtd-card__media img { transform: scale(1.04); }
.wtd-card__media--ph { display: flex; align-items: center; justify-content: center; background: var(--paper); }
.wtd-card__phname {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem; color: var(--sand);
}
/* logo card (e.g. Bar Skipper): show the whole mark on white, never cropped */
.wtd-card__media--logo { background: var(--white); }
.wtd-card__media--logo img { object-fit: contain; padding: 1rem; transition: none; }
.wtd-card:hover .wtd-card__media--logo img { transform: none; }

.wtd-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.3rem .15rem 0; }
.wtd-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.wtd-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-size: 1.5rem; line-height: 1.15;
  margin: 0;
}
.wtd-card__dist {
  flex: none;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone); white-space: nowrap;
}
.wtd-card__desc { margin: .6rem 0 1.25rem; font-size: 14px; line-height: 1.65; color: var(--gray-warm); }
.wtd-card__links {
  margin-top: auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem;
  padding-top: .95rem;
  border-top: 1px solid var(--hairline);
}
.wtd-link {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone); text-decoration: none;
  transition: color .3s ease;
}
.wtd-link:hover { color: var(--ink); }

.wtd-credits { margin-top: var(--stack); padding-top: 1.9rem; border-top: 1px solid var(--hairline); }
.wtd-credits p { max-width: none; margin: 0; font-size: 11px; line-height: 1.75; color: var(--gray-warm); }
.wtd-credits a { color: var(--stone); }
.wtd-credits a:hover { color: var(--ink); }

/* ═════════════════════════════ BOOKING ═════════════════════════════ */

.booking-section { padding-top: clamp(3rem, 6vw, 5rem); }

/* two columns: calendar (light) + a dark summary/form card */
.booking {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) { .booking { grid-template-columns: 1fr; } }

.booking__h { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.booking__hint {
  max-width: 46ch;
  margin: 0 0 1.8rem;
  font-size: 14px; line-height: 1.6;
  color: var(--gray-warm);
}
.booking__clear {
  margin-top: 1.2rem;
  background: none; border: 0; cursor: pointer;
  font-family: inherit;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone);
  padding: .4rem 0;
  transition: color .3s ease;
}
.booking__clear:hover { color: var(--ink); }

/* ── calendar ── */
.cal { user-select: none; -webkit-user-select: none; }
.cal__head { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.cal__titles { flex: 1; display: grid; grid-template-columns: 1fr; }
@media (min-width: 720px) { .cal__titles { grid-template-columns: 1fr 1fr; } }
.cal__head .cal__title { margin-bottom: 0; }
.cal__nav {
  flex: none;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; cursor: pointer;
  border: 1px solid var(--hairline);
  color: var(--ink); font-size: 20px; line-height: 1;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}
.cal__nav:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.cal__nav:disabled { opacity: .3; cursor: default; }
.cal__nav:disabled:hover { background: none; color: var(--ink); border-color: var(--hairline); }

.cal__months { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 720px) { .cal__months { grid-template-columns: 1fr 1fr; } }

.cal__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 400;
  text-align: center;
  margin-bottom: .8rem;
}
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal__wd {
  text-align: center;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-warm);
  padding-bottom: .5rem;
}
.cal__pad { aspect-ratio: 1 / 1; }

.cal__day {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
  font-family: inherit; font-size: 14px; color: var(--ink);
  border-radius: 0;
  transition: background-color .18s ease, color .18s ease;
}
.cal__day span { position: relative; z-index: 1; }
.cal__day:hover:not(:disabled):not(.is-arrival):not(.is-departure) { background: var(--paper); }
.cal__day:disabled { cursor: default; }
.cal__day.is-past { color: var(--hairline); }
.cal__day.is-booked { color: var(--sand); }
.cal__day.is-booked::after {           /* struck-through: clearly taken */
  content: ''; position: absolute; left: 22%; right: 22%; top: 50%;
  height: 1px; background: currentColor; opacity: .7;
}
.cal__day.is-inrange { background: var(--paper); }
.cal__day.is-arrival, .cal__day.is-departure { background: var(--ink); color: var(--white); }
.cal__day.is-arrival { border-top-left-radius: 2px; border-bottom-left-radius: 2px; }
.cal__day.is-departure { border-top-right-radius: 2px; border-bottom-right-radius: 2px; }
/* a booked night chosen as a checkout day: drop the "booked" strike-through */
.cal__day.is-arrival::after, .cal__day.is-departure::after { display: none; }

/* ── dark summary + form card ── */
.booking__side {
  background: var(--ink);
  color: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: sticky; top: 96px;
}
@media (max-width: 900px) { .booking__side { position: static; } }

.book-price { margin-bottom: 2rem; }
.book-price__empty {
  margin: 0; font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,.6);
  font-style: italic;
}
.book-price__dates {
  display: grid; gap: .9rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.book-price__k {
  display: block;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: .15rem;
}
.book-price__dates strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-size: 1.35rem;
}
.book-price__nights {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--sand);
}
.book-price__months {
  list-style: none; margin: 1rem 0 0; padding: 0;
  display: grid; gap: .35rem;
}
.book-price__months li {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.6);
}
.book-price__rows { margin-top: 1.3rem; display: grid; gap: .7rem; }
.book-price__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  font-size: 14px; color: rgba(255,255,255,.8);
}
.book-price__row--total {
  margin-top: .5rem; padding-top: .95rem;
  border-top: 1px solid rgba(255,255,255,.14);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; color: var(--white);
}
.book-price__row--tax { font-size: 13px; color: rgba(255,255,255,.55); }
.book-price__row--tax small { font-size: 11px; }
.book-price__note {
  margin: 1.1rem 0 0;
  font-size: 12px; line-height: 1.55;
  color: rgba(255,255,255,.5);
}

.book-form { gap: 1.15rem; }
.book-form__h {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-size: 1.4rem;
  margin: 0 0 .3rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.book-form .btn--solid { margin-top: .4rem; width: 100%; text-align: center; }
/* the small status line under the button (sending / error) */
.book-form .form__status { text-align: center; }
.book-form .form__status.is-error { color: #E0938A; font-weight: 400; }

/* success state — replaces the form once a request is sent */
.book-done { text-align: center; padding: 1.5rem 0 .5rem; }
.book-done__mark {
  width: 48px; height: 48px; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--sand);
  color: var(--sand); font-size: 22px; line-height: 1;
}
.book-done__h {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-size: 1.7rem; color: var(--white);
  margin: 0 0 .7rem;
}
.book-done__dates {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--sand); margin: 0 0 1.1rem;
}
.book-done__msg {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.8);
  margin: 0 auto 1.7rem; max-width: 36ch;
}
.book-done__again {
  background: none; border: 0; cursor: pointer; font-family: inherit;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.6); padding: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: color .3s ease, border-color .3s ease;
}
.book-done__again:hover { color: var(--white); border-color: var(--white); }

/* ═════════════════════════════ ADMIN (/manage.html) ═════════════════════════════ */

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  padding: 1rem 2.5rem;
}
.btn--dark:hover { background: transparent; color: var(--ink); }
.btn--dark:disabled { opacity: .5; cursor: default; }

.admin-body { background: var(--paper); }

.admin-top {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.1rem var(--gut);
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
}
.admin-top .nav__brand { color: var(--ink); font-size: 1.35rem; }
.admin-top__tag {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray-warm);
}
.admin-top__logout {
  margin-left: auto;
  background: none; border: 1px solid var(--hairline); cursor: pointer;
  font-family: inherit; font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--stone); padding: .55rem 1.2rem;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.admin-top__logout:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.admin { max-width: 1100px; margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) var(--gut) 5rem; }

/* login */
.admin-login { max-width: 380px; margin: clamp(2rem, 8vh, 6rem) auto 0; text-align: center; }
.admin-login__h {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300;
  font-size: 2.4rem; margin: 0 0 .5rem;
}
.admin-login__p { color: var(--gray-warm); font-size: 15px; margin: 0 0 2rem; }
.admin-login__form { display: flex; flex-direction: column; gap: 1rem; }

.admin-login input,
.admin-field input {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--hairline);
  color: var(--ink);
  font-family: inherit; font-size: 16px; font-weight: 300;
  padding: .85rem 1rem;
  border-radius: 0;
  transition: border-color .25s ease;
}
.admin-login input:focus,
.admin-field input:focus { outline: none; border-color: var(--stone); }
.admin-login .btn--dark { width: 100%; text-align: center; }

/* app layout */
.admin-app { display: flex; flex-direction: column; gap: clamp(1.5rem, 3vw, 2.5rem); }
.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
@media (max-width: 780px) { .admin-grid { grid-template-columns: 1fr; } }

.admin-panel { background: var(--white); border: 1px solid var(--hairline); padding: clamp(1.5rem, 3vw, 2rem); }
.admin-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400;
  font-size: 1.6rem; margin: 0 0 1.4rem;
}

.admin-form { display: flex; flex-direction: column; gap: 1.1rem; }
.admin-field { display: flex; flex-direction: column; gap: .4rem; }
.admin-field span {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--stone);
}
.admin-form .btn--dark { align-self: flex-start; }
@media (max-width: 480px) { .admin-form .btn--dark { align-self: stretch; text-align: center; } }

.admin-msg { font-size: 13px; margin: .2rem 0 0; min-height: 1.1em; color: var(--gray-warm); }
.admin-msg.is-error { color: #C0392B; }
.admin-msg.is-ok { color: #4B7B52; }
.admin-hint { font-size: 12px; line-height: 1.6; color: var(--gray-warm); margin: 1.1rem 0 0; }

/* current bookings list */
.admin-blocks { display: flex; flex-direction: column; }
.admin-empty { color: var(--gray-warm); font-size: 14px; font-style: italic; margin: 0; }
.admin-block {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .95rem 0; border-bottom: 1px solid var(--hairline);
}
.admin-block:first-child { padding-top: 0; }
.admin-block:last-child { border-bottom: 0; }
.admin-block__info { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.admin-block__dates { font-size: 15px; color: var(--ink); }
.admin-block__meta { font-size: 12px; color: var(--gray-warm); }
.admin-block__rm {
  flex: none;
  background: none; border: 1px solid var(--hairline); cursor: pointer;
  font-family: inherit; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--stone); padding: .5rem .9rem;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.admin-block__rm:hover { border-color: var(--stone); color: var(--ink); }
.admin-block__rm.is-confirm { background: #C0392B; border-color: #C0392B; color: var(--white); }

/* at-a-glance calendar */
.admin-calwrap .cal { user-select: none; }
.cal__months--admin { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.75rem 2rem; }
.cal__day--ro { cursor: default; }
.cal__day--ro:hover { background: none; }

/* ── prices-by-season table ── */
.rates-section .h2 { margin-bottom: 2rem; }
.rates__scroll { overflow-x: auto; }
.rates {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.rates th, .rates td {
  text-align: left;
  padding: 1rem 1.25rem 1rem 0;
  border-bottom: 1px solid var(--hairline);
  vertical-align: baseline;
}
.rates thead th {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 400; color: var(--gray-warm);
  padding-bottom: .7rem;
}
.rates tbody th {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400; font-size: 1.25rem; color: var(--ink);
  white-space: nowrap;
}
.rates td { color: var(--ink-soft); }
.rates__price { text-align: right; padding-right: 0; white-space: nowrap; color: var(--ink); }
.rates tbody th[scope="row"] + td { color: var(--gray-warm); font-size: 14px; }
.rates__note {
  margin: 1.8rem 0 0;
  font-size: 13px; line-height: 1.65;
  color: var(--gray-warm);
  max-width: 62ch;
}
.rates__note--muted { margin-top: .7rem; font-style: italic; color: var(--sand); }
