:root {
  --bg: #fff8f3;
  --bg-deep: #fff0e5;
  --bg-soft: rgba(255, 255, 255, 0.68);
  --bg-blush-top: rgba(255, 202, 215, 0.52);
  --bg-gold-top: rgba(255, 219, 176, 0.4);
  --bg-blush-top-mobile: rgba(255, 217, 224, 0.48);
  --bg-gold-top-mobile: rgba(255, 230, 196, 0.42);
  --bg-overlay-sheen: rgba(255, 255, 255, 0.03);
  --bg-overlay-warm: rgba(255, 240, 223, 0.12);
  --bg-overlay-rose: rgba(255, 206, 220, 0.06);
  --page-glow-opacity: 0.12;
  --page-glow-left-color: rgba(255, 191, 205, 0.42);
  --page-glow-right-color: rgba(255, 221, 160, 0.28);
  --ink: #3f2a2d;
  --ink-soft: #6a5257;
  --accent: #b94f6a;
  --accent-soft: #d991a3;
  --accent-strong: #973650;
  --accent-gold: #e5b06f;
  --leaf: #6f8f82;
  --line: rgba(109, 70, 76, 0.14);
  --shadow: 0 24px 80px rgba(150, 80, 92, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, var(--bg-blush-top), transparent 38%),
    radial-gradient(circle at 85% 12%, var(--bg-gold-top), transparent 32%),
    linear-gradient(180deg, #fef3eb 0%, #fff6f1 42%, #fff9f6 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, var(--bg-overlay-sheen), transparent 44%),
    radial-gradient(circle at 20% 14%, var(--bg-overlay-warm), transparent 26%),
    radial-gradient(circle at 78% 76%, var(--bg-overlay-rose), transparent 22%);
  pointer-events: none;
  z-index: 0;
}

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

button,
input,
select {
  font: inherit;
}

.page-glow {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: var(--page-glow-opacity);
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  top: -8rem;
  left: -10rem;
  background: var(--page-glow-left-color);
}

.page-glow-right {
  top: 22rem;
  right: -10rem;
  background: var(--page-glow-right-color);
}

.hero-shell,
main,
.footer {
  position: relative;
  z-index: 2;
}

.topbar,
.hero-grid,
.section,
.footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 0;
}

.brand-block {
  display: grid;
  gap: 0.35rem;
}

.brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.35rem 1rem;
}

.brand-mark {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 4rem;
  height: 4rem;
  border-radius: 1.15rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 251, 247, 0.88);
  border: 1px solid rgba(16, 98, 83, 0.12);
  box-shadow: 0 16px 36px rgba(16, 98, 83, 0.12);
}

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

.brand-copy {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-copy strong,
.eyebrow,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand-copy strong {
  font-size: 1.5rem;
}

.brand-copy small {
  color: var(--ink-soft);
}

.brand-phones,
.footer-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.brand-phones a,
.footer-phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0;
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 600;
}

.brand-phones a {
  font-size: 0.92rem;
}

.brand-phones a:hover,
.footer-phones a:hover {
  text-decoration: underline;
}

.whatsapp-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1fa855;
  flex: 0 0 auto;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  padding: 4.2rem 0 5.4rem;
}

.hero-copy,
.hero-card,
.split-card,
.section-light,
.button {
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.94;
}

.hero-text,
.section-text,
.split-card p,
.hero-card p,
.highlight-card p,
.footer p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.hero-text {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  font-size: 1.05rem;
}

.section-text {
  margin: 0.9rem 0 0;
  max-width: 38rem;
  font-size: 1rem;
}

#inicio,
#quartos {
  scroll-margin-top: 1.25rem;
}

.badge-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0;
  margin: 1.75rem 0 0;
}

.badge-list li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(106, 134, 199, 0.14);
  box-shadow: 0 10px 30px rgba(88, 112, 164, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 18px 40px rgba(151, 54, 80, 0.28);
}

.button-soft,
.button-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(106, 134, 199, 0.18);
  color: var(--ink);
}

.button-soft:hover,
.button-ghost:hover {
  border-color: rgba(185, 79, 106, 0.26);
  box-shadow: 0 14px 32px rgba(111, 70, 77, 0.1);
}

