:root {
  --ink: #17191c;
  --ink-soft: #342f2a;
  --cream: #fff4e4;
  --sand: #ead8bb;
  --sand-light: #fff7eb;
  --mist: #dff1e9;
  --lagoon: #bfe5dc;
  --reef: #0f4540;
  --reef-soft: #1c5d55;
  --palm: #dce8bf;
  --banana: #f1dd85;
  --coral: #e99b78;
  --clay: #a95f43;
  --white: #fffdf8;
  --line: rgba(23, 25, 28, 0.14);
  --line-light: rgba(255, 253, 248, 0.22);
  --shadow: 0 30px 90px rgba(15, 69, 64, 0.22);
  --soft-shadow: 0 18px 42px rgba(23, 25, 28, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(223, 241, 233, 0.7), rgba(255, 244, 228, 0.9)),
    var(--cream);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a,
select,
input[type="date"] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(233, 155, 120, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  transition: transform 180ms ease-out;
}

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

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 34px;
  color: var(--white);
  transition: background 220ms ease-out, color 220ms ease-out, box-shadow 220ms ease-out;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 247, 235, 0.92);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(23, 25, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
  min-height: 38px;
}

.brand img {
  width: 132px;
  filter: brightness(0) invert(1);
  transition: filter 220ms ease-out;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.desktop-nav {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  opacity: 0.9;
  transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.desktop-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.menu-toggle,
.btn,
.text-action,
.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  transition: transform 180ms ease-out, background 180ms ease-out, color 180ms ease-out, box-shadow 180ms ease-out;
}

.header-cta {
  min-height: 46px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
}

.site-header.is-scrolled .header-cta,
.site-header.is-open .header-cta {
  background: var(--reef);
  color: var(--white);
}

.header-cta:hover,
.btn:hover,
.text-action:hover,
.site-footer a:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  background: var(--reef);
  color: var(--white);
}

.header-cta svg,
.menu-toggle svg,
.btn svg,
.text-action svg,
.site-footer svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.mobile-menu {
  position: fixed;
  inset: 82px 14px auto;
  z-index: 49;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 247, 235, 0.97);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
  padding: 10px;
}

.mobile-menu a {
  display: flex;
  min-height: 54px;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 16px;
  font-weight: 900;
}

.mobile-menu a:hover {
  background: var(--sand);
}

.hero {
  position: relative;
  min-height: 88vh;
  margin: 0;
  padding: 126px 34px 74px;
  color: var(--white);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(14, 31, 30, 0.82), rgba(14, 31, 30, 0.28) 54%, rgba(14, 31, 30, 0.55)),
    linear-gradient(180deg, rgba(14, 31, 30, 0.24), rgba(14, 31, 30, 0.04) 48%, rgba(14, 31, 30, 0.7)),
    url("./assets/hero.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 190px;
  background: linear-gradient(180deg, rgba(223, 241, 233, 0), var(--mist));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.74fr);
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  max-width: var(--container);
  min-height: calc(88vh - 220px);
  margin: 0 auto;
}

.eyebrow,
.section-label,
.section-kicker,
.hero-ticker span,
.hero-card span,
.sensory-card span,
.rhythm-track span,
.review-grid span,
.mini-stat-grid span {
  margin: 0;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--banana);
}

.hero h1,
.desire-section h2,
.section-heading h2,
.rhythm-copy h2,
.bingin-panel h2,
.final-cta h2,
.sensory-card h3,
.rhythm-track h3,
.experience-card h3,
.review-grid p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 800px;
  font-size: 96px;
  line-height: 0.92;
}

.hero-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 20px;
  line-height: 1.7;
  text-wrap: pretty;
}

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

.btn {
  min-height: 56px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(23, 25, 28, 0.24);
}

.btn-primary:hover {
  background: var(--clay);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 253, 248, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.38);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 253, 248, 0.24);
}

.hero-showcase {
  position: relative;
  min-height: 440px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.14);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  right: 0;
  bottom: 0;
  width: 78%;
  height: 360px;
}

.hero-card-main::after,
.hero-card-small::after,
.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 31, 30, 0.03), rgba(14, 31, 30, 0.74));
}

.hero-card-main div,
.hero-card-small div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.hero-card-main strong {
  display: block;
  margin-top: 8px;
  max-width: 300px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.hero-card-small {
  left: 0;
  top: 0;
  width: 48%;
  height: 230px;
}

.hero-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--container);
  margin: 48px auto 0;
}

.hero-ticker span {
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.14);
  padding: 9px 13px;
  backdrop-filter: blur(10px);
}

