:root {
  --atlantic: #102f35;
  --atlantic-deep: #082328;
  --kelp: #284f4b;
  --coral: #f06449;
  --coral-dark: #d94c35;
  --salt: #f7f3ea;
  --paper: #fffdf8;
  --tide: #83aeb4;
  --mist: #dce9e7;
  --ink: #15272b;
  --muted: #617174;
  --line: #cdd8d5;
  --sans: "Public Sans", Arial, sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --shell: 1280px;
  --shadow: 0 22px 50px rgba(8, 35, 40, .13);
}

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

html { scroll-behaviour: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--salt);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button, input, select { font: inherit; }

button, select { cursor: pointer; }

button { color: inherit; }

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--atlantic);
}

.skip-link:focus { top: 16px; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

[hidden] { display: none !important; }

.prototype-strip {
  color: var(--atlantic);
  background: var(--coral);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: .035em;
}

.prototype-strip__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.prototype-strip p { margin: 0; }
.prototype-strip strong { text-transform: uppercase; letter-spacing: .12em; }

.prototype-strip a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prototype-strip a .icon { width: 15px; height: 15px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--atlantic);
  background: rgba(247, 243, 234, .97);
  border-bottom: 1px solid rgba(16, 47, 53, .14);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(8, 35, 40, .08); }

.header-row {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
}

