@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@1,6..72,500&display=swap');

:root {
  color-scheme: light;
  --ink: #123a3a;
  --ink-deep: #082d31;
  --sea: #117a78;
  --sea-light: #dff2ed;
  --foam: #f7fbfa;
  --white: #ffffff;
  --sand: #f3eadb;
  --sunset: #ed8b63;
  --muted: #496765;
  --line: rgba(18, 58, 58, 0.15);
  --shadow: 0 24px 70px rgba(8, 45, 49, 0.14);
  --radius: 1.25rem;
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  font-size: 16px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--foam);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--ink-deep);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(100% - 2rem, 76rem); margin-inline: auto; }
.section { padding: 5rem 0; }

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--sea);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -0.045em; }
h2 {
  margin-bottom: 1.3rem;
  color: var(--ink-deep);
  font-size: clamp(2.35rem, 10vw, 4.7rem);
  font-weight: 600;
  line-height: 0.98;
}
h3 { margin-bottom: 0.65rem; color: var(--ink-deep); font-size: 1.25rem; line-height: 1.25; }
p { margin-bottom: 1rem; }
.lead { color: var(--ink-deep); font-size: 1.16rem; line-height: 1.6; }

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.75rem;
  padding: max(0.75rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) 0.75rem max(1rem, env(safe-area-inset-left));
  color: var(--white);
}

.site-header.light-header { position: relative; color: var(--ink-deep); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.brand strong { font-weight: 700; }
.brand-mark {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
}

.menu-button {
  position: relative;
  z-index: 22;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  background: rgba(8, 45, 49, 0.18);
  color: inherit;
}
.light-header .menu-button { border-color: var(--line); background: var(--white); }
.menu-icon { display: grid; width: 18px; gap: 5px; }
.menu-icon i { display: block; height: 1px; background: currentColor; transition: transform 180ms ease; }
.menu-button[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(3px) rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-3px) rotate(-45deg); }

.site-nav {
  position: fixed;
  z-index: 21;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: calc(5rem + env(safe-area-inset-top)) 1.5rem calc(2rem + env(safe-area-inset-bottom));
  background: var(--ink-deep);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity 180ms ease, transform 180ms ease;
}
.site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
.site-nav a {
  display: grid;
  min-width: 12rem;
  min-height: 48px;
  place-items: center;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}
.site-nav .nav-cta { margin-top: 0.6rem; background: var(--white); color: var(--ink-deep); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 62% center; }
.hero-shade { background: linear-gradient(180deg, rgba(4,31,34,0.2) 0%, rgba(4,31,34,0.28) 38%, rgba(4,31,34,0.83) 100%); }
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - 10rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 7rem;
  padding-bottom: 2.25rem;
}
.hero-eyebrow { color: rgba(255,255,255,0.86); }
.hero h1 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(3.6rem, 15vw, 7.8rem);
  font-weight: 600;
  line-height: 0.8;
  text-wrap: balance;
}
.hero h1 em, .subhero h1 em { font-family: var(--font-display); font-weight: 500; }
.hero-lede { max-width: 36rem; margin-bottom: 1.5rem; color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1.55; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}
.button:active { transform: scale(0.97); }
.button-primary { background: var(--sunset); color: var(--ink-deep); }
.button-glass { border-color: rgba(255,255,255,0.58); background: rgba(8,45,49,0.58); color: var(--white); backdrop-filter: blur(10px); }
.button-outline { border-color: var(--line); background: transparent; color: var(--ink-deep); }
.button-light { background: var(--white); color: var(--ink-deep); }