.booking-strip {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: -36px auto 0;
  padding: 0 34px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  border: 1px solid rgba(15, 69, 64, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 247, 235, 0.96);
  box-shadow: var(--shadow);
  padding: 12px;
}

.booking-form label {
  display: grid;
  gap: 4px;
  min-width: 0;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  padding: 12px 14px;
}

.booking-form label span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 28px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  outline: 0;
}

.desire-section,
.sensory-section,
.rhythm-section,
.bingin-section,
.experience-section,
.reviews-section,
.final-cta,
.site-footer {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}

.desire-section {
  background: var(--mist);
  box-shadow: 0 0 0 100vmax var(--mist);
  clip-path: inset(0 -100vmax);
  padding-top: 118px;
  padding-bottom: 88px;
}

.section-kicker,
.section-label {
  margin-bottom: 18px;
  color: var(--clay);
}

.desire-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: stretch;
}

.desire-section h2,
.section-heading h2,
.rhythm-copy h2,
.bingin-panel h2,
.final-cta h2 {
  color: var(--ink);
  font-size: 66px;
  line-height: 0.94;
}

.desire-section p,
.bingin-panel p,
.final-cta p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
  text-wrap: pretty;
}

.scarcity-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 244, 228, 0.24), rgba(255, 244, 228, 0.84)),
    var(--coral);
  padding: 26px;
  box-shadow: var(--soft-shadow);
}

.scarcity-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 158px;
  font-weight: 500;
  line-height: 0.72;
}

.scarcity-card p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.sensory-section {
  background: var(--palm);
  box-shadow: 0 0 0 100vmax var(--palm);
  clip-path: inset(0 -100vmax);
  padding-top: 96px;
  padding-bottom: 108px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 26px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.sensory-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr 0.92fr;
  grid-auto-rows: 300px;
  gap: 16px;
}

.sensory-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 69, 64, 0.14);
  border-radius: var(--radius);
  background: var(--sand-light);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(15, 69, 64, 0.12);
}

.sensory-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.sensory-card,
.sensory-card img {
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}

.sensory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sensory-card:hover img {
  transform: scale(1.035);
}

.sensory-card:not(.color-card):not(.dark-card)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 31, 30, 0.02), rgba(14, 31, 30, 0.72));
}

.sensory-card > div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--white);
}

.sensory-card h3 {
  margin-top: 10px;
  font-size: 35px;
  line-height: 1;
}

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

.color-card,
.dark-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.color-card {
  background: var(--coral);
}

.dark-card {
  grid-column: span 2;
  background: var(--reef);
  color: var(--white);
}

.color-card p,
.dark-card p {
  margin: 18px 0 0;
  max-width: 420px;
  color: currentColor;
  opacity: 0.82;
}

.rhythm-section {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(241, 221, 133, 0.96), rgba(233, 155, 120, 0.86)),
    var(--banana);
  padding: 98px max(34px, calc((100vw - var(--container)) / 2 + 34px));
}

.rhythm-copy,
.rhythm-track {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

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

.rhythm-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.rhythm-track article {
  min-height: 285px;
  border: 1px solid rgba(91, 47, 32, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 247, 235, 0.78);
  padding: 22px;
  box-shadow: 0 14px 34px rgba(91, 47, 32, 0.1);
}

.rhythm-track h3 {
  margin-top: 82px;
  font-size: 34px;
  line-height: 1;
}

.rhythm-track p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.bingin-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: stretch;
  background: var(--reef);
  box-shadow: 0 0 0 100vmax var(--reef);
  clip-path: inset(0 -100vmax);
  padding-top: 108px;
  padding-bottom: 108px;
}

.location-image {
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bingin-panel {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 247, 235, 0.08);
  color: var(--white);
  padding: 34px;
}

.bingin-panel h2 {
  color: var(--white);
}

.bingin-panel .section-label {
  color: var(--banana);
}

.bingin-panel p {
  color: rgba(255, 253, 248, 0.82);
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0;
}

.mini-stat-grid div {
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.12);
  padding: 16px;
}

