:root {
  --ink: #17201b;
  --muted: #5f6c64;
  --line: #dfe5dc;
  --paper: #fbfaf6;
  --mist: #eef3ec;
  --sand: #f2ede3;
  --olive: #60724a;
  --terracotta: #b6603a;
  --terracotta-dark: #914629;
  --sea: #2f7180;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 32, 27, 0.16);
  --soft-shadow: 0 18px 48px rgba(23, 32, 27, 0.1);
  --font-body: "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Helvetica Neue", Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(238, 243, 236, 0.65), rgba(251, 250, 246, 0) 420px),
    var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(23, 32, 27, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  flex: 0 1 auto;
  text-decoration: none;
}

.brand img {
  width: clamp(220px, 23vw, 300px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 680;
}

.site-nav a:hover {
  background: var(--mist);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #26352d;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 14, 11, 0.78), rgba(8, 14, 11, 0.18) 62%, rgba(8, 14, 11, 0.35)),
    linear-gradient(180deg, rgba(8, 14, 11, 0.05), rgba(8, 14, 11, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: clamp(92px, 16vw, 190px) clamp(20px, 7vw, 96px) clamp(58px, 10vw, 110px);
  color: var(--white);
}

.hero-content p,
.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  color: var(--terracotta);
}

.hero-content h1 {
  margin: 0;
  max-width: 920px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.hero-content span {
  display: block;
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 720;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(182, 96, 58, 0.26);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.quick-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(980px, calc(100% - 36px));
  margin: -42px auto 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(223, 229, 220, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-facts div {
  display: grid;
  gap: 4px;
  min-height: 94px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.quick-facts div:last-child {
  border-right: 0;
}

.quick-facts strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 760;
  line-height: 1;
}

.quick-facts span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
}

.intro,
.split,
.contact-grid,
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.intro p,
.split p,
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 10px;
  width: min(1380px, calc(100% - 20px));
  margin: 0 auto;
}

.image-band img {
  width: 100%;
  height: clamp(220px, 35vw, 460px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 18px;
  background: var(--line);
}

.experience-strip article {
  min-height: 190px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 237, 227, 0.68)),
    var(--white);
}

.experience-strip span {
  color: var(--terracotta);
  font-weight: 720;
}

.experience-strip h3 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  font-weight: 760;
  line-height: 1.04;
}

.experience-strip p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.amenity,
.apartment-list article,
.price-table div,
.contact-details article,
.form-panel,
.availability-panel,
.calendar-panel {
  background: var(--white);
}

.amenity {
  min-height: 180px;
  padding: 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.amenity:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 -3px 0 rgba(47, 113, 128, 0.24);
}

.amenity p,
.apartment-list p,
.fineprint,
.legal-text p,
.story-list p {
  color: var(--muted);
}

.apartment-list {
  display: grid;
  gap: 14px;
}

.apartment-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.apartment-list span,
.story-list span,
.contact-details span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--sea);
  font-weight: 720;
  font-size: 0.78rem;
}

.prices {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.price-table div {
  display: grid;
  gap: 4px;
  min-height: 132px;
  padding: 20px;
}

.price-table span {
  color: var(--muted);
}

.price-table b {
  align-self: end;
  color: var(--terracotta);
}

.fineprint {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #dfe5dc;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(8),
.gallery-item:nth-child(15) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(5),
.gallery-item:nth-child(12),
.gallery-item:nth-child(19) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(23, 32, 27, 0.78);
  font-size: 0.82rem;
  font-weight: 680;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 48px);
  background: rgba(10, 15, 12, 0.92);
}

.lightbox.open {
  display: flex;
}

.lightbox figure {
  display: grid;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  background: #0d1410;
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.45);
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  font-weight: 680;
}

.lightbox figcaption span {
  color: #e7ede8;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 64px;
  font-size: 2.7rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 72px;
  padding: 32px;
  color: var(--white);
  background: var(--olive);
  border-radius: 8px;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.cta-band .eyebrow {
  color: #f2c5a4;
}

.page-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) 0 34px;
}

.booking-hero {
  width: min(1040px, calc(100% - 36px));
}