.hero-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 1rem calc(1rem + env(safe-area-inset-bottom));
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 1rem;
  background: rgba(8,45,49,0.48);
  backdrop-filter: blur(14px);
}
.hero-facts div { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 3.2rem; padding: 0.65rem 1rem; }
.hero-facts div + div { border-top: 1px solid rgba(255,255,255,0.2); }
.hero-facts span { color: rgba(255,255,255,0.68); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-facts strong { font-size: 0.85rem; text-align: right; }

.intro { background: var(--white); }
.intro-grid { display: grid; gap: 2rem; }
.intro-copy { max-width: 35rem; }
.intro-copy p:last-child { margin-bottom: 0; color: var(--muted); }
.rhythm { display: grid; gap: 1rem; margin-top: 3.5rem; }
.rhythm article { position: relative; min-height: 17rem; padding: 2rem 1.5rem; overflow: hidden; border-radius: var(--radius); background: var(--foam); }
.rhythm article:nth-child(2) { background: var(--sea-light); }
.rhythm article:nth-child(3) { background: var(--sand); }
.rhythm-number { position: absolute; right: 0.9rem; bottom: -2.7rem; color: rgba(18,58,58,0.08); font-size: 9rem; font-weight: 700; line-height: 1; }
.rhythm article p:last-child { position: relative; z-index: 1; max-width: 26rem; margin-bottom: 0; color: var(--muted); }

.photo-break { background: var(--white); padding-top: 0; }
.photo-card { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-card img { width: 100%; min-height: 31rem; object-fit: cover; object-position: 49% center; }
.photo-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,31,34,0.72)); }
.photo-caption { position: absolute; z-index: 2; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; color: var(--white); }
.photo-caption .eyebrow { color: rgba(255,255,255,0.7); }
.photo-caption p:last-child { max-width: 36rem; margin-bottom: 0; font-size: 1.25rem; font-weight: 600; line-height: 1.35; }

.boats { background: var(--foam); }
.section-heading { display: grid; gap: 1rem; margin-bottom: 2.5rem; }
.section-heading > p { max-width: 31rem; color: var(--muted); }
.option-grid { display: grid; gap: 1rem; }
.option-card { position: relative; display: flex; min-height: 22rem; flex-direction: column; align-items: flex-start; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.option-card.featured { border-color: transparent; background: var(--ink-deep); color: rgba(255,255,255,0.78); }
.option-card.featured h3, .option-card.featured .text-link { color: var(--white); }
.option-icon { display: grid; width: 3.25rem; height: 3.25rem; margin-bottom: auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--sea); font-size: 1.7rem; }
.featured .option-icon { border-color: rgba(255,255,255,0.24); color: var(--sunset); }
.option-label { position: absolute; top: 1.25rem; right: 1.25rem; padding: 0.4rem 0.75rem; border-radius: 99px; background: var(--sunset); color: var(--ink-deep); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.option-card p { color: var(--muted); }
.option-card.featured p { color: rgba(255,255,255,0.68); }
.option-card.featured .rate-note { color: var(--white); }
.rate-note strong { color: var(--sunset); }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 0.35rem; margin-top: auto; color: var(--sea); font-weight: 700; text-underline-offset: 0.25rem; }
.text-link:active { opacity: 0.65; }

.basics { background: var(--sea-light); }
.basics-grid { display: grid; gap: 3rem; }
.basics-title > p:not(.eyebrow) { color: var(--muted); }
.basics-steps { display: grid; gap: 0; }
.basics-steps article { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line); }
.basics-steps article:first-child { border-top: 1px solid var(--line); }
.basics-steps article > span { display: grid; width: 2.7rem; height: 2.7rem; place-items: center; border-radius: 50%; background: var(--white); color: var(--sea); font-weight: 700; }
.basics-steps p { margin-bottom: 0; color: var(--muted); }

.packing { background: var(--white); }
.packing-grid { display: grid; gap: 2.5rem; }
.checklist { display: grid; margin: 0; padding: 0; list-style: none; }
.checklist li { display: flex; min-height: 3.6rem; align-items: center; gap: 0.9rem; border-bottom: 1px solid var(--line); color: var(--ink-deep); font-weight: 600; }
.checklist li:first-child { border-top: 1px solid var(--line); }
.checklist li::before { content: "✓"; display: grid; width: 1.7rem; height: 1.7rem; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--sea-light); color: var(--sea); font-size: 0.72rem; }
.rules-note { display: grid; gap: 1rem; margin-top: 3rem; padding: 1.5rem; border-radius: var(--radius); background: var(--sand); }
.rules-mark { display: grid; width: 2.8rem; height: 2.8rem; place-items: center; border-radius: 50%; background: var(--sunset); color: var(--ink-deep); font-weight: 700; }
.rules-note h3 { margin-bottom: 0.35rem; }
.rules-note p { margin-bottom: 0; color: var(--muted); font-size: 0.93rem; }
.limit-facts { display: grid; gap: 0.65rem; margin: 1rem 0; padding: 0; list-style: none; }
.limit-facts li { display: grid; gap: 0.1rem; padding: 0.85rem 1rem; border-radius: 0.65rem; background: var(--white); }
.limit-facts strong { color: var(--sea); font-size: 1.15rem; }
.limit-facts span { color: var(--ink-deep); font-size: 0.82rem; font-weight: 600; line-height: 1.35; }
.rules-note .rules-caution { margin-top: 0.85rem; }
.rules-links { display: flex; flex-direction: column; gap: 0.6rem; }
.rules-links a { min-height: 44px; color: var(--ink-deep); font-size: 0.9rem; font-weight: 700; }

