:root {
  --carbon: #05080a;
  --carbon-soft: #0a0f13;
  --deep-ocean: #0b3243;
  --deep-ocean-dark: #071722;
  --bone: #eae6dd;
  --bone-bright: #f3f0e9;
  --vermilion: #e33b2e;
  --vermilion-dark: #bd291f;
  --surf-blue: #2a6f86;
  --rule-dark: rgba(234, 230, 221, 0.35);
  --rule-light: rgba(5, 8, 10, 0.33);
  --sans: "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --condensed: "Arial Narrow", "Helvetica Neue Condensed", Impact, sans-serif;
  --gutter: clamp(20px, 3.7vw, 58px);
  --header-height: 106px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--carbon);
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--bone);
  background: var(--carbon);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.025em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--bone-bright);
  background: var(--vermilion);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure,
h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

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

a,
button {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.5;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--vermilion);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--carbon);
  background: var(--bone-bright);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 28px 0 36px;
  border-bottom: 1px solid rgba(234, 230, 221, 0.2);
  background: rgba(5, 8, 10, 0.96);
  transition: min-height 220ms ease-out, background-color 220ms ease-out;
}

.site-header.is-scrolled {
  min-height: 78px;
  background: rgba(5, 8, 10, 0.985);
}

.wordmark,
.footer-wordmark {
  font-family: var(--condensed);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.8;
}

.brand-signature {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 14px;
}

.brand-signature .brand-logo {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
}

.brand-signature span {
  display: block;
}

.footer-wordmark .brand-logo {
  width: 72px;
  height: 72px;
  flex-basis: 72px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.55vw, 26px);
  font-size: 14px;
  font-weight: 700;
}

.primary-nav > a.nav-shop {
  min-height: 46px;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(234, 230, 221, 0.72);
  color: var(--bone);
  font-size: 12px;
  white-space: nowrap;
  transition: border-color 200ms ease-out, color 200ms ease-out, background-color 200ms ease-out;
}

.primary-nav > a.nav-shop::after {
  display: none;
}

.primary-nav > a.nav-shop:hover {
  border-color: var(--surf-blue);
  color: var(--bone-bright);
  background: rgba(42, 111, 134, 0.18);
}

.primary-nav > a:not(.nav-book) {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
}

.primary-nav > a:not(.nav-book)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--vermilion);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease-out;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  gap: 28px;
  padding: 0 30px;
  border-left: 1px solid var(--rule-dark);
  color: white;
  background: var(--vermilion);
  transition: background-color 200ms ease-out;
}

.nav-book:hover {
  background: var(--vermilion-dark);
}

.nav-book svg {
  width: 28px;
  height: 28px;
  transition: transform 200ms ease-out;
}

.nav-book:hover svg {
  transform: translateX(5px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  color: var(--bone);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 1px;
  margin: 8px auto;
  background: currentColor;
  transition: transform 220ms ease-out;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 46.5%) minmax(0, 53.5%);
  min-height: 100svh;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--carbon);
}

.hero-sunset {
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
}

.hero-sunset img {
  object-position: 58% center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 128px) clamp(52px, 4.2vw, 68px) 0 clamp(46px, 4.1vw, 64px);
}

.hero h1,
.location h2,
.garden h2,
.rooms h2,
.booking h2 {
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 10em;
  font-size: clamp(48px, 4.3vw, 72px);
  line-height: 1.12;
}

.mobile-break {
  display: none;
}

.hero-content > p {
  margin-top: 26px;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 500;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 38px;
  border: 1px solid transparent;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 200ms ease-out, background-color 200ms ease-out, border-color 200ms ease-out;
}

.button svg,
.booking-link svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  transition: transform 200ms ease-out;
}

.button:hover svg,
.booking-link:hover svg {
  transform: translateX(6px);
}

.button-primary {
  color: white;
  background: var(--vermilion);
}

.button-primary:hover {
  background: var(--vermilion-dark);
}

.button-outline {
  border-color: rgba(234, 230, 221, 0.78);
  color: var(--bone);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--bone);
  color: var(--carbon);
  background: var(--bone);
}

.hero-proof {
  height: clamp(170px, 24vh, 310px);
  margin-top: 50px;
  overflow: hidden;
}

.hero-proof img {
  object-position: 52% 50%;
}