.button-petal-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
  animation: button-petal-layer 2300ms linear forwards;
}

.button-petal-rain-item {
  position: absolute;
  display: block;
  background-image: var(--petal-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  filter: saturate(1.08) drop-shadow(0 4px 8px rgba(151, 54, 80, 0.18));
  animation: button-petal-fall 1800ms linear both;
}

@keyframes button-petal-layer {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes button-petal-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -42%, 0) rotate(0deg) scale(0.88);
  }

  12% {
    opacity: var(--petal-opacity);
  }

  48% {
    opacity: var(--petal-opacity);
    transform:
      translate3d(var(--drift-x-mid), 72%, 0)
      rotate(calc(var(--drift-rotate) * 0.2))
      scale(0.95);
  }

  78% {
    opacity: calc(var(--petal-opacity) * 0.92);
    transform:
      translate3d(calc(var(--drift-x-end) * 0.78), 132%, 0)
      rotate(calc(var(--drift-rotate) * 0.62))
      scale(1.01);
  }

  100% {
    opacity: 0;
    transform:
      translate3d(var(--drift-x-end), 192%, 0)
      rotate(var(--drift-rotate))
      scale(1.08);
  }
}

.hero-card {
  position: relative;
  padding: 1.25rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 243, 0.84)),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.hero-card-photo {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  border-radius: 1.5rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 214, 230, 0.16), transparent 22%),
    linear-gradient(145deg, #f4e5db 0%, #ecd3d7 45%, #f6ece7 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-space-stack {
  width: 100%;
  min-height: 100%;
  margin: auto;
}

.hero-showcase {
  display: grid;
  gap: 1rem;
}

.hero-showcase-main {
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 36px rgba(88, 54, 62, 0.12);
}

.hero-showcase-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: cover;
}

.hero-showcase-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem 1.15rem;
}

.hero-showcase-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-showcase-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--accent-strong);
}

.hero-card-body {
  padding: 1.25rem 0.35rem 0.5rem;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 1.1rem 0 0;
  padding: 0;
}

.hero-points li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent));
  box-shadow: 0 0 0 0.32rem rgba(185, 79, 106, 0.08);
}

.card-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
  font-size: 0.82rem;
}

.hero-card h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.section {
  padding: 1rem 0 4rem;
}

.section-light {
  padding: 2rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 249, 245, 0.64)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.feature-grid,