.mini-stat-grid strong {
  display: block;
  margin-top: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.experience-section {
  max-width: none;
  background: var(--lagoon);
  padding: 98px max(34px, calc((100vw - var(--container)) / 2 + 34px));
}

.experience-section .section-heading,
.experience-grid {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr 1fr;
  gap: 16px;
}

.experience-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

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

.experience-card > div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.experience-card h3 {
  margin-top: 10px;
  max-width: 320px;
  color: var(--white);
  font-size: 36px;
  line-height: 1;
}

.experience-card-split {
  display: flex;
  align-items: end;
  background: var(--cream);
  color: var(--ink);
}

.experience-card-split::after {
  display: none;
}

.experience-card-split > div {
  position: static;
  padding: 26px;
}

.experience-card-split h3 {
  max-width: none;
  color: var(--ink);
  font-size: 44px;
}

.experience-card-split p {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.reviews-section {
  background: var(--sand);
  box-shadow: 0 0 0 100vmax var(--sand);
  clip-path: inset(0 -100vmax);
  padding-top: 100px;
  padding-bottom: 108px;
}

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

.review-grid article {
  min-height: 245px;
  border: 1px solid rgba(91, 47, 32, 0.14);
  border-radius: var(--radius);
  background: var(--sand-light);
  padding: 22px;
}

.review-grid article:nth-child(2) {
  background: var(--coral);
}

.review-grid article:nth-child(3) {
  background: var(--palm);
}

.review-grid article:nth-child(4) {
  background: var(--lagoon);
}

.review-grid p {
  margin-top: 42px;
  color: var(--ink-soft);
  font-size: 30px;
  line-height: 1.05;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
  color: var(--white);
  isolation: isolate;
  padding-top: 96px;
  padding-bottom: 96px;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0 -100vmax;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14, 31, 30, 0.86), rgba(14, 31, 30, 0.36)),
    url("./assets/contact.webp") center / cover no-repeat;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0 -100vmax;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14, 31, 30, 0.06), rgba(14, 31, 30, 0.44));
}

.final-cta .section-label {
  color: var(--banana);
}

.final-cta h2 {
  max-width: 780px;
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 253, 248, 0.86);
}

.site-footer {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--cream);
  box-shadow: 0 0 0 100vmax var(--cream);
  clip-path: inset(0 -100vmax);
  padding-top: 32px;
  padding-bottom: 42px;
  color: var(--ink-soft);
}

.site-footer img {
  width: 130px;
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.site-footer a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--reef);
  color: var(--white);
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 78px;
  }

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

  .hero-showcase {
    min-height: 330px;
    max-width: 620px;
  }

  .hero-card-main {
    width: 72%;
    height: 280px;
  }

  .hero-card-small {
    width: 42%;
    height: 190px;
  }

  .desire-grid,
  .bingin-section {
    grid-template-columns: 1fr;
  }

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

  .dark-card {
    grid-column: span 1;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
  }

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

  .menu-toggle {
    display: inline-flex;
  }

  .brand,
  .brand img {
    width: 114px;
  }

  .hero {
    min-height: 86vh;
    padding: 106px 18px 44px;
    background-position: 44% center;
  }

  .hero-inner {
    min-height: calc(86vh - 150px);
    gap: 28px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 55px;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 360px;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 310px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .hero-showcase {
    display: none;
  }

  .hero-ticker {
    margin-top: 24px;
  }

  .booking-strip {
    margin-top: 0;
    padding: 14px 14px 0;
  }

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

  .desire-section,
  .sensory-section,
  .rhythm-section,
  .bingin-section,
  .experience-section,
  .reviews-section,
  .final-cta,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .desire-section {
    padding-top: 76px;
    padding-bottom: 72px;
  }

  .desire-section h2,
  .section-heading h2,
  .rhythm-copy h2,
  .bingin-panel h2,
  .final-cta h2 {
    font-size: 43px;
    line-height: 1;
  }

  .scarcity-card {
    min-height: 245px;
  }

  .scarcity-card strong {
    font-size: 104px;
  }

  .section-heading,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .sensory-section {
    padding-top: 72px;
    padding-bottom: 78px;
  }

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

  .sensory-card {
    min-height: 310px;
  }

  .tall-card {
    grid-row: auto;
    min-height: 470px;
  }

  .color-card,
  .dark-card {
    min-height: 270px;
  }

  .rhythm-section,
  .experience-section {
    padding-top: 72px;
    padding-bottom: 78px;
  }

  .rhythm-track,
  .review-grid,
  .mini-stat-grid {
    grid-template-columns: 1fr;
  }

  .rhythm-track article {
    min-height: 230px;
  }

  .rhythm-track h3 {
    margin-top: 56px;
  }

  .bingin-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .location-image,
  .bingin-panel {
    min-height: 430px;
  }

  .bingin-panel {
    padding: 24px;
  }

  .experience-card {
    min-height: 360px;
  }

  .reviews-section {
    padding-top: 74px;
    padding-bottom: 78px;
  }

  .review-grid p {
    font-size: 28px;
  }

  .final-cta {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero-ticker span {
    font-size: 11px;
  }

  .mobile-menu {
    inset: 74px 10px auto;
  }

  .sensory-card h3 {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