/* Desktop: keep the complete SURF99 sign inside the shallow proof crop. */
@media (min-width: 681px) {
  .hero-proof img {
    object-position: 52% 78%;
  }
}

.hero-vertical {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: 0;
  color: rgba(24, 85, 119, 0.56);
  font-family: var(--condensed);
  font-size: clamp(126px, 14.5vw, 248px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.68;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  pointer-events: none;
}

.section-number {
  margin-bottom: 24px;
  color: currentColor;
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.location {
  color: var(--carbon);
  background: var(--bone);
}

.location-intro {
  display: grid;
  grid-template-columns: minmax(390px, 39.5%) minmax(0, 60.5%);
  min-height: 660px;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(68px, 8vw, 126px) clamp(38px, 5.3vw, 82px);
}

.location h2 {
  font-size: clamp(52px, 6.2vw, 98px);
  line-height: 1.18;
}

.signal-rule {
  width: 74px;
  height: 5px;
  margin: 36px 0 26px;
  background: var(--vermilion);
}

.location-copy > p:not(.section-number) {
  max-width: 31em;
}

.location-copy .lead {
  margin-bottom: 10px;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 700;
}

.arrow-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  align-self: flex-start;
  gap: 24px;
  margin-top: 34px;
  color: var(--vermilion);
  font-size: 17px;
  font-weight: 800;
}

.arrow-link svg {
  width: 82px;
  height: 18px;
  transition: transform 200ms ease-out;
}

.arrow-link:hover svg {
  transform: translateX(7px);
}

.location-beach {
  min-height: 660px;
  overflow: hidden;
}

.location-beach img {
  object-position: 48% center;
}

.location-rail {
  display: grid;
  grid-template-columns: minmax(420px, 44%) minmax(0, 56%);
  padding: 38px var(--gutter) 54px;
  color: var(--bone);
  background: var(--deep-ocean);
}

.location-proofs {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 18px;
  padding-right: clamp(28px, 4.2vw, 66px);
}

.location-proofs figure {
  aspect-ratio: 1.05 / 1;
  overflow: hidden;
}

.distance-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--bone);
}

.distance-facts > div {
  min-width: 0;
  padding: 0 clamp(18px, 2.8vw, 42px) 14px;
  border-left: 1px solid rgba(234, 230, 221, 0.68);
}

.distance-facts dt {
  font-size: clamp(15px, 1.4vw, 23px);
  font-weight: 800;
}

.distance-facts > div:nth-child(2) dt {
  font-size: clamp(13px, 1.08vw, 18px);
  line-height: 1.45;
}

.distance-facts dt span {
  display: block;
  margin-top: 4px;
  font-size: 0.75em;
}

