:root {
  --canvas: #fff8ef;
  --paper: #fffdf8;
  --cream-deep: #f7eadb;
  --blush: #f2dccb;
  --sky: #c5dfe5;
  --wine: #5b1420;
  --wine-bright: #7b2634;
  --wine-dark: #2c1017;
  --ink: #241619;
  --muted: #695a59;
  --gold: #bd8b3c;
  --gold-deep: #7a4a08;
  --line: rgba(91, 20, 32, 0.16);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 28px 80px rgba(91, 20, 32, 0.13);
  --shadow-card: 0 20px 56px rgba(36, 22, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
a {
  touch-action: manipulation;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--wine);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--paper);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 13px clamp(22px, 4.5vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-solid {
  border-color: var(--line);
  background: rgba(255, 248, 239, 0.92);
  box-shadow: 0 8px 32px rgba(36, 22, 25, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 11px;
  width: fit-content;
  color: var(--wine);
}

.brand-mark {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-name {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 600;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-apply {
  justify-self: end;
  min-height: 44px;
  padding: 11px 21px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  background: var(--wine);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background-color 180ms ease;
}

.nav-apply:hover {
  background: var(--wine-bright);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: max(860px, 100svh);
  overflow: hidden;
  padding: 112px 5vw 0;
  background:
    radial-gradient(circle at 10% 28%, rgba(242, 220, 203, 0.9), transparent 27%),
    radial-gradient(circle at 88% 23%, rgba(197, 223, 229, 0.84), transparent 29%),
    linear-gradient(155deg, #fffdf8 0%, #fff6eb 47%, #eef2ec 100%);
}

.hero::after {
  position: absolute;
  right: -8%;
  bottom: -22%;
  left: -8%;
  height: 38%;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 253, 248, 0.47);
  content: "";
  filter: blur(4px);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  top: 17%;
  left: -8vw;
  width: 29vw;
  height: 29vw;
  animation: floatGlow 14s ease-in-out infinite alternate;
}

.hero-glow-two {
  top: 8%;
  right: -3vw;
  width: 20vw;
  height: 20vw;
  animation: floatGlow 11s ease-in-out 1s infinite alternate-reverse;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 17px;
  color: var(--gold-deep);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1100px;
  margin: 0 auto;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.4vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero-lede {
  max-width: 650px;
  margin: 25px auto 0;
  color: #4f3b3e;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.55;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn-primary {
  background: var(--wine);
  box-shadow: 0 14px 30px rgba(91, 20, 32, 0.2);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--wine-bright);
  box-shadow: 0 18px 40px rgba(91, 20, 32, 0.25);
  transform: translateY(-3px);
}

.micro {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(190px, 16vw, 226px);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 20px 24px;
  width: min(1160px, 88vw);
  height: clamp(320px, 33vw, 455px);
  margin: 34px auto 0;
}

.hero-photo-frame {
  position: relative;
  grid-column: 1;
  grid-row: 1 / 3;
  overflow: hidden;
  border: 8px solid rgba(255, 253, 248, 0.88);
  border-radius: 42px 42px 0 0;
  background: var(--sky);
  box-shadow: var(--shadow-soft);
}

.hero-room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  animation: photoDrift 16s ease-in-out infinite alternate;
}

.hero-app-card {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: auto;
  border: 9px solid #27191d;
  border-radius: 38px;
  box-shadow: 0 32px 65px rgba(36, 22, 25, 0.36);
  transform: rotate(1.8deg);
  animation: phoneFloat 7s ease-in-out infinite alternate;
}

.hero-status {
  position: relative;
  z-index: 4;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  width: 100%;
  min-height: 70px;
  padding: 18px 66px 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.2vw, 1.06rem);
  line-height: 1.35;
  backdrop-filter: blur(14px);
}

.hero-status > span {
  display: none;
  align-items: baseline;
  gap: 12px;
}

.hero-status > span.is-active {
  display: flex;
  animation: stateIn 500ms ease both;
}

.hero-status b {
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.hero-story-toggle {
  position: absolute;
  top: 50%;
  right: 11px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(91, 20, 32, 0.2);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.82);
  color: var(--wine);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.72rem;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
}

.hero-story-toggle[hidden] {
  display: none;
}

.proof-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-cell {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 13px;
  min-height: 98px;
  padding: 22px 28px;
  text-align: center;
}

.proof-cell + .proof-cell {
  border-left: 1px solid var(--line);
}

.proof-cell strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.proof-cell span {
  max-width: 150px;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
  text-align: left;
}

.section {
  scroll-margin-top: 100px;
  padding: clamp(88px, 10vw, 150px) clamp(22px, 6vw, 96px);
}

.product {
  background:
    linear-gradient(135deg, rgba(242, 220, 203, 0.5), transparent 32%),
    var(--canvas);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 76px;
  text-align: center;
}

.section-heading h2,
.rooms h2,
.final h2 {
  margin-bottom: 22px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.4vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading h2 em {
  color: var(--wine-bright);
  font-weight: 500;
}

.section-heading > p:last-child {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(520px, 1.17fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  max-width: 1260px;
  margin: 0 auto;
}

.product-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-step {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 22px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.product-step:last-child {
  border-bottom: 1px solid var(--line);
}

.product-step > span {
  padding-top: 4px;
  color: var(--gold-deep);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.product-step h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.product-step p {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.7;
}

.mode-demo {
  min-width: 0;
}

.mode-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.mode-picker > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mode-tabs {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 10px 30px rgba(91, 20, 32, 0.08);
}

.mode-tab {
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.mode-tab:hover {
  color: var(--wine);
}

.mode-tab.is-active {
  background: var(--wine);
  color: var(--canvas);
  box-shadow: 0 7px 20px rgba(91, 20, 32, 0.2);
}

.screen-deck {
  position: relative;
  min-height: 540px;
  border-radius: 48% 48% 38px 38px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.75), transparent 42%),
    linear-gradient(165deg, var(--sky), var(--blush));
}

.screen-card {
  position: absolute;
  z-index: 1;
  top: 14%;
  left: 17%;
  overflow: hidden;
  width: min(79%, 535px);
  margin: 0;
  border: 7px solid rgba(255, 253, 248, 0.96);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
  opacity: 0.76;
  pointer-events: none;
  transform: rotate(6deg) scale(0.96);
  transition: left 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.screen-card.is-active {
  z-index: 2;
  left: 4%;
  opacity: 1;
  transform: rotate(-4deg) scale(1);
}

.screen-card img {
  width: 100%;
  aspect-ratio: 1.515 / 1;
  object-fit: cover;
}

.screen-card figcaption {
  padding: 13px 17px;
  color: var(--wine);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mode-caption {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.rooms {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(54px, 7vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(123, 38, 52, 0.6), transparent 32%),
    var(--wine-dark);
  color: var(--canvas);
}

.rooms .eyebrow {
  color: #e3bd7a;
}

.rooms h2 {
  color: var(--canvas);
  font-size: clamp(2.9rem, 4.9vw, 5.2rem);
}

.rooms-intro > p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 248, 239, 0.72);
  font-size: 0.96rem;
}

.rooms blockquote {
  margin: 50px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 248, 239, 0.22);
}

.rooms blockquote > p {
  margin-bottom: 22px;
  color: var(--canvas);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.45;
}

.rooms blockquote footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.rooms blockquote img {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 248, 239, 0.65);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 19%;
}

.rooms blockquote span {
  display: grid;
  color: rgba(255, 248, 239, 0.58);
  font-size: 0.64rem;
  line-height: 1.5;
}

.rooms blockquote strong {
  color: var(--canvas);
  font-size: 0.7rem;
}

.room-gallery {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  grid-template-rows: repeat(2, 230px);
  gap: 14px;
  align-self: center;
}

.room-shot {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: #4b2730;
  color: var(--canvas);
  text-decoration: none;
}

.room-shot-main {
  grid-row: 1 / 3;
}

.room-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.room-shot-main img {
  object-position: 54% center;
}

.event-highlight-hamptons img {
  object-position: 50% 50%;
}

.room-shot:hover img {
  transform: scale(1.035);
}

.event-highlight::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 7, 12, 0.86) 100%);
  content: "";
  pointer-events: none;
}

.event-highlight:focus-visible {
  outline: 3px solid var(--canvas);
  outline-offset: 4px;
}

.event-highlight-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 24px;
}

.event-highlight-copy strong {
  max-width: 360px;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.08;
}

.event-kicker {
  width: fit-content;
  color: rgba(255, 248, 239, 0.78);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.event-highlight-meta {
  display: grid;
  justify-items: start;
  gap: 5px;
}

.event-date {
  color: rgba(255, 248, 239, 0.9);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.event-highlight-upcoming {
  box-shadow: inset 0 0 0 2px rgba(207, 167, 82, 0.72);
}

.event-highlight-upcoming .event-kicker {
  padding: 5px 7px;
  border-radius: 999px;
  background: var(--canvas);
  color: var(--wine);
}

.trust-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6px;
  border-top: 1px solid rgba(255, 248, 239, 0.2);
  border-bottom: 1px solid rgba(255, 248, 239, 0.2);
}

.trust-row span {
  padding: 20px 24px;
  color: rgba(255, 248, 239, 0.63);
  font-size: 0.69rem;
  text-align: center;
}

.trust-row span + span {
  border-left: 1px solid rgba(255, 248, 239, 0.2);
}

.trust-row b {
  color: var(--canvas);
}

.final {
  position: relative;
  display: grid;
  min-height: 76svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(100px, 13vw, 180px) 24px;
  background:
    radial-gradient(circle at 76% 28%, rgba(197, 223, 229, 0.9), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(242, 220, 203, 0.92), transparent 30%),
    var(--paper);
  scroll-margin-top: 100px;
}

.final-orbit {
  position: absolute;
  border: 1px solid rgba(91, 20, 32, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.final-orbit-one {
  top: -24vw;
  right: -14vw;
  width: 55vw;
  height: 55vw;
}

.final-orbit-two {
  bottom: -20vw;
  left: -12vw;
  width: 47vw;
  height: 47vw;
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 910px;
  text-align: center;
}

.final h2 {
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6.7vw, 7rem);
}

.final-inner > p:not(.eyebrow, .micro, .final-referral, .ghost-note) {
  max-width: 610px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1rem;
}

.final-referral {
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.link-share {
  min-height: 44px;
  padding: 7px 4px;
  border: 0;
  background: transparent;
  color: var(--wine);
  cursor: pointer;
  font-weight: 700;
}

.ghost-note {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.ghost-note a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 50px clamp(22px, 5vw, 76px) 96px;
  background: #1f0d12;
  color: var(--canvas);
}

.site-footer .brand {
  color: var(--canvas);
}

.site-footer > div > p {
  margin: 15px 0 0;
  color: rgba(255, 248, 239, 0.54);
  font-size: 0.71rem;
}

.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  flex-wrap: wrap;
}

.site-footer nav a {
  min-height: 44px;
  padding: 12px 0;
  color: rgba(255, 248, 239, 0.72);
  font-size: 0.67rem;
}

.sticky-apply {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: max(22px, env(safe-area-inset-bottom));
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(560px, calc(100% - 44px));
  margin-left: auto;
  padding: 10px 11px 10px 20px;
  border: 1px solid rgba(255, 248, 239, 0.2);
  border-radius: 999px;
  background: rgba(44, 16, 23, 0.94);
  box-shadow: 0 16px 45px rgba(36, 22, 25, 0.28);
  color: var(--canvas);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(16px);
}

.sticky-apply.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-copy {
  font-size: 0.71rem;
}

.sticky-apply a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--canvas);
  color: var(--wine);
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  max-width: calc(100% - 36px);
  margin-left: auto;
  padding: 12px 13px 12px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
  color: var(--muted);
  font-size: 0.68rem;
}

.cookie-banner[hidden] {
  display: none;
}

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

.cookie-banner button {
  min-height: 44px;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--wine);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
}

