:root {
  --ink: #102536;
  --muted: #5f7080;
  --paper: #f4f8fb;
  --white: #ffffff;
  --evergreen: #0b3554;
  --lake: #1f6f9f;
  --sky: #dceef7;
  --coral: #cf6b4b;
  --gold: #d7a657;
  --line: rgba(16, 37, 54, 0.14);
  --shadow: 0 22px 70px rgba(13, 55, 86, 0.16);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

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

chat-widget {
  visibility: hidden;
}

chat-widget[data-chat-ready="true"] {
  visibility: visible;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 53, 84, 0.9);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 34%, var(--gold) 0 17%, transparent 18%),
    linear-gradient(145deg, rgba(31, 111, 159, 0.95), rgba(255, 255, 255, 0.08));
}

.brand span {
  display: block;
  font-weight: 700;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.86rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  font: inherit;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  background: var(--lake);
}

.button.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.icon-arrow::after {
  content: "->";
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(660px, calc(88vh - 74px));
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero.short {
  min-height: 56vh;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 50, 0.82), rgba(7, 31, 50, 0.32) 56%, rgba(7, 31, 50, 0.08)),
    linear-gradient(0deg, rgba(7, 31, 50, 0.62), rgba(7, 31, 50, 0.02) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 12vw, 150px) 0 56px;
}

.hero:not(.short) .hero-content {
  padding: clamp(42px, 7vw, 96px) 0 20px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero:not(.short) h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 6.2vw, 4.95rem);
  line-height: 0.95;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--evergreen);
  color: var(--white);
}