.key-places { background: var(--sea-light); }
.place-grid { display: grid; gap: 1rem; }
.place-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.place-icon { display: grid; width: 2.8rem; height: 2.8rem; margin-bottom: 1.5rem; place-items: center; border-radius: 50%; background: var(--sand); color: var(--ink-deep); font-size: 1.15rem; font-weight: 700; }
.place-card .eyebrow { margin-bottom: 0.45rem; }
.place-card h3 { margin-bottom: 0.45rem; }
.place-card p { margin-bottom: 1rem; color: var(--muted); }
.place-card .place-address { font-size: 0.84rem; line-height: 1.45; }

.extras-panel { display: grid; gap: 1.5rem; margin-top: 3rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--foam); }
.extras-panel h3 { margin-bottom: 0.45rem; }
.extras-panel p:last-child { margin-bottom: 0; color: var(--muted); }
.extra-list { display: grid; gap: 0.65rem; margin: 0; padding: 0; list-style: none; }
.extra-list li { display: flex; min-height: 3.25rem; align-items: center; gap: 0.7rem; padding: 0.7rem 0.85rem; border-radius: 0.65rem; background: var(--white); color: var(--ink-deep); font-size: 0.9rem; font-weight: 600; }
.extra-list li::before { content: "+"; display: grid; width: 1.5rem; height: 1.5rem; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--sea-light); color: var(--sea); font-size: 0.82rem; font-weight: 700; }

.stay-callout { padding-top: 0; background: var(--white); }
.stay-panel, .marina-panel { display: grid; gap: 2rem; padding: 2rem 1.5rem; border-radius: calc(var(--radius) + 0.25rem); background: var(--sea); color: var(--white); }
.stay-panel .eyebrow, .marina-panel .eyebrow { color: var(--white); }
.stay-panel h2, .marina-panel h2 { color: var(--white); }
.stay-panel p:last-child { max-width: 42rem; margin-bottom: 0; }
.stay-panel .button { align-self: start; }

.contact { background: var(--ink-deep); color: rgba(255,255,255,0.72); text-align: center; }
.contact .eyebrow { color: var(--sunset); }
.contact h2 { color: var(--white); }
.contact-inner { max-width: 43rem; }
.contact-inner p:last-child { margin-bottom: 0; }