.room-grid,
.experience-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-card,
.room-card,
.split-card,
.feature-card,
.step-card {
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.highlight-card {
  padding: 1.5rem;
}

.room-card {
  --room-media-bg:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(160deg, #22181e 0%, #33212c 52%, #171218 100%);
  --room-chip-bg: rgba(185, 79, 106, 0.08);
  --room-chip-border: rgba(185, 79, 106, 0.14);
  --room-chip-ink: var(--accent-strong);
  --room-feature-bg: rgba(111, 143, 130, 0.08);
  --room-feature-border: rgba(111, 143, 130, 0.16);
  --room-feature-ink: var(--leaf);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.room-card[data-room-theme="lirio"] {
  --room-media-bg:
    radial-gradient(circle at 50% 34%, rgba(243, 245, 204, 0.18), transparent 26%),
    linear-gradient(160deg, #172119 0%, #233028 52%, #111814 100%);
  --room-chip-bg: rgba(203, 214, 151, 0.14);
  --room-chip-border: rgba(203, 214, 151, 0.22);
  --room-chip-ink: #6f7f31;
  --room-feature-bg: rgba(183, 203, 152, 0.14);
  --room-feature-border: rgba(183, 203, 152, 0.24);
  --room-feature-ink: #5e7432;
}

.room-card[data-room-theme="amarilis"] {
  --room-media-bg:
    radial-gradient(circle at 50% 34%, rgba(255, 214, 232, 0.18), transparent 28%),
    linear-gradient(160deg, #251721 0%, #3a2032 52%, #181219 100%);
  --room-chip-bg: rgba(238, 186, 210, 0.14);
  --room-chip-border: rgba(238, 186, 210, 0.22);
  --room-chip-ink: #a04f72;
  --room-feature-bg: rgba(245, 197, 216, 0.14);
  --room-feature-border: rgba(245, 197, 216, 0.22);
  --room-feature-ink: #9a4a68;
}

.room-card[data-room-theme="jasmim"] {
  --room-media-bg:
    radial-gradient(circle at 50% 34%, rgba(215, 233, 182, 0.18), transparent 28%),
    linear-gradient(160deg, #172218 0%, #253726 52%, #121915 100%);
  --room-chip-bg: rgba(184, 208, 126, 0.14);
  --room-chip-border: rgba(184, 208, 126, 0.24);
  --room-chip-ink: #6e8630;
  --room-feature-bg: rgba(196, 218, 144, 0.15);
  --room-feature-border: rgba(196, 218, 144, 0.24);
  --room-feature-ink: #657d2c;
}

.room-card[data-room-theme="neutro"] {
  --room-media-bg:
    radial-gradient(circle at 50% 34%, rgba(240, 231, 224, 0.18), transparent 30%),
    linear-gradient(160deg, #231b1e 0%, #32272c 52%, #181316 100%);
  --room-chip-bg: rgba(209, 185, 171, 0.14);
  --room-chip-border: rgba(209, 185, 171, 0.24);
  --room-chip-ink: #8e6a5c;
  --room-feature-bg: rgba(226, 209, 198, 0.14);
  --room-feature-border: rgba(226, 209, 198, 0.22);
  --room-feature-ink: #7b675f;
}

.room-card[data-room-theme="violeta"] {
  --room-media-bg:
    radial-gradient(circle at 50% 34%, rgba(208, 183, 255, 0.2), transparent 28%),
    linear-gradient(160deg, #191625 0%, #251d3b 52%, #15111f 100%);
  --room-chip-bg: rgba(202, 177, 244, 0.14);
  --room-chip-border: rgba(202, 177, 244, 0.24);
  --room-chip-ink: #7351ab;
  --room-feature-bg: rgba(202, 177, 244, 0.14);
  --room-feature-border: rgba(202, 177, 244, 0.24);
  --room-feature-ink: #68479d;
}

.room-card::before {
  content: "";
  position: absolute;
  inset: auto -15% -35% auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 220, 0.48), transparent 68%);
  pointer-events: none;
}

.room-card::after,
.feature-card::after,
.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 52%);
  pointer-events: none;
}

.room-media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 15rem;
  margin: -0.15rem -0.15rem 1.2rem;
  padding: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  background: var(--room-media-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.room-carousel,
.room-track {
  position: absolute;
  inset: 0;
}

.room-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    linear-gradient(0deg, rgba(28, 22, 25, 0.3), transparent 28%);
  opacity: 1;
  z-index: 1;
}

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

.room-media-placeholder {
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.room-media-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.55rem;
  width: min(100%, 15rem);
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 28px rgba(56, 34, 40, 0.1);
}

.room-media-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--accent-strong);
}

.room-media-text {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.room-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 520ms ease, transform 520ms ease;
}

.room-slide[data-active="true"] {
  opacity: 1;
  transform: scale(1);
}

.room-image {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 15rem;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-slide-label {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(32, 20, 25, 0.14);
}

.room-carousel-indicators {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.room-carousel-dot {
  appearance: none;
  border: 0;
  border-radius: 999px;
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 20, 24, 0.18);
  transition: transform 160ms ease, background 160ms ease, width 160ms ease;
}

.room-carousel-dot:hover {
  transform: translateY(-1px);
}

.room-carousel-dot[data-active="true"] {
  background: rgba(255, 255, 255, 0.92);
  width: 1.7rem;
}

.highlight-card h3,
.room-card h3,
.split-card h3,
.feature-card h3,
.step-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.9rem;
}

.room-subtitle,
.room-meta {
  color: var(--accent-strong);
}

.room-top {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.room-top .room-subtitle {
  margin: 0;
}

.room-subtitle {
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.room-ideal {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.55;
}

.room-description {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 1.1rem;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.room-meta span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--room-chip-bg);
  border: 1px solid var(--room-chip-border);
  color: var(--room-chip-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.room-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0;
}

.room-features li {
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  background: var(--room-feature-bg);
  border: 1px solid var(--room-feature-border);
  color: var(--room-feature-ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.room-card .button {
  margin-top: auto;
}

.feature-card,
.step-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.feature-card p,
.step-card p {
  position: relative;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.step-card {
  padding-top: 1.75rem;
}

.step-index {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  min-height: 2.2rem;
  margin-bottom: 1rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(185, 79, 106, 0.12);
  color: var(--accent-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.split-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.5rem;
}

.footer {
  padding: 1.2rem 0 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer p {
  margin: 0;
  text-align: center;
}

.footer-phones {
  justify-content: center;
}

.petals-layer,
.breeze-layer,
.petals-front {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.breeze-layer {
  opacity: 0.88;
  z-index: 1;
}

.petal {
  position: absolute;
  display: block;
  background-image: var(--petal-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 22px rgba(165, 94, 113, 0.16));
}

.petal-front {
  filter: saturate(1.12) brightness(1.02) drop-shadow(0 12px 26px rgba(165, 94, 113, 0.22));
}

.wind-trail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  mix-blend-mode: normal;
}

.wind-trail-dot {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border-radius: 999px;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(246, 252, 255, 0.96), rgba(224, 244, 255, 0.68));
  box-shadow:
    0 0 10px rgba(218, 238, 255, 0.3),
    0 0 24px rgba(194, 225, 255, 0.22);
  transition: opacity 160ms ease;
  transform-origin: center;
  filter: blur(0.35px);
}

@media (max-width: 920px) {
  .hero-grid,
  .split-card,
  .experience-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding-top: 1rem;
  }

  .brand {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .brand-block {
    width: 100%;
  }

  .brand-phones {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.9rem;
    margin-top: 0.3rem;
  }

  .topbar .button {
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    white-space: nowrap;
  }

  .hero-grid {
    gap: 1.75rem;
    padding: 2rem 0 3.75rem;
  }

  .hero-copy {
    max-width: 44rem;
  }

  .hero-card {
    width: min(100%, 36rem);
    max-width: 36rem;
    margin-inline: auto;
    padding: 1rem;
  }

  .hero-card-photo {
    min-height: clamp(16rem, 46vw, 20.5rem);
    padding: 0.85rem;
  }

  .hero-space-stack {
    min-height: 0;
    transform: none;
  }

  .hero-showcase {
    gap: 0.85rem;
  }

  .hero-showcase-main {
    border-radius: 1.3rem;
  }

  .hero-showcase-image {
    aspect-ratio: 1.24;
  }

  .hero-showcase-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.9rem 1rem 1rem;
  }

  .section {
    padding: 0.85rem 0 3.25rem;
  }

  .section-light {
    padding: 1.65rem;
    border-radius: 1.6rem;
  }

  .section-heading {
    margin-bottom: 1.6rem;
  }

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

  .room-card {
    padding: 1.25rem;
    border-radius: 1.4rem;
  }

  .room-media {
    min-height: 13.8rem;
  }
}

@media (max-width: 760px) {
  .brand-phones {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body::before,
  .page-glow,
  .petals-layer,
  .breeze-layer,
  .petals-front {
    display: none;
  }

  .topbar,
  .hero-grid,
  .section,
  .footer {
    width: min(calc(100% - 1.6rem), 100%);
  }

  .topbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 0.95rem;
    border-radius: 1.5rem;
    background: rgba(255, 251, 247, 0.92);
    border: 1px solid rgba(222, 194, 183, 0.42);
    box-shadow: 0 10px 22px rgba(120, 75, 86, 0.06);
    backdrop-filter: none;
  }

  .brand {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: flex-start;
    gap: 0.8rem;
  }

  .brand-block {
    width: 100%;
    gap: 0.45rem;
  }

  .brand-copy {
    width: 100%;
    min-width: 0;
    gap: 0.18rem;
  }

  .brand-copy strong {
    font-size: 1.28rem;
    line-height: 1;
  }

  .brand-copy small {
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .brand-phones {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    gap: 0.5rem;
    margin-top: 0.45rem;
  }

  .brand-phones a {
    width: 100%;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 0.94rem;
  }

  .topbar .button {
    width: 100%;
    align-self: stretch;
  }

  .hero-actions .button,
  .room-card .button {
    width: 100%;
  }

  .hero-grid {
    gap: 1.3rem;
    padding: 1.35rem 0 2.7rem;
  }

  .hero-copy {
    padding-inline: 0.1rem;
  }

  .eyebrow {
    font-size: 0.84rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.55rem);
    line-height: 1.04;
    padding-left: 0;
  }

  .hero-text,
  .section-text,
  .room-description,
  .split-card p,
  .footer p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .badge-list {
    gap: 0.55rem;
    margin-top: 1.2rem;
  }

  .badge-list li {
    width: 100%;
    text-align: center;
    padding: 0.72rem 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.35rem;
  }

  .button {
    min-height: 3.2rem;
    padding-inline: 1rem;
  }

  .hero-card,
  .section-light,
  .split-card,
  .room-card,
  .feature-card,
  .step-card {
    border-radius: 1.35rem;
    box-shadow: 0 10px 24px rgba(120, 75, 86, 0.07);
  }

  .hero-card {
    padding: 0.85rem;
  }

  .hero-card-photo {
    min-height: 14.2rem;
    padding: 0.75rem;
  }

  .hero-card-body {
    padding: 0.95rem 0.15rem 0.2rem;
  }

  .hero-space-stack {
    min-height: 0;
  }

  .hero-showcase {
    gap: 0.8rem;
  }

  .hero-showcase-main {
    border-radius: 1.15rem;
  }

  .hero-showcase-caption {
    padding: 0.85rem 0.95rem 1rem;
  }

  .hero-showcase-title {
    font-size: 1.18rem;
  }

  .hero-showcase-image {
    aspect-ratio: 1.14;
  }

  .hero-card h2,
  .section-heading h2,
  .room-card h3,
  .split-card h3,
  .feature-card h3,
  .step-card h3 {
    font-size: clamp(1.95rem, 8vw, 2.6rem);
    line-height: 0.98;
  }

  .section {
    padding: 0.55rem 0 2.25rem;
  }

  .section-light,
  .split-card,
  .feature-card,
  .step-card {
    padding: 1rem;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .room-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .room-card {
    padding: 1.05rem;
    content-visibility: auto;
    contain-intrinsic-size: 420px;
  }

  .room-media {
    min-height: 12rem;
    margin-bottom: 0.95rem;
  }

  .room-image {
    min-height: 12rem;
  }

  .room-slide-label {
    left: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.74rem;
  }

  .room-carousel-indicators {
    right: 0.75rem;
    bottom: 0.78rem;
  }

  .room-top {
    align-items: flex-start;
  }

  .room-meta {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .room-meta span {
    font-size: 0.88rem;
  }

  .split-card {
    gap: 0.8rem;
  }

  .step-card {
    padding-top: 1.2rem;
  }

  .footer {
    padding-bottom: 1.4rem;
  }
}

@media (max-width: 420px) {
  body {
    background:
      radial-gradient(circle at top left, var(--bg-blush-top-mobile), transparent 42%),
      radial-gradient(circle at 92% 12%, var(--bg-gold-top-mobile), transparent 34%),
      linear-gradient(180deg, #fff7f1 0%, #fffaf7 48%, #fffdfb 100%);
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 3rem;
    height: 3rem;
  }

  .topbar {
    padding: 0.82rem;
    border-radius: 1.25rem;
  }

  .brand-copy strong {
    font-size: 1.12rem;
    line-height: 1.05;
  }

  .brand-copy small {
    font-size: 0.88rem;
  }

  .brand-phones a {
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(1.9rem, 11.8vw, 2.85rem);
    line-height: 1.06;
    letter-spacing: -0.01em;
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .hero-card-photo {
    min-height: 12.2rem;
  }

  .hero-space-stack {
    min-height: 0;
  }

  .hero-showcase-image {
    aspect-ratio: 1.04;
  }

  .hero-showcase-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .hero-showcase-title {
    font-size: 1.04rem;
  }

  .badge-list li {
    padding: 0.7rem 0.8rem;
  }

  .room-media {
    min-height: 10.8rem;
  }

  .hero-card h2,
  .section-heading h2,
  .room-card h3,
  .split-card h3,
  .feature-card h3,
  .step-card h3 {
    font-size: clamp(1.65rem, 8.5vw, 2.1rem);
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