.stat {
  padding: 22px clamp(14px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section.alt {
  background: var(--sky);
}

.section.dark {
  background: var(--evergreen);
  color: var(--white);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 1.04rem;
}

.dark .section-heading p,
.dark .lead {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 14px;
  align-items: end;
}

.photo-pair img,
.feature-image,
.gallery-grid img,
.amenity-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-pair img:first-child {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-pair img:last-child {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.kicker-list {
  display: grid;
  gap: 20px;
  margin: 28px 0 0;
}

.kicker-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.kicker-item b {
  color: var(--lake);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.tile {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.tile.photo {
  padding: 0;
  overflow: hidden;
}

.tile.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tile.photo .tile-body {
  padding: 20px;
}

.tile .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(214, 106, 75, 0.12);
  color: var(--coral);
  font-weight: 850;
}

.room-showcase,
.service-grid,
.sleep-grid,
.local-guide-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.room-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card .room-body {
  padding: 22px;
}

.room-card .room-note {
  color: var(--lake);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.room-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.room-detail {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.estate-map,
.abundance-grid,
.bath-grid,
.concierge-menu,
.possibility-grid {
  display: grid;
  gap: 16px;
}

.estate-map {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.estate-zone,
.abundance-card,
.bath-card,
.concierge-menu article,
.possibility-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.estate-zone b,
.abundance-card b,
.bath-card b,
.concierge-menu b,
.possibility-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--lake);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

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

.toy-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.toy-showcase .feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.feature-list span {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(31, 111, 159, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.dark .feature-list span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.lake-panel {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(31, 111, 159, 0.12), rgba(215, 166, 87, 0.12));
  border: 1px solid var(--line);
}

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

.sleep-grid,
.local-guide-grid,
.faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sleep-card,
.faq-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(13, 55, 86, 0.08);
}

.sleep-card b,
.local-guide-grid b {
  display: block;
  margin-bottom: 10px;
  color: var(--lake);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(13, 55, 86, 0.09);
}

.service-card b {
  display: block;
  margin-bottom: 10px;
  color: var(--lake);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 22px;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.concierge-menu {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concierge-menu article {
  min-height: 100%;
}

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

.billing-card {
  min-height: 100%;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.billing-card b {
  display: block;
  margin-bottom: 10px;
  color: var(--lake);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fee-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.concierge-catalog {
  display: grid;
  gap: 14px;
}

.concierge-category {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 42px rgba(13, 55, 86, 0.08);
}

.concierge-category summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.concierge-category summary::-webkit-details-marker {
  display: none;
}

.concierge-category summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(31, 111, 159, 0.1);
  color: var(--lake);
  font-weight: 900;
}

.concierge-category[open] summary::after {
  content: "-";
}

.concierge-category summary span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1;
}

.concierge-category summary small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.concierge-category ul {
  columns: 2;
  column-gap: 36px;
  margin: 0;
  padding: 0 22px 24px 42px;
  color: var(--muted);
}

.concierge-category li {
  break-inside: avoid;
  margin-bottom: 9px;
}

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

.possibility-grid ul {
  margin: 0;
  padding-left: 18px;
}

.possibility-grid li + li {
  margin-top: 7px;
}

.arrival-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.arrival-step {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.arrival-step b {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
}

.concierge-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.concierge-note {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.concierge-note p {
  color: var(--muted);
}

.promise-panel {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--evergreen);
  color: var(--white);
}

.promise-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.booking-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-section + .gallery-section {
  margin-top: 46px;
}

.mini-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(240px, 0.3fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
}

.mini-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 3.2vw, 3rem);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .tall {
  grid-row: span 2;
}

.review-panel {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.score {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--evergreen);
  color: var(--white);
}

.score strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.score-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 36px;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  font-size: 0.76rem;
}

.bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.bar span {
  display: block;
  width: 98%;
  height: 100%;
  background: var(--gold);
}

.quotes {
  display: grid;
  gap: 14px;
}

.quote {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.quote b {
  display: block;
  margin-bottom: 7px;
  color: var(--lake);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.quote cite {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.source-note {
  max-width: 980px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.source-note a {
  color: var(--lake);
  font-weight: 700;
}

.booking-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.booking-facts span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(31, 111, 159, 0.08);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.assistant-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.assistant-card h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.assistant-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.assistant-card li + li {
  margin-top: 8px;
}

.assistant-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.booking-frame {
  width: 100%;
  min-height: 720px;
  border: 0;
  border-radius: var(--radius);
  background: #eef7fb;
  box-shadow: var(--shadow);
}

.booking-live-section {
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.booking-live-section .section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4.4vw, 4.2rem);
}

.booking-embed-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-embed-shell .booking-frame {
  display: block;
  border-radius: 0;
  box-shadow: none;
}

.rental-frame {
  min-height: 1020px;
}

.booking-embed-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
}

.booking-request-layout {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

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

.checkbox {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--coral);
}

[data-form-status] {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(31, 111, 159, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
}

[data-form-status][data-state="success"] {
  border-color: rgba(48, 122, 92, 0.28);
  background: rgba(48, 122, 92, 0.1);
  color: #225f47;
}

[data-form-status][data-state="error"] {
  border-color: rgba(173, 79, 66, 0.28);
  background: rgba(173, 79, 66, 0.1);
  color: #80382f;
}

.text-button {
  display: inline-flex;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--lake);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

.text-button:hover {
  color: var(--lake-deep);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.toc a {
  color: var(--muted);
  text-decoration: none;
}

.policy-body {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.policy-body h2 {
  margin-top: 34px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.policy-body h1,
.section-heading h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body li + li {
  margin-top: 8px;
}

.site-footer {
  background: #08263c;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(150px, 0.35fr));
  gap: 28px;
  padding: 46px 0;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .stats,
  .grid.cols-4,
  .grid.cols-3,
  .room-showcase,
  .sleep-grid,
  .local-guide-grid,
  .faq-list,
  .billing-grid,
  .room-details,
  .estate-map,
  .abundance-grid,
  .bath-grid,
  .toy-showcase,
  .feature-list,
  .service-grid,
  .concierge-menu,
  .possibility-grid,
  .arrival-strip,
  .concierge-intro,
  .booking-strip,
  .section-heading,
  .split,
  .split.reverse,
  .review-panel,
  .form-layout,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-strip {
    align-items: stretch;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mini-heading {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav {
    gap: 10px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 7px;
  }

  .nav-links a {
    justify-content: center;
    padding: 8px 4px;
    font-size: clamp(0.68rem, 2.25vw, 0.78rem);
    text-align: center;
  }

  .nav-links .button {
    grid-column: span 2;
    width: 100%;
  }

  .nav-links .button .icon-arrow {
    display: none;
  }

  .hero {
    min-height: 72vh;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stat:last-child {
    grid-column: 1 / -1;
  }

  .photo-pair,
  .kicker-item,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .wide,
  .gallery-grid .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .policy-body {
    padding: 24px;
  }

  .rental-frame {
    min-height: 1180px;
  }

  .concierge-category summary {
    grid-template-columns: 1fr;
  }

  .concierge-category summary::after {
    grid-row: 1;
    justify-self: start;
  }

  .concierge-category ul {
    columns: 1;
    padding-left: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