.page-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.15rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.story-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  padding-top: 0;
}

.story-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
}

.story-list h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
}

.family-hero {
  position: relative;
  display: grid;
  min-height: min(690px, calc(100svh - 72px));
  align-items: end;
  overflow: hidden;
  background: #16231f;
}

.family-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 16, 13, 0.84), rgba(10, 16, 13, 0.24) 62%, rgba(10, 16, 13, 0.5)),
    linear-gradient(180deg, rgba(10, 16, 13, 0.12), rgba(10, 16, 13, 0.68));
}

.family-hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  padding: clamp(64px, 9vw, 118px) 0 clamp(46px, 7vw, 76px);
  margin: 0 auto;
  color: var(--white);
}

.family-hero-content h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.family-hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #eef3ec;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.family-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - 36px));
  margin: -48px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(223, 229, 220, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.family-facts article {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: clamp(18px, 3vw, 26px);
  border-right: 1px solid var(--line);
}

.family-facts article:last-child {
  border-right: 0;
}

.family-facts strong {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1;
}

.family-facts span,
.family-intro-copy p,
.family-benefits p,
.family-activity-grid p,
.family-day span,
.family-gallery-callout p {
  color: var(--muted);
}

.family-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.family-intro-copy {
  display: grid;
  gap: 18px;
}

.family-intro-copy p {
  margin: 0;
  font-size: 1.08rem;
}

.family-stay {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.family-stay-image img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.family-stay-panel {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 64px);
}

.family-stay-panel h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.family-benefits {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.family-benefits article {
  padding: 22px;
  background: var(--paper);
}

.family-benefits span,
.family-activity-grid span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 720;
}

.family-activity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.family-activity-grid article {
  min-height: 250px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 236, 0.58)),
    var(--white);
}

.family-activity-grid h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.family-day {
  margin: clamp(20px, 5vw, 52px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 32, 27, 0.94), rgba(47, 113, 128, 0.82)),
    #17201b;
}

.family-day-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) 0;
}

.family-day h2 {
  color: var(--white);
}

.family-day ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.family-day li {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.family-day li:last-child {
  border-bottom: 0;
}

.family-day span {
  color: #d9e6df;
}

.family-gallery-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.family-gallery-callout img {
  width: 100%;
  height: clamp(360px, 45vw, 620px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.family-gallery-callout p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 26px;
  font-size: 1.08rem;
}

.family-cta {
  background:
    linear-gradient(90deg, rgba(96, 114, 74, 0.98), rgba(47, 113, 128, 0.95)),
    var(--olive);
}

.workation-hero {
  position: relative;
  min-height: min(790px, calc(100svh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #17201b;
}

.workation-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workation-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 16, 13, 0.86), rgba(10, 16, 13, 0.22) 58%, rgba(10, 16, 13, 0.42)),
    linear-gradient(180deg, rgba(10, 16, 13, 0.08), rgba(10, 16, 13, 0.72));
}

.workation-hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 36px));
  padding: clamp(100px, 15vw, 190px) 0 clamp(96px, 12vw, 150px);
  margin: 0 auto;
}

.workation-hero-content h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8vw, 7.6rem);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.workation-hero-content > p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: #f5f2eb;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.workation-signal {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1040px, calc(100% - 36px));
  margin: -62px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(23, 32, 27, 0.72);
  backdrop-filter: blur(18px);
}

.workation-signal span {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 760;
  text-align: center;
}

.workation-signal span:last-child {
  border-right: 0;
}

.workation-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: end;
  padding-top: clamp(84px, 10vw, 126px);
}

.workation-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.workation-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.workation-proof article {
  min-height: 190px;
  display: grid;
  gap: 16px;
  align-content: space-between;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.workation-proof strong {
  color: var(--sea);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 0.92;
}

.workation-proof span {
  color: var(--muted);
  font-weight: 680;
}

.workation-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(20px, 5vw, 64px);
  align-items: stretch;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) 0;
}

.workation-feature-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
}

.workation-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.workation-feature-media img + img {
  min-height: 360px;
  align-self: end;
}