.site-footer { padding: 2.5rem 0 calc(2.5rem + env(safe-area-inset-bottom)); background: #052326; color: rgba(255,255,255,0.62); }
.footer-inner { display: grid; gap: 1rem; }
.footer-brand { color: var(--white); }
.footer-inner p { margin: 0; font-size: 0.82rem; }
.fine-print { max-width: 32rem; }

/* Lodging */
.subhero { padding: 4rem 0 5rem; background: var(--sea-light); }
.subhero-grid { display: grid; gap: 3rem; }
.subhero-copy { align-self: center; }
.subhero h1 { margin-bottom: 1.4rem; color: var(--ink-deep); font-size: clamp(3.9rem, 16vw, 7.8rem); font-weight: 600; line-height: 0.82; }
.subhero-copy > p:not(.eyebrow) { max-width: 35rem; color: var(--muted); font-size: 1.08rem; }
.subhero-photo { margin: 0; }
.subhero-photo img { width: 100%; aspect-ratio: 4 / 5; border-radius: 9rem 9rem var(--radius) var(--radius); object-fit: cover; }
.subhero-photo figcaption { margin-top: 0.75rem; color: var(--muted); font-size: 0.78rem; }

.lodging-primary { background: var(--white); }
.lodging-grid { display: grid; gap: 2.5rem; }
.lodging-heading > p:not(.eyebrow) { color: var(--muted); }
.booking-card { padding: 1.6rem; border-radius: var(--radius); background: var(--ink-deep); color: var(--white); }
.booking-kicker { color: var(--sunset); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.booking-card dl { margin: 0; }
.booking-card dl > div { display: grid; gap: 0.2rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
.booking-card dt { color: rgba(255,255,255,0.55); font-size: 0.76rem; text-transform: uppercase; }
.booking-card dd { margin: 0; font-weight: 600; }
.booking-note { margin: 1.25rem 0 0; color: rgba(255,255,255,0.62); font-size: 0.83rem; }

.shack-finder { background: var(--foam); }
.shack-finder-heading > div:last-child > p { color: var(--muted); }
.shack-finder-heading .text-link { margin-top: 0.25rem; }
.trip-callout {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--sunset);
  border-radius: 0.55rem;
  background: var(--sand);
  color: var(--ink-deep);
}
.shack-filters {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(8, 45, 49, 0.06);
}
.filter-grid { display: grid; gap: 1rem; }
.filter-field { display: grid; gap: 0.45rem; }
.filter-field > span, .amenity-filters legend {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-field input, .filter-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  outline: none;
  background: var(--foam);
  color: var(--ink-deep);
  font: inherit;
  font-size: 1rem;
}
.filter-field select {
  padding-right: 2.25rem;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--sea) 50%), linear-gradient(135deg, var(--sea) 50%, transparent 50%);
  background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}
.filter-field input:focus-visible, .filter-field select:focus-visible { border-color: var(--sea); box-shadow: 0 0 0 3px rgba(17,122,120,0.15); }
.amenity-filters { margin: 1.25rem 0 0; padding: 1.2rem 0 0; border: 0; border-top: 1px solid var(--line); }
.amenity-filters legend { padding: 0 0.5rem 0 0; }
.amenity-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.amenity-options label { position: relative; }
.amenity-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.amenity-options span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--foam);
  color: var(--ink-deep);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}
.amenity-options span::before { content: "+"; margin-right: 0.45rem; color: var(--sea); font-size: 1rem; }
.amenity-options input:checked + span { border-color: var(--sea); background: var(--sea); color: var(--white); }
.amenity-options input:checked + span::before { content: "✓"; color: var(--white); }
.amenity-options input:focus-visible + span { outline: 3px solid rgba(17,122,120,0.28); outline-offset: 2px; }
.amenity-options span:active { transform: scale(0.98); }
.filter-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.filter-footer p { margin: 0; color: var(--muted); font-size: 0.88rem; font-weight: 600; }
.filter-reset {
  min-height: 44px;
  padding: 0.5rem 0.8rem;
  border: 0;
  border-radius: 0.6rem;
  background: transparent;
  color: var(--sea);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  cursor: pointer;
}
.filter-reset:active { opacity: 0.65; }

.compare-panel {
  margin: 0 0 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--ink-deep);
  color: var(--white);
}
.compare-panel-header { display: flex; flex-wrap: wrap; align-items: start; justify-content: space-between; gap: 1rem; }
.compare-panel .eyebrow { margin-bottom: 0.35rem; color: var(--sunset); }
.compare-panel h3 { margin: 0; color: var(--white); }
.compare-panel .filter-reset { color: var(--white); }
.compare-help { margin: 1rem 0 0; color: rgba(255,255,255,0.76); font-size: 0.9rem; }
.compare-swipe { margin: 1rem 0 -0.5rem; color: rgba(255,255,255,0.76); font-size: 0.8rem; }
.compare-swipe[hidden] { display: none; }
.comparison-scroll { margin-top: 1.25rem; overflow-x: auto; border: 1px solid rgba(255,255,255,0.18); border-radius: 0.85rem; -webkit-overflow-scrolling: touch; }
.comparison-scroll:focus-visible { outline: 3px solid var(--sunset); outline-offset: 3px; }
.comparison-table { width: 100%; min-width: 42rem; border-collapse: collapse; background: rgba(255,255,255,0.04); font-size: 0.84rem; }
.comparison-table th, .comparison-table td { min-width: 10.5rem; padding: 0.85rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.14); text-align: left; vertical-align: top; }
.comparison-table thead th { color: var(--white); font-size: 0.96rem; }
.comparison-table tbody th { min-width: 8rem; color: rgba(255,255,255,0.62); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }
.comparison-table td { color: rgba(255,255,255,0.9); }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }

.shack-results { display: grid; gap: 1rem; }
.shack-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.shack-card.is-compared { border-color: var(--sea); box-shadow: 0 0 0 2px rgba(17,122,120,0.12); }
.shack-card.is-host-stay { border-color: var(--sunset); }
.shack-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.shack-number { margin: 0 0 0.25rem; color: var(--sunset); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.shack-card h3 { margin-bottom: 0; font-size: 1.45rem; }
.host-stay-badge { display: inline-block; margin: 0.55rem 0 0; padding: 0.3rem 0.55rem; border-radius: 999px; background: var(--sand); color: var(--ink-deep); font-size: 0.72rem; font-weight: 700; }
.capacity-pill { flex: 0 0 auto; padding: 0.35rem 0.65rem; border-radius: 99px; background: var(--sea-light); color: var(--ink-deep); font-size: 0.76rem; font-weight: 700; white-space: nowrap; }
.shack-metrics { display: grid; grid-template-columns: repeat(2, 1fr); margin: 1.25rem 0 0; border: 1px solid var(--line); border-radius: 0.8rem; }
.shack-metrics > div { padding: 0.75rem; }
.shack-metrics > div:nth-child(even) { border-left: 1px solid var(--line); }
.shack-metrics > div:nth-child(n + 3) { border-top: 1px solid var(--line); }
.shack-metrics dt { color: var(--muted); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; }
.shack-metrics dd { margin: 0.12rem 0 0; color: var(--ink-deep); font-size: 1.05rem; font-weight: 700; }
.bed-breakdown { margin: 1rem 0 0; color: var(--muted); font-size: 0.86rem; }
.bed-breakdown strong { color: var(--ink-deep); }
.amenity-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.amenity-tags li { padding: 0.32rem 0.55rem; border-radius: 0.4rem; background: var(--foam); color: var(--muted); font-size: 0.72rem; font-weight: 700; }
.amenity-tags li.available { background: var(--sea-light); color: var(--ink-deep); }
.minimum-note { margin: 0.85rem 0 0; color: var(--muted); font-size: 0.76rem; }
.shack-card-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: auto; padding-top: 1.25rem; }
.shack-card-actions .text-link { margin-top: 0; }
.compare-choice { position: relative; display: inline-flex; }
.compare-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.compare-choice span { display: inline-flex; min-height: 44px; align-items: center; padding: 0.55rem 0.8rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-deep); font-size: 0.8rem; font-weight: 700; cursor: pointer; }
.compare-choice span::before { content: "+"; margin-right: 0.4rem; color: var(--sea); font-size: 1rem; }
.compare-choice input:checked + span { border-color: var(--sea); background: var(--sea); color: var(--white); }
.compare-choice input:checked + span::before { content: "✓"; color: var(--white); }
.compare-choice input:focus-visible + span { outline: 3px solid rgba(17,122,120,0.28); outline-offset: 2px; }
.compare-choice span:active { transform: scale(0.98); }
.shack-empty { padding: 3rem 1.25rem; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--white); text-align: center; }
.shack-empty p { color: var(--muted); }
.shack-source-note { max-width: 61rem; margin: 2rem 0 0; color: var(--muted); font-size: 0.76rem; }

.choose-stay { background: var(--foam); }
.stay-options { display: grid; gap: 1rem; }
.stay-options article { display: flex; min-height: 20rem; flex-direction: column; align-items: flex-start; padding: 1.5rem; border-radius: var(--radius); background: var(--white); }
.stay-options article > span { margin-bottom: auto; color: var(--sunset); font-size: 2.2rem; font-weight: 700; }
.stay-options article p { color: var(--muted); }

.booking-checklist { background: var(--white); }
.booking-checklist-grid { display: grid; gap: 2rem; }
.marina-details { padding-top: 0; background: var(--white); }
.marina-panel { background: var(--sea); }
.marina-panel h2 { margin-bottom: 0.8rem; }
.marina-panel p:last-child { margin-bottom: 0; }
.marina-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.compact-contact .text-link { justify-content: center; margin-top: 1.2rem; color: var(--sunset); }