.distance-facts dd {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.distance-facts strong {
  font-family: var(--condensed);
  font-size: clamp(96px, 10.7vw, 178px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.distance-facts dd span {
  font-family: var(--condensed);
  font-size: 34px;
  font-weight: 700;
}

.garden {
  padding-bottom: 28px;
  background: var(--carbon);
}

.garden-top {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
}

.garden-main {
  min-height: 515px;
  overflow: hidden;
}

.garden-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px clamp(42px, 5.7vw, 88px);
}

.garden-size {
  padding-bottom: 8px;
  border-bottom: 2px solid var(--vermilion);
  font-family: var(--condensed);
  font-size: clamp(118px, 14vw, 220px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.86;
}

.garden-size sup {
  position: relative;
  top: -0.2em;
  font-size: 0.34em;
  letter-spacing: 0;
}

.garden h2 {
  margin-top: 26px;
  font-size: clamp(34px, 3vw, 49px);
  line-height: 1.2;
  white-space: nowrap;
}

.garden-copy > p:last-child {
  margin-top: 24px;
  font-size: clamp(15px, 1.25vw, 19px);
}

.garden-features {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.25fr 1.55fr;
  gap: 1px;
  padding: 16px 20px 0;
  background: var(--carbon);
}

.garden-feature,
.garden-sign {
  min-width: 0;
  border-left: 1px solid rgba(42, 111, 134, 0.75);
}

.garden-feature figure,
.garden-sign {
  height: 385px;
  overflow: hidden;
}

.garden-feature figure img,
.garden-sign img {
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.garden-feature:hover figure img,
.garden-sign:hover img {
  transform: scale(1.025);
}

.garden-sign img {
  object-position: center 48%;
}

.garden-feature h3 {
  margin: 14px 20px 0;
  color: var(--surf-blue);
  font-family: var(--condensed);
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}

.garden-feature p {
  margin: 7px 20px 0;
  font-size: 14px;
  font-weight: 600;
}

.garden-feature::after {
  display: block;
  width: calc(100% - 40px);
  height: 1px;
  margin: 14px 20px 0;
  background: var(--surf-blue);
  content: "";
}

.section-end-link {
  display: flex;
  justify-content: flex-end;
  padding: 0 var(--gutter);
}

.section-end-link .arrow-link {
  margin-top: 24px;
}

.rooms {
  display: grid;
  grid-template-columns: 64px minmax(0, 58%) minmax(380px, 42%);
  grid-template-rows: auto auto;
  color: var(--carbon);
  background: var(--bone);
}

.rooms-rail {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: var(--bone);
  background: var(--deep-ocean);
  font-family: var(--condensed);
  font-weight: 800;
  letter-spacing: 0.09em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.rooms-rail span:first-child {
  font-size: 30px;
}

.rooms-rail span:last-child {
  font-size: 17px;
}

.rooms-gallery {
  padding: 0 24px 0 34px;
}

.rooms-main {
  height: 540px;
  overflow: hidden;
}

.rooms-caption {
  padding: 24px 0 20px;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
}

.rooms-subgallery {
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  gap: 10px;
}

.rooms-subgallery figure {
  height: 360px;
  overflow: hidden;
}

.rooms-info {
  min-width: 0;
}

.rooms-heading {
  padding: clamp(42px, 5vw, 72px) clamp(34px, 4.4vw, 68px) 34px;
  color: var(--bone);
  background: var(--carbon);
}

.rooms h2 {
  font-size: clamp(42px, 3.5vw, 58px);
  line-height: 1.18;
}

.rooms-heading > p:last-child {
  margin-top: 24px;
  font-size: clamp(16px, 1.35vw, 21px);
}

.room-facts {
  padding: 0 28px;
}

.room-facts > div {
  display: grid;
  grid-template-columns: 128px 1fr;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--rule-light);
}

.room-facts dt {
  font-family: var(--condensed);
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.room-facts dt small {
  font-size: 0.54em;
}

.room-facts dd {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.room-facts dd strong,
.pet-fact dt {
  font-family: var(--condensed);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}

.room-facts dd span {
  margin-top: 8px;
  font-size: 15px;
}

.room-facts .pet-fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 18px 0;
}

.pet-fact dd {
  padding: 0;
}

.floorplan {
  padding: 20px 28px 28px;
}

.floorplan figcaption {
  font-weight: 700;
}

.floorplan img {
  height: 260px;
  object-fit: contain;
}

.rooms-link {
  grid-column: 2;
  padding: 26px 34px 32px;
  color: var(--bone);
  background: var(--carbon);
}

.rooms-link .arrow-link {
  margin: 0;
}

.shop-bridge {
  display: grid;
  grid-template-columns: minmax(350px, 1.05fr) minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 16px;
  padding: clamp(56px, 6vw, 92px) var(--gutter);
  border-top: 1px solid rgba(42, 111, 134, 0.92);
  border-bottom: 1px solid rgba(42, 111, 134, 0.92);
  background: var(--carbon);
}

.shop-bridge-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: clamp(16px, 2vw, 34px);
}

.shop-bridge h2 {
  font-size: clamp(38px, 3.3vw, 52px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.14;
}

.shop-bridge-copy > p:not(.section-number) {
  max-width: 24em;
  margin-top: 24px;
  color: rgba(234, 230, 221, 0.82);
  font-size: clamp(15px, 1.15vw, 18px);
}

.shop-bridge-button {
  display: inline-flex;
  width: min(100%, 310px);
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 0 26px;
  color: white;
  background: var(--vermilion);
  font-size: 17px;
  font-weight: 800;
  transition: background-color 200ms ease-out;
}

.shop-bridge-button:hover {
  background: var(--vermilion-dark);
}

.shop-bridge-button svg {
  width: 28px;
  height: 28px;
  transition: transform 200ms ease-out;
}

.shop-bridge-button:hover svg {
  transform: translateX(6px);
}

.shop-domain {
  margin-top: 12px;
  color: var(--surf-blue);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.shop-category {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(300px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(234, 230, 221, 0.28);
  background: var(--carbon-soft);
}

.shop-category figure {
  min-height: 300px;
  overflow: hidden;
}

.shop-category img {
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease-out;
}

.shop-category:hover img {
  filter: brightness(1.06);
  transform: scale(1.025);
}

.shop-category-caption {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-top: 1px solid rgba(42, 111, 134, 0.82);
}

.shop-category-caption div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-category-caption strong {
  color: var(--bone-bright);
  font-family: var(--condensed);
  font-size: clamp(28px, 2.8vw, 46px);
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.shop-category-caption span {
  font-size: 14px;
  font-weight: 700;
}

.shop-category-caption svg {
  width: 40px;
  height: 20px;
  flex: 0 0 40px;
  color: var(--surf-blue);
  transition: transform 200ms ease-out;
}

.shop-category:hover .shop-category-caption svg {
  transform: translateX(6px);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(430px, 36%) minmax(0, 26%);
  min-height: 510px;
  background: var(--carbon);
}

.booking-sunset,
.booking-sign {
  min-height: 510px;
  overflow: hidden;
}

.booking-sunset img {
  object-position: 52% center;
}

.booking-sign img {
  object-position: 53% center;
}

.booking-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px clamp(34px, 3.9vw, 60px);
}

.booking h2 {
  font-size: clamp(45px, 4.45vw, 72px);
  line-height: 1.18;
}

.booking-panel > p:not(.section-number) {
  margin: 16px 0 22px;
}

.booking-primary {
  min-height: 82px;
  padding: 0 30px;
}

.booking-link {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(234, 230, 221, 0.6);
  font-size: 16px;
  transition: color 200ms ease-out;
}

.booking-link:hover {
  color: var(--vermilion);
}

.booking-link svg {
  width: 22px;
  height: 22px;
}

.access {
  display: grid;
  grid-template-columns: minmax(330px, 33%) minmax(0, 67%);
  gap: clamp(34px, 5vw, 74px);
  padding: 26px var(--gutter) 24px;
  color: var(--carbon);
  background: var(--bone);
}

.access-details {
  padding: 18px 0 0;
}

.access h2 {
  font-family: var(--condensed);
  font-size: clamp(74px, 7vw, 112px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.access address {
  margin-top: 24px;
  font-style: normal;
  font-size: 17px;
  font-weight: 700;
}

.access dl {
  margin-top: 16px;
  border-top: 1px solid var(--rule-light);
}

.access dl > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 47px;
  border-bottom: 1px solid var(--rule-light);
  font-weight: 700;
}

.access dl > div:nth-child(-n + 2) dt,
.access dl > div:nth-child(-n + 2) dd {
  font-family: var(--condensed);
  font-size: 24px;
}

.access-map {
  height: 410px;
  overflow: hidden;
  border: 1px solid var(--carbon);
}

.access-map img {
  object-fit: fill;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 48px;
  min-height: 122px;
  padding: 0 var(--gutter);
  background: var(--carbon);
}

.footer-shop {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--surf-blue);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 200ms ease-out;
}

.footer-shop:hover {
  color: var(--bone-bright);
}

.footer-wordmark {
  font-size: clamp(58px, 7vw, 104px);
}

.site-footer p {
  padding-left: 48px;
  border-left: 1px solid var(--rule-dark);
  font-size: clamp(16px, 1.55vw, 24px);
  letter-spacing: 0.18em;
}

.footer-top {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
}

.footer-top svg {
  width: 20px;
  height: 20px;
}

.media-reveal {
  overflow: hidden;
}

.motion-ready .hero-enter {
  opacity: 0;
  transform: translateY(12px);
}

.motion-ready .hero-enter.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.motion-ready .hero-content.hero-enter.is-visible {
  transition-delay: 100ms;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 440ms ease-out, transform 440ms ease-out;
}

.motion-ready .media-reveal {
  clip-path: inset(0 0 100% 0);
}

.motion-ready .media-reveal.is-visible,
.motion-ready .reveal.is-visible .media-reveal {
  clip-path: inset(0 0 0 0);
  transition: clip-path 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1180px) {
  :root {
    --header-height: 88px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 0 24px;
  }

  .primary-nav {
    gap: 22px;
  }

  .nav-book {
    min-height: 56px;
    gap: 14px;
    padding: 0 22px;
  }

  .hero-content {
    padding-right: 70px;
    padding-left: 38px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .button {
    min-height: 68px;
  }

  .hero-proof {
    margin-top: 28px;
  }

  .location-intro {
    grid-template-columns: 43% 57%;
  }

  .location-rail {
    grid-template-columns: 38% 62%;
  }

  .distance-facts > div {
    padding-right: 18px;
    padding-left: 18px;
  }

  .garden-feature figure,
  .garden-sign {
    height: 315px;
  }

  .garden h2 {
    white-space: normal;
  }

  .rooms {
    grid-template-columns: 54px minmax(0, 57%) minmax(360px, 43%);
  }

  .shop-bridge {
    grid-template-columns: 1fr 1fr;
  }

  .shop-bridge-copy {
    grid-column: 1 / 3;
    padding: 0 0 24px;
  }

  .rooms-main {
    height: 440px;
  }

  .rooms-subgallery figure {
    height: 300px;
  }

  .booking {
    grid-template-columns: 32% 43% 25%;
  }
}

@media (max-width: 1260px) {
  .menu-toggle {
    z-index: 2;
    display: block;
    justify-self: end;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 96px 28px 36px;
    background: var(--carbon);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 220ms ease-out, transform 220ms ease-out, visibility 220ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > a:not(.nav-book) {
    width: 100%;
    min-height: 58px;
    border-bottom: 1px solid var(--rule-dark);
    font-size: 20px;
  }

  .primary-nav > a.nav-shop {
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--surf-blue);
    font-size: 20px;
  }

  .nav-book {
    width: 100%;
    min-height: 66px;
    justify-content: space-between;
    margin-top: 18px;
    border-left: 0;
    font-size: 18px;
  }

  .hero {
    grid-template-columns: 46% 54%;
  }

  .hero h1 {
    font-size: clamp(42px, 7vw, 62px);
  }

  .hero-vertical {
    opacity: 0.58;
  }

  .location-intro {
    grid-template-columns: 1fr;
  }

  .location-copy {
    min-height: 520px;
  }

  .location-beach {
    min-height: 500px;
  }

  .location-rail {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .location-proofs {
    padding-right: 0;
  }

  .garden-top {
    grid-template-columns: 1fr;
  }

  .garden-main {
    min-height: 470px;
  }

  .garden-copy {
    min-height: 430px;
  }

  .garden-features {
    grid-template-columns: 1fr 1fr;
    gap: 26px 1px;
  }

  .garden-feature figure,
  .garden-sign {
    height: 370px;
  }

  .rooms {
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .rooms-rail {
    grid-row: 1 / 4;
  }

  .rooms-gallery,
  .rooms-info {
    grid-column: 2;
  }

  .rooms-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .rooms-heading {
    grid-column: 1 / 3;
  }

  .floorplan {
    align-self: stretch;
  }

  .floorplan img {
    height: 360px;
  }

  .rooms-link {
    grid-column: 2;
  }

  .shop-bridge {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 58px 20px;
  }

  .shop-bridge-copy {
    grid-column: 1;
    padding-bottom: 22px;
  }

  .shop-bridge h2 {
    font-size: 42px;
  }

  .shop-category {
    grid-template-rows: 310px auto;
  }

  .shop-category figure {
    min-height: 310px;
  }

  .shop-category-caption strong {
    font-size: 36px;
  }

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

  .booking-sunset {
    grid-column: 1;
  }

  .booking-panel {
    grid-column: 2;
  }

  .booking-sign {
    grid-column: 1 / 3;
    min-height: 320px;
  }

  .booking-sign img {
    object-position: center 53%;
  }

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

  .access-map {
    height: 430px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
    --gutter: 20px;
  }

  body {
    line-height: 1.7;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: var(--header-height);
    padding: 0 18px;
  }

  .wordmark {
    font-size: 39px;
  }

  .wordmark.brand-signature {
    gap: 9px;
    font-size: 34px;
  }

  .wordmark .brand-logo {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-sunset {
    min-height: 62svh;
  }

  .hero-sunset img {
    object-position: 57% center;
  }

  .hero-content {
    padding: 52px 20px 0;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 42px);
  }

  .mobile-break {
    display: inline;
  }

  .hero-content > p {
    margin-top: 20px;
    font-size: 16px;
  }

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

  .button {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    font-size: 15px;
  }

  .hero-proof {
    height: 240px;
    margin: 38px -20px 0;
  }

  .hero-vertical {
    top: 64%;
    right: 0;
    font-size: 126px;
    opacity: 0.34;
  }

  .section-number {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .location-copy {
    min-height: auto;
    padding: 76px 20px 68px;
  }

  .location h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .signal-rule {
    margin: 28px 0 22px;
  }

  .location-beach {
    min-height: 340px;
  }

  .location-rail {
    padding-top: 20px;
  }

  .location-proofs {
    gap: 8px;
  }

  .distance-facts {
    grid-template-columns: 1fr;
  }

  .distance-facts > div {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 126px;
    border-top: 1px solid rgba(234, 230, 221, 0.68);
    border-left: 0;
  }

  .distance-facts strong {
    font-size: 96px;
  }

  .garden-main {
    min-height: 340px;
  }

  .garden-copy {
    min-height: auto;
    padding: 64px 20px 58px;
  }

  .garden-size {
    font-size: clamp(108px, 36vw, 148px);
  }

  .garden h2 {
    font-size: 38px;
  }

  .garden-features {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 12px 20px 0;
  }

  .garden-feature,
  .garden-sign {
    border-left: 0;
  }

  .garden-feature figure,
  .garden-sign {
    height: 430px;
  }

  .garden-feature h3 {
    margin-right: 0;
    margin-left: 0;
    font-size: 42px;
  }

  .garden-feature p {
    margin-right: 0;
    margin-left: 0;
  }

  .garden-feature::after {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .section-end-link {
    justify-content: flex-start;
  }

  .rooms {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .rooms-rail {
    grid-column: 1;
    grid-row: auto;
    flex-direction: row;
    min-height: 54px;
    padding: 0 20px;
    writing-mode: initial;
    transform: none;
  }

  .rooms-rail span:first-child {
    font-size: 24px;
  }

  .rooms-rail span:last-child {
    font-size: 14px;
  }

  .rooms-gallery,
  .rooms-info,
  .rooms-link {
    grid-column: 1;
  }

  .rooms-gallery {
    padding: 0;
  }

  .rooms-main {
    height: 350px;
  }

  .rooms-caption {
    padding: 20px;
    font-size: 16px;
  }

  .rooms-subgallery {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .rooms-subgallery figure {
    height: 310px;
  }

  .rooms-info {
    display: block;
  }

  .rooms-heading {
    padding: 58px 20px 40px;
  }

  .rooms h2 {
    font-size: 38px;
  }

  .room-facts {
    padding: 0 20px;
  }

  .room-facts > div {
    grid-template-columns: 104px 1fr;
  }

  .room-facts dt {
    font-size: 64px;
  }

  .room-facts dd strong,
  .pet-fact dt {
    font-size: 27px;
  }

  .floorplan {
    padding-right: 20px;
    padding-left: 20px;
  }

  .floorplan img {
    height: 280px;
  }

  .rooms-link {
    padding: 24px 20px 30px;
  }

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

  .booking-sunset,
  .booking-panel,
  .booking-sign {
    grid-column: 1;
  }

  .booking-sunset {
    min-height: 350px;
  }

  .booking-panel {
    padding: 58px 20px;
  }

  .booking h2 {
    font-size: 42px;
  }

  .booking-sign {
    min-height: 300px;
  }

  .access {
    padding: 54px 20px 20px;
  }

  .access h2 {
    font-size: 82px;
  }

  .access-map {
    height: 290px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 28px 20px;
  }

  .footer-wordmark {
    font-size: 68px;
  }

  .footer-wordmark.brand-signature {
    gap: 10px;
    font-size: 52px;
  }

  .footer-wordmark .brand-logo {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .site-footer p {
    grid-column: 1 / 3;
    grid-row: 2;
    padding: 18px 0 0;
    border-top: 1px solid var(--rule-dark);
    border-left: 0;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .footer-shop {
    grid-column: 1 / 3;
    grid-row: 3;
    padding-top: 14px;
    border-top: 1px solid var(--rule-dark);
  }

  .footer-top {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .hero-enter,
  .motion-ready .reveal,
  .motion-ready .media-reveal {
    clip-path: none;
    opacity: 1;
    transform: none;
  }
}