.workation-feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: #17201b;
  color: var(--white);
  box-shadow: var(--shadow);
}

.workation-feature-copy h2 {
  font-size: clamp(2rem, 4vw, 4.35rem);
}

.workation-checks {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.workation-checks article {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.workation-checks p {
  margin: 0;
  color: #d8e1db;
}

.rhythm-section {
  padding-top: 34px;
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.rhythm-grid article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 243, 236, 0.8)),
    var(--white);
}

.rhythm-grid span,
.afterwork-list span {
  color: var(--terracotta);
  font-weight: 760;
  font-size: 0.82rem;
}

.rhythm-grid h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.05;
}

.rhythm-grid p,
.afterwork-split p,
.afterwork-list p {
  color: var(--muted);
}

.afterwork-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.afterwork-split > div > p:not(.eyebrow) {
  font-size: 1.08rem;
}

.afterwork-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.afterwork-list article {
  display: grid;
  grid-template-columns: 52px 0.8fr 1.2fr;
  gap: 18px;
  align-items: start;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
}

.afterwork-list h3,
.afterwork-list p {
  margin: 0;
}

.workation-closing {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto 72px;
  border-radius: 8px;
  color: var(--white);
  background: #17201b;
}

.workation-closing img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workation-closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 16, 13, 0.78), rgba(10, 16, 13, 0.16) 65%, rgba(10, 16, 13, 0.34));
}

.workation-closing div {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(28px, 6vw, 64px);
}

.workation-closing h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 5vw, 4.7rem);
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100svh - 72px));
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #17201b;
}

.landing-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 16, 13, 0.84), rgba(10, 16, 13, 0.22) 58%, rgba(10, 16, 13, 0.45)),
    linear-gradient(180deg, rgba(10, 16, 13, 0.08), rgba(10, 16, 13, 0.68));
}

.landing-hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 36px));
  padding: clamp(82px, 13vw, 160px) 0 clamp(54px, 8vw, 90px);
  margin: 0 auto;
}

.landing-hero-content h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.5vw, 6.2rem);
  font-weight: 760;
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-wrap: balance;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

.landing-hero-content > p:not(.eyebrow) {
  max-width: 730px;
  margin: 24px 0 0;
  color: #eef3ec;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.landing-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1120px, calc(100% - 36px));
  margin: -48px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(223, 229, 220, 0.95);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.landing-facts article {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: clamp(18px, 3vw, 26px);
  border-right: 1px solid var(--line);
}

.landing-facts article:last-child {
  border-right: 0;
}

.landing-facts strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1;
}

.landing-facts span,
.landing-intro p,
.landing-feature-copy > p,
.landing-benefits p,
.landing-card-grid p,
.landing-day span,
.landing-related span,
.landing-cta p:not(.eyebrow) {
  color: var(--muted);
}

.landing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.landing-intro p {
  margin: 0;
  font-size: 1.08rem;
}

.landing-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.landing-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.landing-feature-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 64px);
}

.landing-feature-copy > p:not(.eyebrow) {
  margin: 0;
  font-size: 1.06rem;
}

.landing-benefits {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.landing-benefits article {
  padding: 22px;
  background: var(--paper);
}

.landing-benefits span,
.landing-card-grid span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--sea);
  font-size: 0.78rem;
  font-weight: 720;
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.landing-card-grid article {
  min-height: 250px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 236, 0.58)),
    var(--white);
}

.landing-card-grid h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.08;
}

.landing-day {
  margin: clamp(20px, 5vw, 52px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 32, 27, 0.94), rgba(47, 113, 128, 0.82)),
    #17201b;
}

.landing-day-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) 0;
}

.landing-day h2 {
  color: var(--white);
}

.landing-day ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-day li {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.landing-day li:last-child {
  border-bottom: 0;
}

.landing-day b {
  display: block;
  margin-bottom: 4px;
}

.landing-day span {
  display: block;
  color: #d9e6df;
}

.landing-related {
  padding-top: 34px;
}

.landing-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.landing-related-grid a {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  box-shadow: var(--soft-shadow);
}

.landing-related-grid a:hover {
  transform: translateY(-2px);
}

.landing-related-grid strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.1;
}