@media (width >= 48rem) {
  .shell { width: min(100% - 4rem, 76rem); }
  .section { padding: 7rem 0; }
  .site-header { padding-inline: 2rem; }
  .hero-content { min-height: calc(100svh - 7.5rem); padding-bottom: 4rem; }
  .hero-image { object-position: center; }
  .hero-facts { grid-template-columns: repeat(3, 1fr); width: min(100% - 4rem, 76rem); margin: 0 auto 2rem; }
  .hero-facts div { display: block; min-height: 4.8rem; padding: 1rem 1.25rem; }
  .hero-facts div + div { border-top: 0; border-left: 1px solid rgba(255,255,255,0.2); }
  .hero-facts span, .hero-facts strong { display: block; text-align: left; }
  .hero-facts strong { margin-top: 0.25rem; font-size: 0.95rem; }
  .intro-grid, .section-heading, .packing-grid, .lodging-grid, .booking-checklist-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 4rem; }
  .rhythm { grid-template-columns: repeat(3, 1fr); }
  .option-grid { grid-template-columns: repeat(2, 1fr); }
  .place-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .extras-panel { grid-template-columns: 0.8fr 1.2fr; align-items: start; padding: 2rem; }
  .extra-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .basics-grid { grid-template-columns: 0.9fr 1.1fr; gap: 5rem; }
  .rules-note { grid-template-columns: auto 1fr; padding: 2rem; }
  .limit-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .rules-links { grid-column: 2; flex-direction: row; gap: 1.5rem; }
  .stay-panel, .marina-panel { grid-template-columns: 1fr auto; align-items: end; padding: 3rem; }
  .footer-inner { grid-template-columns: auto 1fr; align-items: center; }
  .footer-inner .fine-print { grid-column: 2; }
  .subhero { padding: 5rem 0 7rem; }
  .subhero-grid { grid-template-columns: 1fr 0.78fr; align-items: center; gap: 5rem; }
  .subhero-photo img { aspect-ratio: 3 / 4; }
  .booking-card { padding: 2rem; }
  .compare-swipe { display: none; }
  .shack-filters { padding: 1.5rem; }
  .filter-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-search { grid-column: 1 / -1; }
  .shack-results { grid-template-columns: repeat(2, 1fr); }
  .shack-metrics { grid-template-columns: repeat(4, 1fr); }
  .shack-metrics > div:nth-child(n) { border-top: 0; }
  .shack-metrics > div + div { border-left: 1px solid var(--line); }
  .stay-options { grid-template-columns: repeat(3, 1fr); }
  .wide-checklist { grid-template-columns: repeat(2, 1fr); column-gap: 2rem; }
  .wide-checklist li:nth-child(2) { border-top: 1px solid var(--line); }
}

@media (width >= 64rem) {
  .site-header { position: absolute; padding-inline: 3rem; }
  .site-header.light-header { position: relative; }
  .menu-button { display: none; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    color: inherit;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .site-nav a { min-width: auto; min-height: 44px; padding: 0.55rem 0.85rem; font-size: 0.84rem; }
  .site-nav .nav-cta { margin: 0 0 0 0.4rem; padding-inline: 1.15rem; }
  .light-header .site-nav .nav-cta { background: var(--ink-deep); color: var(--white); }
  .hero-content { padding-top: 9rem; }
  .hero-lede { font-size: 1.15rem; }
  .option-grid { grid-template-columns: repeat(4, 1fr); }
  .place-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .option-card { min-height: 24rem; }
  .filter-grid { grid-template-columns: 1.45fr repeat(4, 1fr); }
  .filter-search { grid-column: auto; }
  .shack-results { grid-template-columns: repeat(3, 1fr); }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .button-primary:hover { background: #f29b78; }
  .button-outline:hover { background: var(--ink-deep); color: var(--white); }
  .site-nav a:hover, .text-link:hover { opacity: 0.72; }
  .site-nav .nav-cta:hover { opacity: 1; transform: translateY(-1px); }
  .filter-reset:hover { opacity: 0.7; }
  .shack-card { transition: transform 160ms ease, box-shadow 160ms ease; }
  .shack-card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(8,45,49,0.08); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
