@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --cream: #f2eee6;
  --teal: #193036;
  --ocean: #355a5d;
  --sand: #b89c73;
  --stone: #d8cdbd;
  --white: #ffffff;
  --ink: #252827;
  --muted: #66706f;
  --line: rgba(25, 48, 54, .14);
  --shadow: 0 26px 70px rgba(20, 42, 46, .12);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Manrope', Arial, sans-serif;
  --container: 1380px;
  --radius: 2px;
  --header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

button {
  cursor: pointer;
}

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

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

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

.section {
  padding: clamp(78px, 9vw, 148px) 0;
}

.section--tight {
  padding: clamp(64px, 7vw, 105px) 0;
}

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

.section--cream {
  background: var(--cream);
}

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

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--ocean);
}

.section--teal .eyebrow,
.hero .eyebrow {
  color: rgba(255, 255, 255, .78);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.015em;
}

h1 {
  font-size: clamp(3.2rem, 7.4vw, 8rem);
}

h2 {
  font-size: clamp(2.7rem, 5vw, 5.8rem);
}

h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
}

.lead {
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  color: var(--muted);
  max-width: 760px;
}

.prose p {
  color: #4d5554;
  margin-bottom: 1.25em;
}

.section--teal .prose p {
  color: rgba(255, 255, 255, .75);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  background: var(--teal);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--ocean);
}

.btn--light {
  background: var(--cream);
  color: var(--teal);
}

.btn--light:hover {
  background: var(--white);
}

.btn--outline {
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.btn--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--teal);
}

.btn--ghost:hover {
  background: var(--teal);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 700;
  border-bottom: 1px solid rgba(25, 48, 54, .25);
}

.text-link:hover {
  border-color: var(--teal);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 80;
  transition: background .28s ease, color .28s ease, box-shadow .28s ease;
  color: var(--teal);
  background: rgba(242, 238, 230, .96);
  border-bottom: 1px solid rgba(25, 48, 54, .08);
}

.site-header.is-overlay {
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, .32), transparent);
  border-bottom-color: rgba(255, 255, 255, .15);
}

.site-header.is-overlay.is-scrolled {
  color: var(--teal);
  background: rgba(242, 238, 230, .97);
  border-bottom-color: rgba(25, 48, 54, .1);
  box-shadow: 0 6px 28px rgba(0, 0, 0, .06);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  letter-spacing: -.02em;
  white-space: nowrap;
}

.nav-list {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-link {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  right: 0;
}

.header-cta {
  justify-self: end;
}

.site-header.is-overlay:not(.is-scrolled) .header-cta {
  background: var(--cream);
  color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span {
  margin: 5px 0;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}


.hero {
  position: relative;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}

.hero--home {
  min-height: 90vh;
  background-image: linear-gradient(90deg, rgba(12, 28, 32, .64), rgba(12, 28, 32, .16)), url('../images/hero-gold-coast.jpeg');
}

.hero--about {
  min-height: 60vh;
  background-image: linear-gradient(90deg, rgba(12, 28, 32, .62), rgba(12, 28, 32, .2)), url('../images/about-hero.jpeg');
}

.hero--contact {
  min-height: 56vh;
  background-image: linear-gradient(90deg, rgba(12, 28, 32, .6), rgba(12, 28, 32, .18)), url('../images/contact-hero.jpeg');
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, .35), transparent 50%);
}

.hero-content {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: clamp(58px, 7vw, 100px);
  max-width: 1080px;
}

.hero h1 {
  max-width: 1050px;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero-copy {
  max-width: 720px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  color: rgba(255, 255, 255, .88);
}

.hero .actions {
  margin-top: 34px;
}

.hero-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.hero-info .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-info span {
  padding: 18px 0;
  font-size: .73rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .13em;
}

.hero-info span+span {
  border-left: 1px solid rgba(255, 255, 255, .18);
  padding-left: 28px;
}

.hero--home .hero-content {
  padding-bottom: 118px;
}

.hero--sub h1 {
  font-size: clamp(3.3rem, 6vw, 6.6rem);
  max-width: 900px;
}


.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
}

.intro-media {
  position: relative;
}

.intro-media img {
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.intro-media::after {
  content: 'BROADBEACH';
  position: absolute;
  right: -42px;
  bottom: 56px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .66rem;
  letter-spacing: .22em;
  color: var(--muted);
}

.intro-copy h2 {
  max-width: 820px;
}

.rooms-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 46px;
}

.rooms-header .lead {
  max-width: 610px;
}

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

.room-card {
  background: var(--white);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.room-image {
  overflow: hidden;
  background: var(--stone);
}

.room-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .6s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.025);
}