.landing-related-grid span {
  font-size: 0.88rem;
}

.landing-cta {
  background:
    linear-gradient(90deg, rgba(96, 114, 74, 0.98), rgba(47, 113, 128, 0.95)),
    var(--olive);
}

.landing-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px 0 0;
  color: #e5ede7;
}

.form-panel,
.availability-panel,
.calendar-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  width: min(1320px, calc(100% - 36px));
  padding-top: 38px;
}

.booking-layout > * {
  min-width: 0;
}

.calendar-panel {
  position: relative;
  overflow: hidden;
}

.calendar-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--terracotta), var(--sea), var(--olive));
}

.booking-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.calendar-actions {
  display: flex;
  gap: 8px;
  padding-bottom: 16px;
}

.icon-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.calendar-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 160px;
  padding: 0 14px;
  font-size: 0.92rem;
  font-weight: 760;
}

.calendar-nav-button span {
  font-size: 1.65rem;
  line-height: 0.8;
}

.calendar-summary {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  margin-bottom: 16px;
  color: var(--white);
  background: #17201b;
  border-radius: 8px;
}

.calendar-summary strong {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.1;
}

.calendar-summary span {
  color: #d6ddd7;
}

.price-breakdown {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
  margin-bottom: 16px;
  border: 1px solid #d6dfd4;
  border-radius: 8px;
  background: #f8faf4;
}

.price-breakdown > strong {
  font-size: 1.04rem;
}

.price-breakdown > span,
.price-breakdown p {
  margin: 0;
  color: var(--muted);
}

.price-breakdown > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.price-breakdown b {
  color: var(--terracotta-dark);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
}

.price-breakdown dl {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-breakdown dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 12px;
  background: var(--paper);
}

.price-breakdown dt {
  color: var(--muted);
  font-weight: 680;
}

.price-breakdown dd {
  margin: 0;
  font-weight: 760;
  text-align: right;
}