.reveal-ready .reveal {
  opacity: 1;
  transform: translateY(10px);
  transition: transform 340ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-ready .reveal[data-d="1"] {
  transition-delay: 70ms;
}

.reveal-ready .reveal[data-d="2"] {
  transition-delay: 140ms;
}

.reveal-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes photoDrift {
  from { transform: scale(1.045) translate3d(-0.8%, 0, 0); }
  to { transform: scale(1.075) translate3d(0.8%, -0.8%, 0); }
}

@keyframes phoneFloat {
  from { transform: translateY(0) rotate(1.8deg); }
  to { transform: translateY(-11px) rotate(0.7deg); }
}

@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(2.2vw, -1.5vw, 0) scale(1.05); }
}

@keyframes stateIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

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

  .nav-links {
    display: none;
  }

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

  .product-layout {
    max-width: 760px;
  }

  .screen-deck {
    min-height: 530px;
  }

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

  .room-gallery {
    grid-template-rows: repeat(2, 260px);
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand-mark {
    font-size: 1.8rem;
  }

  .brand-name {
    display: none;
  }

  .nav-apply {
    padding: 10px 18px;
  }

  .hero {
    min-height: 850px;
    padding: 84px 17px 0;
  }

  .hero::after {
    height: 28%;
  }

  .hero-glow-one {
    top: 22%;
    left: -32vw;
    width: 74vw;
    height: 74vw;
  }

  .hero-glow-two {
    top: 6%;
    right: -24vw;
    width: 61vw;
    height: 61vw;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(2.72rem, 12vw, 3.16rem);
    line-height: 0.94;
  }

  .hero-lede {
    max-width: 355px;
    margin-top: 17px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

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

  .btn {
    min-height: 50px;
    padding: 13px 23px;
  }

  .hero .micro {
    margin-top: 8px;
    font-size: 0.61rem;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1fr) 114px;
    grid-template-rows: 248px auto;
    gap: 12px;
    width: 100%;
    height: auto;
    margin-top: 22px;
  }

  .hero-photo-frame {
    grid-column: 1 / -1;
    grid-row: 1;
    border-width: 6px;
    border-radius: 30px 30px 0 0;
  }

  .hero-room-image {
    max-width: none;
    object-position: 50% 55%;
  }

  .hero-app-card {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    border-width: 6px;
    border-radius: 27px;
  }

  .hero-status {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    min-height: 64px;
    padding: 15px 57px 15px 17px;
    border-radius: 18px;
    font-size: 0.86rem;
  }

  .proof-cell {
    display: block;
    min-height: 90px;
    padding: 20px 8px 17px;
  }

  .proof-cell strong {
    display: block;
    margin-bottom: 7px;
    font-size: clamp(1rem, 4.6vw, 1.25rem);
    white-space: normal;
  }

  .proof-cell span {
    display: block;
    max-width: 100px;
    margin: 0 auto;
    font-size: 0.65rem;
    line-height: 1.3;
    text-align: center;
  }

  .section {
    scroll-margin-top: 84px;
    padding: 82px 20px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .section-heading h2,
  .rooms h2,
  .final h2 {
    font-size: clamp(2.55rem, 11.5vw, 3.3rem);
  }

  .section-heading > p:last-child {
    max-width: 310px;
    font-size: 0.9rem;
  }

  .product-layout {
    gap: 52px;
  }

  .mode-picker {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .mode-tabs {
    width: 100%;
  }

  .mode-tab {
    flex: 1;
    padding-right: 12px;
    padding-left: 12px;
  }

  .product-step {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 23px 0;
  }

  .product-step h3 {
    font-size: 1.35rem;
  }

  .product-step p {
    font-size: 0.8rem;
  }

  .screen-deck {
    min-height: 335px;
    margin: 0 -5px;
    border-radius: 48% 48% 28px 28px;
  }

  .screen-card {
    top: 8%;
    left: 17%;
    width: 82%;
    border-width: 5px;
    border-radius: 17px;
  }

  .screen-card.is-active {
    left: 1%;
  }

  .screen-card figcaption {
    padding: 10px 12px;
    font-size: 0.56rem;
  }

  .rooms {
    gap: 48px;
    padding-top: 88px;
    padding-bottom: 80px;
  }

  .rooms-intro > p:not(.eyebrow) {
    font-size: 0.86rem;
  }

  .rooms blockquote {
    margin-top: 34px;
  }

  .rooms blockquote > p {
    font-size: 1.1rem;
  }

  .room-gallery {
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: repeat(2, 130px);
    gap: 8px;
  }

  .room-shot {
    border-radius: 14px;
  }

  .event-highlight-copy {
    gap: 5px;
    padding: 12px;
  }

  .event-highlight-copy strong {
    font-size: 0.92rem;
  }

  .event-highlight:not(.room-shot-main) .event-highlight-copy strong {
    font-size: 0.82rem;
  }

  .event-kicker {
    font-size: 0.55rem;
    letter-spacing: 0.05em;
  }

  .event-highlight-upcoming .event-kicker {
    padding: 3px 5px;
  }

  .event-date {
    font-size: 0.5rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trust-row span {
    min-height: 50px;
    padding: 15px 10px;
  }

  .trust-row span + span {
    border-top: 1px solid rgba(255, 248, 239, 0.2);
    border-left: 0;
  }

  .final {
    min-height: 720px;
    padding: 100px 20px 110px;
    scroll-margin-top: 84px;
  }

  .final h2 {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }

  .final-inner > p:not(.eyebrow, .micro, .final-referral, .ghost-note) {
    max-width: 340px;
    font-size: 0.88rem;
  }

  .final-referral {
    max-width: 290px;
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 44px 20px 110px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
    justify-content: start;
  }

  .sticky-apply {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    width: calc(100% - 20px);
    padding: 8px 8px 8px 15px;
  }

  .sticky-copy {
    display: none;
  }

  .sticky-apply a {
    justify-content: center;
    width: 100%;
  }

  .cookie-banner {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    max-width: calc(100% - 20px);
    padding-left: 13px;
  }
}

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

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

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