:root {
  --forest: #071a1d;
  --deep: #0f3439;
  --ocean: #14545d;
  --teal: #26d0bd;
  --coral: #ff7a59;
  --gold: #f2b84b;
  --foam: #f4f8f6;
  --paper: #fffaf4;
  --white: #ffffff;
  --ink: #102326;
  --muted: #607176;
  --line: rgba(16, 35, 38, 0.13);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(7, 26, 29, 0.2);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--foam);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(38, 208, 189, 0.72);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--forest);
  font-weight: 900;
  padding: 10px 14px;
}

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

.sample-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(7, 26, 29, 0.72);
  backdrop-filter: blur(16px);
  color: var(--white);
  padding: 14px 40px;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.sample-header.is-scrolled {
  background: rgba(7, 26, 29, 0.94);
  box-shadow: 0 18px 54px rgba(7, 26, 29, 0.26);
}

.sample-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 250, 244, 0.96) 0 10%, transparent 11%),
    linear-gradient(135deg, var(--teal), var(--coral));
  box-shadow: 0 14px 34px rgba(38, 208, 189, 0.22);
}

.sample-brand strong,
.footer-brand span {
  display: block;
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.sample-brand small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.sample-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sample-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
  padding: 0 13px;
  transition: background 160ms ease, color 160ms ease;
}

.sample-nav a:hover,
.sample-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.sample-nav .studio-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

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

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

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest);
  color: var(--white);
  padding: 138px 40px 58px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 26, 29, 0.92), rgba(7, 26, 29, 0.42) 48%, rgba(7, 26, 29, 0.16)),
    linear-gradient(180deg, rgba(7, 26, 29, 0.16), rgba(7, 26, 29, 0.86));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.flow-copy h2,
.reserve-copy h2 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  font-weight: 850;
  line-height: 1.03;
}

.hero h1 {
  max-width: 760px;
  font-size: 76px;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  padding: 0 18px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--coral);
  color: #230c07;
  box-shadow: 0 18px 44px rgba(255, 122, 89, 0.28);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-dark {
  background: var(--forest);
  color: var(--white);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin: 44px 0 0;
}

.proof-row div {
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 16px;
}

.proof-row dt {
  color: var(--gold);
  font-family: Sora, Inter, sans-serif;
  font-size: 24px;
  font-weight: 850;
}

.proof-row dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  right: 40px;
  bottom: 38px;
  z-index: 2;
  width: 42px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.scroll-cue span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  animation: cue 1.6s ease-in-out infinite;
}

.booking-band {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 22px 0;
}

.booking-form,
.booking-summary {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.booking-form {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 0.9fr 1.15fr auto;
  gap: 12px;
  align-items: end;
}

.booking-form label,
.reserve-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--foam);
  color: var(--ink);
  padding: 12px 13px;
}

.booking-form select,
.reserve-form select {
  appearance: none;
}

.booking-summary {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.section {
  padding: 102px 0;
}

.section-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.section-light {
  background: var(--foam);
}

.section-deep {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--forest);
  background-size: 44px 44px;
  color: var(--white);
}

.section-flow {
  background: var(--paper);
}

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

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

.intro-grid,
.flow-layout,
.reserve-layout,
.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

.split-heading > p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.suites-section .split-heading > p,
.section-light .split-heading > p {
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
}

.section-heading.compact {
  max-width: 560px;
}

.section-heading h2,
.flow-copy h2,
.reserve-copy h2 {
  font-size: 43px;
}

.section-heading p:not(.eyebrow),
.flow-copy p,
.reserve-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-deep .section-heading p:not(.eyebrow),
.section-deep .flow-copy p,
.section-reserve .reserve-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.signature-panel {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(38, 208, 189, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(38, 208, 189, 0.2), transparent 42%),
    linear-gradient(160deg, var(--forest), var(--deep));
  color: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

.signature-panel span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.signature-panel strong {
  display: block;
  margin-top: 18px;
  font-family: Sora, Inter, sans-serif;
  font-size: 27px;
  line-height: 1.14;
}

.signature-panel p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.rhythm-card,
.suite-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(16, 35, 38, 0.08);
  overflow: hidden;
}

.rhythm-card-image,
.suite-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--deep);
}

.rhythm-card-body,
.suite-card-body {
  padding: 20px;
}

.rhythm-card h3,
.suite-card h3,
.testimonial-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Sora, Inter, sans-serif;
  font-size: 22px;
  line-height: 1.18;
}

.rhythm-card p,
.suite-card p,
.testimonial-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.concierge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.concierge-stage {
  min-height: 520px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b2226;
}

.concierge-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concierge-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 22px;
}

.segmented-control {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.segmented-control button,
.filter-group button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
  cursor: pointer;
}

.segmented-control button.is-active {
  background: var(--teal);
  color: #062022;
}

.experience-copy {
  margin-top: 26px;
}

.experience-copy h3 {
  margin: 0;
  font-family: Sora, Inter, sans-serif;
  font-size: 30px;
  line-height: 1.14;
}