.price-breakdown .price-warning {
  color: #8b381e;
  font-weight: 760;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 680;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.calendar-legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.legend-free {
  background: var(--mist);
  border: 1px solid #bfcbbf;
}

.legend-selected {
  background: var(--sea);
}

.legend-booked {
  background: #d6c2b7;
}

.calendar-status {
  margin: 0 0 18px;
  color: var(--muted);
}

.rate-calendar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.calendar-month {
  min-width: 0;
}

.calendar-month header {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: var(--sand);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 760;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.calendar-weekdays {
  margin-bottom: 5px;
}

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.calendar-empty,
.calendar-day {
  min-width: 0;
  aspect-ratio: 1 / 0.92;
}

.calendar-day {
  display: grid;
  align-content: center;
  gap: 2px;
  width: 100%;
  padding: 5px 3px;
  border: 1px solid #d6dfd4;
  border-radius: 8px;
  background: #f8faf4;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.calendar-day:hover {
  transform: translateY(-2px);
  border-color: var(--sea);
  background: #eef7f4;
}

.calendar-day:disabled {
  cursor: not-allowed;
}

.day-number {
  font-weight: 760;
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
}

.day-rate {
  color: var(--terracotta-dark);
  font-size: clamp(0.62rem, 0.92vw, 0.76rem);
  font-weight: 720;
}

.calendar-day.is-booked,
.calendar-day.is-past {
  background: #eee8e3;
  border-color: #e0d2ca;
  color: #9a8c84;
  opacity: 0.82;
}

.calendar-day.is-booked .day-rate,
.calendar-day.is-past .day-rate {
  color: #9a6a55;
}

.calendar-day.is-selected {
  background: var(--sea);
  border-color: var(--sea);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(47, 113, 128, 0.25);
}

.calendar-day.is-selected .day-rate,
.calendar-day.is-in-range .day-rate {
  color: var(--white);
}

.calendar-day.is-in-range {
  background: #789b93;
  border-color: #789b93;
  color: var(--white);
}

.booking-form {
  position: sticky;
  top: 92px;
}

.compact-dates input {
  color: var(--muted);
}

.booking-notes {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
  padding-top: 0;
}

.booking-notes .fineprint {
  grid-column: 2;
  margin-top: -26px;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfd8cf;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.notice {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 680;
}

.notice.success {
  background: #e5f4e8;
  color: #23512e;
}

.notice.error {
  background: #fae9e2;
  color: #8b381e;
}

.form-verification {
  min-width: 0;
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.form-panel [hidden] {
  display: none;
}

.form-panel .verification-choice {
  margin: 14px 0;
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
  max-width: 100%;
}

.form-panel [data-verification-revoke]:not([hidden]) {
  display: block;
}

.form-verification .fineprint {
  margin: 8px 0 0;
}

.form-panel .button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.availability-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
}

.availability-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.compact-table {
  grid-template-columns: 1fr;
}

.compact-table div {
  min-height: auto;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-details a {
  font-weight: 700;
  text-decoration: none;
}

.legal-text {
  max-width: 860px;
}

.legal-text h2 {
  margin-top: 28px;
  font-size: 1.6rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr 1.4fr;
  gap: 18px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #17201b;
}

.site-footer p {
  margin: 6px 0 0;
  color: #b7c2ba;
}

.site-footer a {
  display: block;
  margin-bottom: 6px;
  color: #f4eee5;
  text-decoration: none;
}

.footer-landings {
  columns: 2;
  column-gap: 22px;
}

.footer-landings a {
  break-inside: avoid;
  color: #dbe5dd;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }
}

@media (max-width: 960px) {
  .amenity-grid,
  .price-table,
  .family-activity-grid,
  .landing-card-grid,
  .landing-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .intro,
  .split,
  .family-intro,
  .family-stay,
  .family-day-inner,
  .family-gallery-callout,
  .workation-intro,
  .landing-intro,
  .landing-feature,
  .landing-day-inner,
  .contact-grid,
  .booking-grid,
  .booking-layout,
  .booking-notes,
  .workation-feature,
  .afterwork-split {
    grid-template-columns: 1fr;
  }

  .workation-proof,
  .rhythm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workation-feature-media img,
  .workation-feature-media img + img,
  .landing-feature-image img {
    min-height: 360px;
  }

  .booking-form {
    position: static;
  }

  .booking-notes .fineprint {
    grid-column: auto;
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    gap: 14px;
  }

  .brand img {
    width: min(270px, calc(100vw - 110px));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .button {
    width: 100%;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .image-band img {
    height: 250px;
  }

  .amenity-grid,
  .price-table,
  .quick-facts,
  .family-facts,
  .landing-facts,
  .family-activity-grid,
  .landing-card-grid,
  .landing-related-grid,
  .workation-signal,
  .workation-proof,
  .experience-strip,
  .rhythm-grid,
  .rate-calendar,
  .form-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .workation-hero {
    min-height: 720px;
  }

  .workation-hero-content {
    padding-bottom: 96px;
  }

  .workation-signal {
    margin-top: -48px;
  }

  .workation-signal span {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .workation-signal span:last-child {
    border-bottom: 0;
  }

  .workation-feature-media {
    grid-template-columns: 1fr;
  }

  .workation-feature-media img,
  .workation-feature-media img + img {
    min-height: 260px;
  }

  .afterwork-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .workation-closing {
    min-height: 560px;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(15) {
    grid-column: span 2;
  }

  .gallery-item img {
    min-height: 150px;
  }

  .gallery-item span {
    opacity: 1;
    transform: none;
    font-size: 0.72rem;
  }

  .lightbox {
    padding: 58px 10px 18px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .lightbox figcaption {
    padding: 0 58px;
    font-size: 0.88rem;
  }

  .quick-facts {
    margin-top: -24px;
  }

  .quick-facts div {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts div:last-child {
    border-bottom: 0;
  }

  .family-hero {
    min-height: 690px;
  }

  .family-facts {
    margin-top: -26px;
  }

  .family-facts article {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .family-facts article:last-child {
    border-bottom: 0;
  }

  .landing-hero {
    min-height: 690px;
  }

  .landing-facts {
    margin-top: -26px;
  }

  .landing-facts article {
    min-height: 90px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .landing-facts article:last-child {
    border-bottom: 0;
  }

  .landing-feature-image img {
    min-height: 340px;
  }

  .landing-day li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-landings {
    columns: 1;
  }

  .family-stay-image img {
    min-height: 340px;
  }

  .family-day li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cta-band {
    display: grid;
    padding: 24px;
  }

  .story-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-toolbar {
    grid-template-columns: minmax(0, 1fr);
  }

  .calendar-actions {
    justify-content: stretch;
    padding-bottom: 0;
  }

  .icon-button {
    flex: 1;
  }

  .calendar-nav-button {
    min-width: 0;
    padding: 0 8px;
  }

  .calendar-day {
    aspect-ratio: 1 / 1.05;
    border-radius: 7px;
  }

  .day-rate {
    font-size: 0.58rem;
  }
}

.image-band picture,
.family-stay-image picture,
.family-gallery-callout picture,
.workation-feature-media picture,
.landing-feature-image picture {
  display: block;
  min-width: 0;
  height: 100%;
}

.family-hero > picture,
.workation-hero > picture,
.landing-hero > picture,
.workation-closing > picture {
  position: absolute;
  inset: 0;
}

.family-hero > picture img,
.workation-hero > picture img,
.landing-hero > picture img,
.workation-closing > picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workation-feature-media picture:nth-child(2) img {
  min-height: 360px;
}

.apartment-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.apartment-facts li {
  padding: 7px 10px;
  border: 1px solid #d6dfd4;
  border-radius: 999px;
  background: #f8faf4;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 680;
}

.trust-section {
  display: grid;
  gap: 28px;
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-facts article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 155px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--white);
}

.trust-facts strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  line-height: 1;
}

.trust-facts span {
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-grid figure {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 8px;
  background: #17201b;
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.testimonial-grid blockquote {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.testimonial-grid figcaption {
  display: grid;
  gap: 2px;
}

.testimonial-grid figcaption span {
  color: #cbd6ce;
  font-size: 0.9rem;
}

.booking-step-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(680px, calc(100% - 36px));
  margin: 0 auto;
}

.booking-step-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 760;
  text-decoration: none;
}

.booking-step-nav span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--sea);
  color: var(--white);
  font-size: 0.82rem;
}

.booking-continue {
  width: 100%;
  margin-top: 20px;
}

.price-details {
  display: grid;
  gap: 10px;
}

.price-details summary {
  width: fit-content;
  color: var(--sea);
  cursor: pointer;
  font-weight: 760;
}

.price-details[open] summary {
  margin-bottom: 10px;
}

.form-privacy {
  margin: -2px 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-privacy a {
  color: var(--sea);
  font-weight: 700;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .trust-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .booking-hero {
    padding: 36px 0 22px;
  }

  .booking-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .booking-step-nav {
    position: sticky;
    top: 66px;
    z-index: 8;
    width: 100%;
    gap: 1px;
    padding: 8px 18px;
    background: rgba(251, 250, 246, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }

  .booking-step-nav a {
    min-height: 42px;
    padding: 6px 8px;
    font-size: 0.82rem;
  }

  .booking-layout {
    width: min(100% - 24px, 680px);
    padding-top: 18px;
  }

  .calendar-panel,
  .booking-form {
    padding: 20px 16px;
  }

  .calendar-panel {
    overflow: visible;
  }

  .calendar-panel::before {
    border-radius: 8px 8px 0 0;
  }

  .calendar-summary {
    padding: 14px 16px;
  }

  .price-breakdown {
    padding: 14px;
  }

  .price-total {
    align-items: center;
  }

  .price-breakdown b {
    font-size: 1.5rem;
  }

  .rate-calendar .calendar-month:nth-child(2) {
    display: none;
  }

  .booking-form {
    scroll-margin-top: 138px;
  }

  .trust-facts,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .trust-facts article {
    min-height: auto;
  }

  .workation-feature-media picture:nth-child(2) img {
    min-height: 260px;
  }
}