.brand {
  display: inline-flex;
  min-width: 238px;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand__mark { width: 47px; height: 47px; overflow: visible; }
.brand__mark path { fill: none; stroke: currentColor; stroke-width: 5; }
.brand__mark circle { fill: var(--coral); stroke: none; }

.brand__words { display: grid; gap: 2px; }

.brand__words strong {
  font-size: 1.14rem;
  letter-spacing: .07em;
}

.brand__words em {
  font-family: var(--serif);
  font-size: 1.26rem;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-items: stretch;
  align-self: stretch;
  gap: 28px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: var(--ink);
  background: none;
  border: 0;
  font-size: 0.9375rem;
  font-weight: 600;
}

.nav-link::after {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: var(--coral);
  content: "";
}

.nav-link:hover { color: var(--coral-dark); }
.nav-link .icon { width: 15px; height: 15px; transition: transform 180ms ease; }
.nav-link[aria-expanded="true"] .icon { transform: rotate(180deg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.saved-link, .operator-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: none;
  border: 0;
  font-size: 0.9375rem;
  font-weight: 600;
}

.operator-link {
  padding: 0 18px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.saved-link:hover, .operator-link:hover { color: var(--coral-dark); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--atlantic);
}

.mega-panel {
  position: absolute;
  inset: 88px 0 auto;
  color: var(--paper);
  background: var(--atlantic-deep);
  box-shadow: var(--shadow);
}

.mega-layout {
  display: grid;
  grid-template-columns: 1.35fr .8fr .9fr 1fr;
  gap: 52px;
  padding-block: 48px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--kelp);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker::before {
  width: 30px;
  height: 2px;
  background: var(--coral);
  content: "";
}

.kicker--coral { color: var(--coral); }

.mega-lead .kicker { color: var(--coral); }

.mega-lead h2 {
  max-width: 380px;
  margin: 12px 0;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.mega-lead p { max-width: 410px; margin: 0 0 20px; color: #b8cbca; font-size: 0.9375rem; }

.mega-lead > a, .mega-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-size: 0.875rem;
  font-weight: 700;
}

.mega-lead > a .icon, .mega-note .icon { width: 16px; height: 16px; }

.mega-links { display: grid; align-content: start; gap: 11px; }

.mega-links > span {
  margin-bottom: 7px;
  color: var(--tide);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mega-links a { color: #e5ece8; font-size: 0.9375rem; }
.mega-links a:hover { color: var(--coral); }

.mega-note {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  color: var(--atlantic);
  background: var(--tide);
}

.mega-note small { font-size: 0.8125rem; font-weight: 700; letter-spacing: .14em; }

.mega-note strong {
  margin: 12px 0 20px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.05;
}

.mega-note span { color: var(--atlantic); }
.mega-note--coral { background: var(--coral); }

.mobile-menu {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--paper);
  background: var(--atlantic-deep);
  border: 0;
}

.mobile-menu::backdrop { background: rgba(8, 35, 40, .65); }

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.brand--light { color: var(--salt); }

.round-button {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--salt);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.mobile-nav { display: grid; padding: 22px 24px 120px; }

.mobile-nav details, .mobile-nav__top { border-bottom: 1px solid rgba(255, 255, 255, .15); }

.mobile-nav summary, .mobile-nav__top {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary .icon { transition: transform 180ms ease; }
.mobile-nav details[open] summary .icon { transform: rotate(180deg); }
.mobile-nav details > a { display: block; padding: 8px 0 8px 20px; color: #bcd0cd; }
.mobile-nav details > a:last-child { padding-bottom: 24px; }

.mobile-menu__cta { position: fixed; right: 24px; bottom: 24px; left: 24px; justify-content: center; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: .015em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button .icon { width: 18px; height: 18px; }
.button--coral { color: var(--atlantic-deep); background: var(--coral); }
.button--coral:hover { background: #ff755c; }
.button--dark { color: var(--paper); background: var(--atlantic); }
.button--dark:hover { background: var(--kelp); }
.button--paper { color: var(--atlantic); background: var(--salt); }
.button--paper:hover { background: white; }

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.9375rem;
  font-weight: 700;
}

.quiet-link .icon { width: 16px; height: 16px; }
.quiet-link--light { color: var(--salt); }

.hero {
  display: grid;
  min-height: min(780px, calc(100vh - 122px));
  grid-template-columns: minmax(510px, 42%) 1fr;
  background: var(--atlantic);
}

.hero__copy {
  position: relative;
  display: flex;
  min-height: 690px;
  flex-direction: column;
  justify-content: center;
  padding-block: 70px;
  padding-left: max(40px, calc((100vw - var(--shell)) / 2));
  padding-right: clamp(40px, 4vw, 72px);
  color: var(--salt);
  overflow: hidden;
}

.hero__copy::after {
  position: absolute;
  top: 34px;
  right: -90px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(131, 174, 180, .22);
  border-radius: 50%;
  content: "";
}

.hero__copy-inner { position: relative; z-index: 1; max-width: 510px; }

.edition-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: var(--tide);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.edition-label i { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; }

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 6.6vw, 6.55rem);
  font-weight: 500;
  line-height: .73;
  letter-spacing: -.065em;
}

.hero h1 em { color: var(--coral); font-weight: 400; }

.hero__copy-inner > p {
  max-width: 440px;
  margin: 40px 0 32px;
  color: #d6e1de;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero__actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.hero__signature {
  position: absolute;
  right: 36px;
  bottom: 28px;
  left: max(40px, calc((100vw - var(--shell)) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--tide);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.hero__signature i { height: 1px; flex: 1; background: rgba(131, 174, 180, .35); }

.hero__visual { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.hero__visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 35, 40, .12), transparent 25%), linear-gradient(0deg, rgba(8, 35, 40, .38), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }

.hero__visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-size: 0.8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero__visual figcaption strong { padding: 9px 11px; color: var(--atlantic); background: var(--coral); font-size: 0.8125rem; }

.clear-view { color: var(--atlantic-deep); background: var(--coral); }

.clear-view__layout {
  display: grid;
  min-height: 190px;
  grid-template-columns: 1.05fr 3fr;
  align-items: stretch;
  gap: 52px;
}

.clear-view__title { display: flex; flex-direction: column; justify-content: center; }
.clear-view__title > span { font-size: 0.8125rem; font-weight: 700; letter-spacing: .16em; }

.clear-view__title h2 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: -.04em;
}

.clear-view__facts { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid rgba(8, 35, 40, .25); }

.clear-view__facts div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 24px;
  border-right: 1px solid rgba(8, 35, 40, .25);
}

.clear-view__facts small { font-size: 0.8125rem; font-weight: 700; }
.clear-view__facts strong { margin: 16px 0 3px; font-size: 0.9375rem; }
.clear-view__facts span { font-family: var(--serif); font-size: 1rem; }

.find-section { padding: 120px 0 100px; background: var(--salt); }

.find-heading {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 58px;
}

.find-heading h2, .section-head h2, .park-story h2, .ownership-intro h2, .operator-panel h2 {
  margin: 13px 0 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.3vw, 5.6rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.055em;
}

.find-heading h2 em, .section-head h2 em, .park-story h2 em, .ownership-intro h2 em, .operator-panel h2 em { color: var(--coral); font-weight: 400; }
.find-heading p { max-width: 430px; margin: 0; color: var(--muted); font-size: 1.04rem; }

.find-form {
  display: grid;
  grid-template-columns: 1.45fr 1fr .8fr auto;
  border-top: 1px solid var(--atlantic);
  border-bottom: 1px solid var(--atlantic);
}

.find-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 19px 22px 20px;
  border-right: 1px solid var(--line);
}

.find-field > span:first-child { color: var(--muted); font-size: 0.8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.find-field__control { display: flex; min-width: 0; align-items: center; gap: 10px; }
.find-field__control .icon { width: 17px; height: 17px; color: var(--coral-dark); }

.find-field input, .find-field select {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.find-field input::placeholder { color: var(--ink); opacity: 1; }
.find-submit { align-self: stretch; min-width: 190px; border-radius: 0; }

.prototype-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.prototype-note .icon { width: 15px; height: 15px; }

.homes-section { padding: 105px 0 125px; background: var(--paper); }

.section-head {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-head__aside { max-width: 440px; justify-self: end; }
.section-head__aside p { margin: 0 0 22px; color: var(--muted); }

.home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.home-card {
  min-width: 0;
  background: var(--paper);
  border-top: 4px solid var(--atlantic);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.home-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.home-card__media { position: relative; aspect-ratio: 1.36; overflow: hidden; background: var(--mist); }
.home-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.home-card:hover .home-card__media img { transform: scale(1.035); }

.paid-label, .condition-label, .demo-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 7px 9px;
  color: var(--atlantic-deep);
  background: var(--coral);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.condition-label { color: var(--salt); background: var(--atlantic); }
.demo-label { top: auto; right: 16px; bottom: 16px; left: auto; color: var(--atlantic); background: rgba(247, 243, 234, .92); }

.favourite {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--atlantic);
  background: rgba(255, 253, 248, .93);
  border: 0;
  border-radius: 50%;
}

.favourite[aria-pressed="true"] { color: var(--paper); background: var(--coral); }
.favourite[aria-pressed="true"] .icon { fill: currentColor; }

.home-card__body { padding: 26px 22px 24px; border: 1px solid var(--line); border-top: 0; }

.card-place { margin: 0 0 7px; color: var(--coral-dark); font-size: 0.8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.card-name { display: flex; align-items: start; justify-content: space-between; gap: 16px; }

.card-name h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.card-name > span { flex: 0 0 auto; padding: 4px 7px; color: var(--muted); border: 1px solid var(--line); font-size: 0.8125rem; font-weight: 600; }

.cost-pair {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  margin: 24px -22px 18px;
  padding: 17px 22px;
  background: var(--salt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cost-pair div + div { padding-left: 17px; border-left: 1px solid var(--line); }
.cost-pair dt { color: var(--muted); font-size: 0.8125rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cost-pair dd { margin: 4px 0 0; color: var(--atlantic); font-family: var(--serif); font-size: 1.45rem; font-weight: 600; font-variant-numeric: tabular-nums; }

.card-conditions { display: flex; min-height: 52px; flex-wrap: wrap; align-content: start; gap: 7px; }
.card-conditions span { padding: 6px 8px; color: var(--kelp); background: var(--mist); font-size: 0.8125rem; font-weight: 600; }

.home-card__body > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 19px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 700;
}

.home-card__body > a .icon { width: 17px; height: 17px; color: var(--coral-dark); }

.park-story { display: grid; grid-template-columns: 1.08fr .92fr; background: var(--atlantic-deep); }

.park-story__image { position: relative; min-height: 740px; overflow: hidden; }
.park-story__image img { width: 100%; height: 100%; object-fit: cover; }
.park-story__image > span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 14px;
  padding: 14px 18px;
  color: var(--atlantic);
  background: var(--coral);
  font-size: 0.8125rem;
}

.park-story__image > span b { letter-spacing: .08em; }

.park-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px max(42px, calc((100vw - var(--shell)) / 2));
  color: var(--salt);
}

.park-story h2 { max-width: 630px; }
.park-story__copy > p { max-width: 560px; margin: 30px 0; color: #bfd0cd; font-size: 1rem; }

.park-checks { margin: 0 0 34px; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .18); }
.park-checks li { display: grid; grid-template-columns: 40px 1fr; gap: 10px; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.park-checks li > span { color: var(--coral); font-size: 0.8125rem; font-weight: 700; }
.park-checks div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.park-checks strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.park-checks small { color: #9db4b0; font-size: 0.8125rem; text-align: right; }
.park-story .button { align-self: flex-start; }

.coasts-section { padding: 125px 0; background: var(--salt); }
.section-head--coasts > p { max-width: 420px; margin: 0 0 6px; color: var(--muted); }

.coast-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; min-height: 530px; gap: 18px; }
.coast-card { position: relative; min-width: 0; overflow: hidden; color: var(--paper); background: var(--kelp); }
.coast-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.coast-card:hover img { transform: scale(1.04); }
.coast-card__wash { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8, 35, 40, .84), rgba(8, 35, 40, .04) 70%); }
.coast-card__number { position: absolute; top: 22px; left: 22px; padding: 6px 8px; color: var(--atlantic); background: var(--coral); font-size: 0.8125rem; font-weight: 700; }
.coast-card__copy { position: absolute; right: 26px; bottom: 28px; left: 26px; display: grid; gap: 6px; }
.coast-card__copy small { color: #d5e2df; font-size: 0.8125rem; font-weight: 700; letter-spacing: .13em; }
.coast-card__copy strong { font-family: var(--serif); font-size: clamp(2.1rem, 3.5vw, 3.5rem); font-weight: 500; line-height: .95; }
.coast-card__copy span { color: #d5e2df; font-size: 0.875rem; }
.coast-card--ink { color: var(--salt); background: var(--atlantic); }
.coast-card--ink::before, .coast-card--ink::after { position: absolute; border: 1px solid rgba(131, 174, 180, .25); border-radius: 50%; content: ""; }
.coast-card--ink::before { top: -90px; left: -80px; width: 360px; height: 360px; }
.coast-card--ink::after { top: -20px; left: -10px; width: 260px; height: 260px; }

.ownership-section { padding: 125px 0; background: var(--mist); }

.ownership-layout { display: grid; grid-template-columns: 1fr 1.12fr; align-items: center; gap: 100px; }
.ownership-intro > p { max-width: 500px; margin: 28px 0 32px; color: var(--muted); font-size: 1.03rem; }

.clear-card { padding: 30px; color: var(--paper); background: var(--atlantic); box-shadow: 20px 20px 0 var(--coral); }
.clear-card__head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid rgba(255, 255, 255, .22); color: var(--tide); font-size: 0.8125rem; font-weight: 700; letter-spacing: .1em; }
.clear-card__head i { color: #a6bab6; font-style: normal; font-weight: 400; letter-spacing: 0; }

.clear-card__price { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 20px; padding: 28px 0; }
.clear-card__price span { display: grid; }
.clear-card__price small { color: #aec1bd; font-size: 0.8125rem; }
.clear-card__price strong { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 500; font-variant-numeric: tabular-nums; }
.clear-card__price b { padding-bottom: 10px; color: var(--coral); font-size: 1.5rem; }

.clear-card__rows { margin: 0; border-top: 1px solid rgba(255, 255, 255, .22); }
.clear-card__rows div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .15); font-size: 0.875rem; }
.clear-card__rows dt { color: #aec1bd; }
.clear-card__rows dd { margin: 0; text-align: right; }

.clear-card > p { display: flex; gap: 10px; margin: 20px 0 0; color: #aec1bd; font-size: 0.8125rem; }
.clear-card > p .icon { width: 16px; height: 16px; color: var(--coral); }

.operator-section { padding: 110px 0; background: var(--paper); }

.operator-panel {
  display: grid;
  grid-template-columns: 1.45fr .8fr;
  min-height: 540px;
  color: var(--paper);
  background: var(--atlantic-deep);
}

.operator-panel__copy { padding: 72px; }
.operator-panel h2 { font-size: clamp(3.2rem, 5vw, 5.2rem); }
.operator-panel__copy > p { max-width: 620px; margin: 28px 0; color: #bcd0cd; }
.operator-panel ul { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0 0 32px; padding: 0; list-style: none; }
.operator-panel li { display: flex; align-items: center; gap: 7px; font-size: 0.875rem; }
.operator-panel li .icon { width: 16px; height: 16px; color: var(--coral); }

.operator-offer { display: flex; flex-direction: column; justify-content: center; padding: 48px; color: var(--atlantic); background: var(--coral); }
.operator-offer > small { font-size: 0.8125rem; font-weight: 700; letter-spacing: .14em; }
.operator-offer > strong { margin-top: 22px; font-family: var(--serif); font-size: 5.2rem; font-weight: 500; line-height: .8; letter-spacing: -.06em; }
.operator-offer > strong sup { font-family: var(--sans); font-size: 0.875rem; letter-spacing: 0; }
.operator-offer > span { margin-top: 12px; font-size: 0.875rem; }
.operator-offer dl { margin: 30px 0 18px; border-top: 1px solid rgba(8, 35, 40, .3); }
.operator-offer dl div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid rgba(8, 35, 40, .3); font-size: 0.875rem; }
.operator-offer dd { margin: 0; font-weight: 700; text-align: right; }
.operator-offer > p { margin: 0; font-size: 0.8125rem; }

.stay-bridge { color: var(--paper); background: var(--kelp); border-top: 1px solid rgba(255, 255, 255, .12); }
.stay-bridge__inner { display: grid; min-height: 190px; grid-template-columns: .85fr 1.7fr auto; align-items: center; gap: 50px; }
.stay-bridge__number { color: var(--tide); font-size: 0.8125rem; font-weight: 700; letter-spacing: .12em; }
.stay-bridge h2 { margin: 0; font-family: var(--serif); font-size: 2.5rem; font-weight: 500; }
.stay-bridge p { margin: 4px 0 0; color: #bdd0cd; font-size: 0.9375rem; }
.stay-bridge p strong { color: var(--paper); }

.site-footer { padding-top: 80px; color: #c9d8d5; background: var(--atlantic-deep); }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 100px; padding-bottom: 70px; }
.footer-brand > p { margin: 28px 0 5px; color: var(--paper); font-family: var(--serif); font-size: 1.7rem; }
.footer-brand > span { color: var(--tide); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.footer-links div { display: grid; align-content: start; gap: 9px; }
.footer-links h2 { margin: 0 0 8px; color: var(--tide); font-size: 0.8125rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { font-size: 0.875rem; }
.footer-links a:hover { color: var(--coral); }
.footer-bottom { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255, 255, 255, .14); color: #839a97; font-size: 0.8125rem; }

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  display: flex;
  max-width: 440px;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 20px;
  color: var(--paper);
  background: var(--atlantic-deep);
  box-shadow: var(--shadow);
  font-size: 0.9375rem;
}

.toast .icon { color: var(--coral); }

@media (min-width: 1500px) {
  .hero { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1160px) {
  .header-row { gap: 24px; }
  .desktop-nav { gap: 18px; }
  .brand { min-width: 220px; }
  .operator-link { display: none; }
  .hero { grid-template-columns: minmax(470px, 45%) 1fr; }
  .hero h1 { font-size: clamp(4.7rem, 7.7vw, 6.1rem); }
  .mega-layout { grid-template-columns: 1.25fr .8fr .9fr; }
  .mega-note { display: none; }
  .home-grid { gap: 15px; }
  .home-card__body { padding-inline: 18px; }
  .cost-pair { margin-inline: -18px; padding-inline: 18px; }
  .park-story__copy { padding-inline: 55px; }
  .operator-panel__copy { padding: 58px; }
}

@media (max-width: 960px) {
  .shell { width: min(calc(100% - 42px), var(--shell)); }
  .desktop-nav, .saved-link, .operator-link { display: none; }
  .header-row { min-height: 76px; }
  .menu-button { display: inline-flex; }
  .brand { min-width: 0; }
  .mega-panel { display: none !important; }

  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero__copy { min-height: 600px; padding: 72px 44px 62px; }
  .hero__copy-inner { max-width: 670px; }
  .hero h1 { font-size: clamp(5.2rem, 14.8vw, 8.3rem); }
  .hero__visual { height: min(74vw, 650px); }
  .hero__signature { left: 44px; }

  .clear-view__layout { grid-template-columns: 1fr; gap: 0; padding-top: 36px; }
  .clear-view__facts { margin-top: 22px; border-top: 1px solid rgba(8, 35, 40, .25); }

  .find-heading, .section-head { grid-template-columns: 1fr; gap: 28px; }
  .section-head__aside { justify-self: start; }
  .find-form { grid-template-columns: 1.25fr 1fr 1fr; }
  .find-submit { grid-column: 1 / -1; min-height: 58px; }

  .home-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .home-card:last-child { grid-column: 1 / -1; width: calc(50% - 14px); }

  .park-story { grid-template-columns: 1fr; }
  .park-story__image { min-height: 620px; }
  .park-story__copy { padding: 90px 42px; }
  .park-story h2 { font-size: clamp(4rem, 9vw, 6rem); }

  .coast-grid { grid-template-columns: 1.2fr 1fr; }
  .coast-card--ink { grid-column: 1 / -1; min-height: 300px; }

  .ownership-layout { grid-template-columns: 1fr; gap: 60px; }
  .clear-card { box-shadow: 14px 14px 0 var(--coral); }

  .operator-panel { grid-template-columns: 1fr; }
  .operator-offer { min-height: 420px; }

  .stay-bridge__inner { grid-template-columns: 1fr auto; gap: 22px; padding-block: 44px; }
  .stay-bridge__number { grid-column: 1 / -1; }

  .footer-grid { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .prototype-strip__inner { min-height: 40px; }
  .prototype-strip p { max-width: 230px; line-height: 1.25; }
  .prototype-strip a { font-size: 0; }
  .prototype-strip a .icon { width: 19px; height: 19px; }

  .header-row { min-height: 70px; }
  .brand { gap: 9px; }
  .brand__mark { width: 41px; height: 41px; }
  .brand__words strong { font-size: 1rem; }
  .brand__words em { font-size: 1.05rem; }

  .hero__copy { min-height: 590px; padding: 62px 22px 64px; }
  .hero__copy::after { display: none; }
  .edition-label { margin-bottom: 29px; }
  .hero h1 { font-size: clamp(4.1rem, 19.4vw, 5.2rem); line-height: .76; }
  .hero__copy-inner > p { margin-top: 32px; font-size: 1rem; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .quiet-link { align-self: flex-start; }
  .hero__signature { right: 22px; bottom: 24px; left: 22px; }
  .hero__visual { height: 455px; }
  .hero__visual img { object-position: 57% center; }
  .hero__visual figcaption { right: 16px; bottom: 16px; left: 16px; justify-content: space-between; }

  .clear-view__layout { padding-top: 31px; }
  .clear-view__title h2 { font-size: 2.45rem; }
  .clear-view__facts { grid-template-columns: 1fr 1fr; }
  .clear-view__facts div { min-height: 130px; padding: 21px 15px; border-bottom: 1px solid rgba(8, 35, 40, .25); }
  .clear-view__facts div:nth-child(even) { border-right: 0; }

  .find-section, .homes-section, .coasts-section, .ownership-section, .operator-section { padding-block: 82px; }
  .find-heading, .section-head { margin-bottom: 38px; }
  .find-heading h2, .section-head h2, .park-story h2, .ownership-intro h2, .operator-panel h2 { font-size: clamp(3.25rem, 15vw, 4.7rem); }

  .find-form { grid-template-columns: 1fr; border-bottom: 0; }
  .find-field { min-height: 88px; padding-inline: 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .find-submit { grid-column: auto; margin-top: 14px; }

  .home-grid { grid-template-columns: 1fr; gap: 34px; }
  .home-card:last-child { grid-column: auto; width: auto; }
  .home-card__media { aspect-ratio: 1.25; }

  .park-story__image { min-height: 480px; }
  .park-story__image > span { right: 12px; bottom: 12px; left: 12px; justify-content: space-between; }
  .park-story__copy { padding: 78px 22px; }
  .park-checks div { display: grid; gap: 2px; }
  .park-checks small { text-align: left; }

  .coast-grid { display: grid; grid-template-columns: 1fr; min-height: 0; }
  .coast-card { min-height: 430px; }
  .coast-card--ink { grid-column: auto; min-height: 310px; }

  .clear-card { padding: 22px; box-shadow: 8px 8px 0 var(--coral); }
  .clear-card__head { display: grid; gap: 5px; }
  .clear-card__price { gap: 12px; }
  .clear-card__price strong { font-size: 2rem; }
  .clear-card__rows div { display: grid; gap: 3px; }
  .clear-card__rows dd { text-align: left; }

  .operator-section .shell { width: 100%; }
  .operator-panel__copy, .operator-offer { padding: 56px 22px; }
  .operator-offer > strong { font-size: 4.5rem; }

  .stay-bridge__inner { grid-template-columns: 1fr; padding-block: 50px; }
  .stay-bridge .button { width: 100%; }

  .footer-links { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 22px; }

  .toast { right: 16px; bottom: 16px; left: 16px; }
}

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