.experience-copy p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
}

.itinerary-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: itinerary;
}

.itinerary-list li {
  counter-increment: itinerary;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.itinerary-list li::before {
  content: counter(itinerary, decimal-leading-zero);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(242, 184, 75, 0.16);
  color: var(--gold);
  font-family: Sora, Inter, sans-serif;
  font-weight: 850;
}

.itinerary-list strong {
  display: block;
  color: var(--white);
}

.itinerary-list span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-group button {
  background: var(--white);
  color: var(--muted);
  border-color: var(--line);
  padding: 0 14px;
}

.filter-group button.is-active {
  background: var(--forest);
  color: var(--white);
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.suite-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.suite-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.suite-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--foam);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  padding: 0 10px;
}

.suite-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 18px 20px 20px;
}

.suite-price {
  display: grid;
  gap: 2px;
}

.suite-price strong {
  color: var(--forest);
  font-family: Sora, Inter, sans-serif;
  font-size: 22px;
}

.suite-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.flow-copy {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.flow-map {
  display: grid;
  gap: 12px;
}

.flow-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(16, 35, 38, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
}

.flow-step span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--teal);
  font-family: Sora, Inter, sans-serif;
  font-weight: 850;
}

.flow-step h3 {
  margin: 0 0 5px;
  font-family: Sora, Inter, sans-serif;
  font-size: 20px;
}

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

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  padding: 22px;
}

.testimonial-card p {
  font-size: 17px;
}

.testimonial-card span {
  display: block;
  margin-top: 18px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reserve-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  list-style: none;
}

.reserve-points li,
.suite-card li {
  position: relative;
  padding-left: 22px;
}

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

.reserve-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.reserve-form label {
  color: rgba(255, 255, 255, 0.76);
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 26, 29, 0.78);
  color: var(--white);
}

.reserve-form textarea {
  min-height: 136px;
  resize: vertical;
}

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

.hidden-field {
  display: none;
}

.sample-footer {
  background: #041114;
  color: rgba(255, 255, 255, 0.72);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: Sora, Inter, sans-serif;
  font-weight: 850;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.mobile-reserve {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(-10px);
    opacity: 0.42;
  }

  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .sample-header,
  .hero {
    padding-inline: 24px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form .button {
    grid-column: 1 / -1;
  }

  .intro-grid,
  .flow-layout,
  .reserve-layout,
  .proof-layout,
  .split-heading,
  .concierge-layout {
    grid-template-columns: 1fr;
  }

  .rhythm-grid,
  .suite-grid,
  .testimonial-list {
    grid-template-columns: 1fr 1fr;
  }

  .flow-copy {
    position: static;
  }

  .filter-group {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: 70px;
  }

  .sample-header {
    min-height: var(--header-height);
    padding: 12px 18px;
  }

  .sample-brand {
    min-width: 154px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .sample-brand strong {
    font-size: 16px;
  }

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

  .sample-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    width: min(294px, calc(100vw - 36px));
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: rgba(7, 26, 29, 0.98);
    box-shadow: var(--shadow);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .sample-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sample-nav a {
    justify-content: flex-start;
    min-height: 44px;
  }

  .hero {
    min-height: 86svh;
    padding: 112px 18px 48px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .booking-form .button {
    width: 100%;
  }

  .proof-row,
  .rhythm-grid,
  .suite-grid,
  .testimonial-list {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 30px;
  }

  .proof-row div {
    min-height: 94px;
    padding: 12px;
  }

  .proof-row dt {
    font-size: 22px;
  }

  .proof-row dd {
    font-size: 12px;
    line-height: 1.28;
  }

  .scroll-cue {
    display: none;
  }

  .booking-form,
  .booking-summary,
  .section-inner {
    width: min(100% - 36px, 1160px);
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .flow-copy h2,
  .reserve-copy h2 {
    font-size: 33px;
  }

  .section-heading p:not(.eyebrow),
  .flow-copy p,
  .reserve-copy p,
  .split-heading > p {
    font-size: 16px;
  }

  .signature-panel {
    min-height: 226px;
  }

  .concierge-stage {
    min-height: 360px;
  }

  .segmented-control {
    grid-template-columns: 1fr;
  }

  .suite-footer,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .suite-footer .button {
    width: 100%;
  }

  .flow-step {
    grid-template-columns: 50px 1fr;
  }

  .flow-step span {
    width: 50px;
    height: 50px;
  }

  .reserve-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .mobile-reserve {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 14px;
    z-index: 90;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--coral);
    color: #230c07;
    box-shadow: 0 18px 44px rgba(7, 26, 29, 0.28);
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-reserve.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

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

  .proof-row div {
    min-height: 86px;
    padding: 10px;
  }

  .proof-row dt {
    font-size: 20px;
  }

  .proof-row dd {
    font-size: 11px;
  }

  .rhythm-card-image,
  .suite-card-image {
    height: 154px;
  }

  .booking-band {
    padding: 18px 0;
  }
}

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