.room-body {
  padding: clamp(24px, 2.5vw, 38px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-body h3 {
  margin-bottom: 12px;
}

.room-price {
  color: var(--ocean);
  font-weight: 700;
  margin-bottom: 18px;
}

.room-copy {
  color: var(--muted);
  font-size: .93rem;
}

.room-features {
  list-style: none;
  margin: 8px 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 15px;
  font-size: .82rem;
}

.room-features li::before {
  content: '•';
  color: var(--sand);
  margin-right: 8px;
}

.room-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.rate-note {
  margin: 26px 0 0;
  font-size: .8rem;
  color: var(--muted);
}


.dining-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.dining-collage {
  display: grid;
  grid-template-columns: 1fr .48fr;
  gap: 18px;
  align-items: end;
}

.dining-main {
  grid-row: 1 / span 2;
}

.dining-main img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.dining-detail img {
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
}

.dining-note {
  padding: 28px 18px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--ocean);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: .82rem;
  font-weight: 700;
}

.feature-pill i {
  color: var(--sand);
}


.wellness-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 0;
  background: var(--teal);
  color: var(--white);
}

.wellness-media img {
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.wellness-copy {
  padding: clamp(46px, 6vw, 94px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wellness-copy .lead {
  color: rgba(255, 255, 255, .76);
}

.highlights {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.highlight {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.highlight strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.highlight span {
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
}

.adult-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: .8rem;
}


.guide-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}

.guide-sticky {
  position: sticky;
  top: 120px;
}

.guide-image {
  margin-top: 30px;
}

.guide-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.destination-list {
  border-top: 1px solid var(--line);
}

.destination {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
}

.destination-num {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--sand);
}

.destination h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.destination p {
  margin: 0;
  color: var(--muted);
}


.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 1000px;
  margin-inline: auto;
}

.final-cta p {
  color: rgba(255, 255, 255, .72);
  font-size: 1.1rem;
}

.final-cta .actions {
  justify-content: center;
  margin-top: 30px;
}


.story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(46px, 7vw, 110px);
  align-items: start;
}

.story-media {
  position: sticky;
  top: 120px;
}

.story-media img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

.timeline {
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 44px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-index {
  color: var(--sand);
  font-family: var(--serif);
  font-size: 1.6rem;
}

.timeline-item h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.timeline-item p {
  color: var(--muted);
  margin: 0;
  max-width: 800px;
}

.design-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(45px, 7vw, 105px);
  align-items: center;
}

.design-grid img {
  aspect-ratio: 5/4;
  object-fit: cover;
}

.design-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 28px;
  margin-top: 35px;
}

.design-point {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.design-point h3 {
  font-size: 1.4rem;
}

.design-point p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.experience-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.review-card {
  padding: clamp(28px, 3vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
}

.stars {
  color: var(--sand);
  letter-spacing: .12em;
  margin-bottom: 28px;
}

.review-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1.32;
}

.review-author {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}


.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(48px, 8vw, 120px);
}

.contact-list {
  display: grid;
  gap: 30px;
  margin-top: 38px;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ocean);
}

.contact-item h3 {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.contact-item p {
  color: var(--muted);
  margin: 0;
}

.contact-item a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-card {
  background: var(--white);
  padding: clamp(30px, 4vw, 58px);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px 18px;
}

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

.field label,
.field-label {
  display: block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cfcac1;
  background: #fbfaf7;
  color: var(--ink);
  min-height: 50px;
  border-radius: 0;
  padding: 12px 14px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(53, 90, 93, .1);
}

.field [aria-invalid="true"] {
  border-color: #a23f36;
}

.error {
  min-height: 19px;
  margin: 5px 0 0;
  color: #a23f36;
  font-size: .76rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: var(--muted);
}

.checkbox input {
  margin-top: 5px;
  accent-color: var(--teal);
}

.checkbox a {
  color: var(--teal);
  text-decoration: underline;
}

.form-status {
  margin-top: 18px;
  padding: 15px 17px;
  background: #edf4ef;
  border-left: 3px solid #527963;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.map-wrap iframe {
  width: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.policy-hero {
  padding: calc(var(--header-h) + 82px) 0 66px;
  background: var(--teal);
  color: var(--white);
}

.policy-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 1000px;
}

.policy-meta {
  color: rgba(255, 255, 255, .65);
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 840px);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 115px;
  border-top: 1px solid var(--line);
}

.policy-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}

.policy-nav a:hover {
  color: var(--teal);
}

.policy-content h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  margin: 1.6em 0 .5em;
}

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

.policy-content p,
.policy-content li {
  color: #555e5d;
}

.policy-content a {
  color: var(--teal);
  text-decoration: underline;
}

.policy-content ul {
  padding-left: 22px;
}

.site-footer {
  background: #12282d;
  color: var(--white);
  padding: clamp(64px, 8vw, 110px) 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .75fr .85fr 1fr;
  gap: clamp(34px, 5vw, 74px);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 16px;
}

.footer-about {
  color: rgba(255, 255, 255, .65);
  max-width: 360px;
  font-size: .9rem;
}

.footer-title {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
}

.footer-links a:hover {
  color: var(--white);
}

.cookie-settings-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, .82);
  font: inherit;
  text-align: left;
}

.footer-contact {
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
}

.footer-contact a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.adult-strip {
  margin-top: 58px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  gap: 18px;
}

.adult-badge {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.adult-strip p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .86rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: rgba(255, 255, 255, .48);
  font-size: .76rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}


.cookie-banner {
  position: fixed;
  z-index: 120;
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-width: 760px;
  margin-left: auto;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .22);
  padding: 26px;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.cookie-banner p {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 18px;
}

.cookie-banner a {
  color: var(--teal);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.cookie-actions .btn {
  min-height: 44px;
  padding-inline: 16px;
  font-size: .7rem;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(12, 26, 30, .62);
  display: none;
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.cookie-modal-backdrop.is-open {
  display: flex;
}

.cookie-modal {
  width: min(700px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: var(--cream);
  box-shadow: 0 25px 100px rgba(0, 0, 0, .28);
}

.cookie-modal-header {
  padding: 26px 28px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.cookie-modal-header h2 {
  font-size: 2.1rem;
  margin: 0;
}

.modal-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--teal);
  font-size: 1.5rem;
}

.cookie-modal-body {
  padding: 8px 28px 24px;
}

.cookie-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cookie-row h3 {
  font-family: var(--sans);
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cookie-row p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  align-self: center;
}

.switch input {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
}

.switch-ui {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #bfc4c1;
  transition: background .2s ease;
}

.switch-ui::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: white;
  transition: transform .2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .18);
}

.switch input:checked+.switch-ui {
  background: var(--ocean);
}

.switch input:checked+.switch-ui::after {
  transform: translateX(22px);
}

.switch input:focus-visible+.switch-ui {
  outline: 3px solid var(--sand);
  outline-offset: 3px;
}

.switch input:disabled+.switch-ui {
  opacity: .72;
}

.cookie-modal-actions {
  padding: 20px 28px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}


.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --header-h: 76px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-self: end;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--cream);
    color: var(--teal);
    border-top: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
    z-index: 75;
  }

  .mobile-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav .nav-list {
    display: grid;
    gap: 0;
    padding: 20px 28px 30px;
  }

  .mobile-nav .nav-link {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .mobile-book {
    margin: 8px 28px 28px;
    width: calc(100% - 56px);
  }

  .site-header.is-overlay .mobile-nav {
    background: var(--cream);
    color: var(--teal);
  }

  .intro-grid,
  .dining-wrap,
  .guide-grid,
  .story-grid,
  .design-grid,
  .experience-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-media {
    max-width: 720px;
  }

  .intro-media::after {
    display: none;
  }

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

  .room-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 11px);
  }

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

  .wellness-media img {
    min-height: 0;
    aspect-ratio: 16/9;
  }

  .guide-sticky,
  .story-media {
    position: static;
  }

  .story-media {
    max-width: 700px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-grid> :first-child {
    grid-column: 1 / -1;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero--home {
    min-height: 820px;
  }

  .hero--about,
  .hero--contact {
    min-height: 600px;
  }

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

  .hero--home .hero-content {
    padding-bottom: 145px;
  }

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

  .hero-info span {
    padding: 9px 0;
  }

  .hero-info span+span {
    border-left: 0;
    padding-left: 0;
  }

  .rooms-header {
    display: block;
  }

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

  .room-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .room-features {
    grid-template-columns: 1fr;
  }

  .dining-collage {
    grid-template-columns: 1fr .58fr;
  }

  .wellness-copy {
    padding: 44px 24px;
  }

  .highlight {
    grid-template-columns: 95px 1fr;
  }

  .design-points,
  .experience-list,
  .reviews-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .footer-grid> :first-child,
  .footer-grid> :last-child {
    grid-column: 1 / -1;
  }

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

  .policy-nav {
    grid-template-columns: 1fr;
  }

  .map-wrap iframe {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .actions {
    display: grid;
    width: 100%;
  }

  .actions .btn {
    width: 100%;
  }

  .hero--home {
    min-height: 760px;
  }

  .hero-info {
    display: none;
  }

  .hero--home .hero-content {
    padding-bottom: 68px;
  }

  .dining-collage {
    grid-template-columns: 1fr;
  }

  .dining-main {
    grid-row: auto;
  }

  .dining-detail {
    width: 72%;
    margin-left: auto;
  }

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

  .destination {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .highlight {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .footer-grid>* {
    grid-column: auto !important;
  }

  .adult-strip {
    align-items: flex-start;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 20px;
  }

  .cookie-actions {
    display: grid;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .cookie-modal-backdrop {
    padding: 8px;
  }

  .cookie-modal {
    max-height: calc(100vh - 16px);
  }

  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cookie-modal-actions {
    display: grid;
  }

  .cookie-modal-actions .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}