@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/onest-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-bg: #fff8f6;
  --color-bg-soft: #fcedec;
  --color-surface: #fffdfc;
  --color-text: #211a1c;
  --color-text-secondary: #746368;
  --color-pink: #e87898;
  --color-pink-deep: #d66889;
  --color-coral: #e9957c;
  --color-rose-soft: #f5cdd6;
  --color-peach-soft: #f8d7c9;
  --color-border: rgba(33, 26, 28, 0.12);
  --color-border-strong: rgba(33, 26, 28, 0.22);
  --color-dark: #281e21;
  --gradient-brand: linear-gradient(135deg, #d96f91 0%, #e77f99 42%, #ee9a7e 100%);
  --shadow-soft: 0 24px 70px rgba(91, 48, 62, 0.12);
  --shadow-card: 0 16px 40px rgba(88, 51, 63, 0.09);
  --container: 1240px;
  --page-gutter: clamp(20px, 4vw, 60px);
  --section-space: clamp(84px, 10vw, 144px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: "Onest", "Manrope", Inter, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--color-text);
  background: var(--color-rose-soft);
}

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

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

button,
input {
  color: inherit;
  font: inherit;
}

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

button {
  border: 0;
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

h1,
h2,
h3 {
  font-weight: 780;
  letter-spacing: -0.045em;
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--color-surface);
  background: var(--color-text);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(214, 104, 137, 0.56);
  outline-offset: 4px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--color-pink-deep);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
}

.eyebrow--light {
  color: #f3a8bb;
}

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

.section-heading--wide {
  max-width: 850px;
}

.section-heading h2,
.safety__head h2,
.living__copy h2,
.visa__copy h2,
.guests__copy h2,
.freedom__head h2,
.application__copy h2 {
  max-width: 860px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.99;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin-top: 26px;
  color: var(--color-text-secondary);
  font-size: 19px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease),
    background-position 350ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--large {
  min-height: 66px;
  padding-inline: 30px 24px;
}

.button--primary {
  color: #fffaf8;
  background: var(--gradient-brand);
  background-size: 150% 150%;
  box-shadow: 0 16px 34px rgba(214, 104, 137, 0.26);
}

.button--primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 20px 42px rgba(214, 104, 137, 0.32);
}

.button--dark {
  min-width: 190px;
  padding-inline: 24px;
  color: #fffaf8;
  background: var(--color-text);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding-block: 16px;
  transition:
    padding 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: transparent;
  content: "";
  transition: background-color 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(255, 248, 246, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  background: var(--color-border);
}

.site-header__inner {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand__mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  color: var(--color-pink-deep);
  font-size: 17px;
  transition: transform 240ms var(--ease);
}

.brand:hover .brand__mark {
  transform: rotate(-10deg) scale(1.04);
}

.brand__text i {
  margin-inline: 4px;
  color: var(--color-pink-deep);
  font-style: normal;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 560;
}

.desktop-nav a,
.site-footer a {
  position: relative;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--color-pink-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  padding: 0 18px 0 21px;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.header-cta:hover {
  border-color: var(--color-text);
  background: rgba(255, 255, 255, 0.5);
}

.header-cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: min(930px, 100svh);
  align-items: center;
  overflow: hidden;
  padding: 72px 0 88px;
  background:
    linear-gradient(rgba(33, 26, 28, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 26, 28, 0.028) 1px, transparent 1px),
    var(--color-bg);
  background-size: 52px 52px, 52px 52px, auto;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
  content: "";
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.hero__title {
  max-width: 860px;
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.91;
}

.hero__title > span {
  display: block;
  margin-top: 0.1em;
  font-size: 0.7em;
  letter-spacing: -0.055em;
}

.hero__title strong {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-top: 0.12em;
  color: var(--color-pink-deep);
  background: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title sup {
  display: inline-block;
  margin-left: 0.18em;
  font-size: 0.24em;
  font-weight: 700;
  letter-spacing: -0.02em;
  vertical-align: 1.45em;
  -webkit-text-fill-color: var(--color-pink-deep);
}

.hero__lead {
  max-width: 700px;
  margin-top: 34px;
  color: var(--color-text-secondary);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__benefits li {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding-inline: 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 253, 252, 0.66);
  font-size: 14px;
  font-weight: 620;
}

.hero__benefits li::before {
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--color-pink);
  content: "";
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.hero__actions > p {
  display: flex;
  max-width: 180px;
  align-items: center;
  gap: 8px;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.35;
}

.hero__actions > p span {
  color: var(--color-pink-deep);
  font-size: 20px;
}

.hero__visual {
  position: relative;
  min-height: 520px;
}

.income-card {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: 12px;
  width: min(100%, 430px);
  min-height: 385px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 34px;
  color: #fffaf8;
  background: var(--gradient-brand);
  box-shadow: 0 36px 90px rgba(165, 73, 103, 0.25);
  transform: rotate(-2.5deg);
  transition: transform 700ms var(--ease);
}

.hero__visual:hover .income-card {
  transform: rotate(-1deg) translateY(-5px);
}

.income-card::before {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(255, 255, 255, 0.52);
  content: "♡";
  font-size: 44px;
  line-height: 1;
}

.income-card__label {
  color: rgba(255, 250, 248, 0.76);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.income-card__value {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  font-size: clamp(46px, 4vw, 66px);
  font-weight: 790;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.income-card__value i {
  margin-block: 7px;
  font-size: 0.6em;
  font-style: normal;
  opacity: 0.58;
}

.income-card__period {
  margin-top: 15px;
  color: rgba(255, 250, 248, 0.78);
  font-size: 15px;
}

.income-card__line {
  position: relative;
  height: 4px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.26);
}

.income-card__line span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: #fffaf8;
}

.income-card__footer {
  display: grid;
  align-items: end;
  gap: 4px 12px;
  margin-top: 18px;
  grid-template-columns: auto 1fr;
}

.income-card__footer span {
  color: rgba(255, 250, 248, 0.68);
  font-size: 12px;
}

.income-card__footer span:last-child {
  grid-column: 2;
}

.income-card__footer strong {
  font-size: 20px;
  letter-spacing: -0.035em;
}

.hero-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: rgba(255, 253, 252, 0.88);
  box-shadow: var(--shadow-card);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-note--demand {
  bottom: 26px;
  left: -22px;
  padding: 18px 21px;
  transform: rotate(2deg);
}

.hero-note__number {
  color: var(--color-pink-deep);
  font-size: 28px;
  font-weight: 780;
  letter-spacing: -0.05em;
}

.hero-note--demand > span:last-child,
.hero-note--price > span {
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.35;
}

.hero-note--price {
  top: 4px;
  left: -18px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 15px 18px;
  transform: rotate(-4deg);
}

.hero-note--price strong {
  font-size: 24px;
  letter-spacing: -0.05em;
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 104, 137, 0.22);
  border-radius: 50%;
  color: var(--color-pink-deep);
}

.hero-orbit--one {
  top: -30px;
  right: -95px;
  width: 210px;
  height: 210px;
  font-size: 64px;
  animation: float-heart 6s ease-in-out infinite;
}

.hero-orbit--two {
  right: -10px;
  bottom: -10px;
  width: 150px;
  height: 150px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  animation: float-heart 7s 1s ease-in-out infinite reverse;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero__glow--one {
  top: 12%;
  right: 8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(238, 145, 164, 0.35) 0%, rgba(255, 248, 246, 0) 68%);
}

.hero__glow--two {
  bottom: 0;
  left: 2%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(248, 190, 165, 0.25), transparent 68%);
}

.hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: 30px;
  left: var(--page-gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-secondary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll i {
  position: relative;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: var(--color-border-strong);
}

.hero__scroll i::after {
  position: absolute;
  width: 18px;
  height: 1px;
  background: var(--color-pink-deep);
  content: "";
  animation: scroll-line 2.5s ease-in-out infinite;
}

@keyframes float-heart {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(4deg);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }
  65%,
  100% {
    transform: translateX(240%);
  }
}

/* Marquee */
.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
  color: #fffaf8;
  background: var(--color-text);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 24px;
  padding: 18px 12px;
  font-size: 15px;
  font-weight: 640;
  white-space: nowrap;
}

.ticker__group i {
  color: #ef9eb3;
  font-size: 20px;
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* Fit */
.fit {
  background: var(--color-bg);
}

.fit__grid {
  display: grid;
  align-items: start;
  gap: clamp(60px, 8vw, 130px);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.section-heading--sticky {
  position: sticky;
  top: 132px;
}

.numbered-list {
  border-top: 1px solid var(--color-border-strong);
}

.numbered-list li {
  display: grid;
  min-height: 170px;
  align-items: start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
  grid-template-columns: 70px 1fr;
}

.numbered-list__number {
  color: var(--color-pink-deep);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.numbered-list h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.08;
}

.numbered-list p {
  max-width: 520px;
  color: var(--color-text-secondary);
  font-size: 16px;
}

/* Income */
.income {
  overflow: hidden;
  background: var(--color-bg-soft);
}

.income::before {
  position: absolute;
  top: 7%;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(214, 104, 137, 0.14);
  border-radius: 50%;
  content: "";
}

.income__intro {
  display: grid;
  align-items: end;
  gap: 50px;
  grid-template-columns: 1fr 330px;
}

.income__intro-note {
  padding-left: 22px;
  border-left: 2px solid var(--color-pink);
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.55;
}

.metric-grid {
  display: grid;
  gap: 18px;
  margin-top: 62px;
  grid-template-columns: 1fr 1fr;
}

.metric-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 30px;
  background: var(--color-surface);
}

.metric-card > p:first-child {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 650;
}

.metric-card--primary {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  color: #fffaf8;
  background: var(--gradient-brand);
  box-shadow: 0 24px 64px rgba(172, 77, 106, 0.19);
}

.metric-card--primary > p:first-child {
  color: rgba(255, 250, 248, 0.78);
}

.metric-card--primary strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.18em;
  margin-top: auto;
  font-size: clamp(48px, 5.2vw, 78px);
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.metric-card--primary strong span {
  white-space: nowrap;
}

.metric-card--primary strong i {
  font-size: 0.54em;
  font-style: normal;
  opacity: 0.6;
}

.metric-card__spark {
  display: flex;
  height: 60px;
  align-items: end;
  gap: 7px;
  margin-top: 32px;
}

.metric-card__spark span {
  width: 100%;
  border-radius: 5px 5px 2px 2px;
  background: rgba(255, 255, 255, 0.35);
}

.metric-card__spark span:nth-child(1) {
  height: 22%;
}
.metric-card__spark span:nth-child(2) {
  height: 40%;
}
.metric-card__spark span:nth-child(3) {
  height: 36%;
}
.metric-card__spark span:nth-child(4) {
  height: 58%;
}
.metric-card__spark span:nth-child(5) {
  height: 74%;
}
.metric-card__spark span:nth-child(6) {
  height: 100%;
  background: #fffaf8;
}

.metric-card--month {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  border-color: rgba(33, 26, 28, 0.08);
  background: var(--color-peach-soft);
}

.metric-card--month strong {
  margin-top: auto;
  font-size: clamp(37px, 3.6vw, 54px);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.metric-card__mark {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(214, 104, 137, 0.45);
  font-size: 42px;
}

.metric-card--quote {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  background: rgba(255, 253, 252, 0.82);
}

.quote-mark {
  color: var(--color-pink);
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.7;
}

.metric-card--quote > p:nth-child(2) {
  margin-top: auto;
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.metric-card--quote > span:last-child {
  margin-top: 20px;
  color: var(--color-text-secondary);
  font-size: 12px;
}

.stories {
  margin-top: 92px;
}

.stories__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.stories__header h3 {
  max-width: 670px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.02;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms var(--ease);
}

.slider-button:hover {
  color: var(--color-surface);
  background: var(--color-text);
  transform: translateY(-2px);
}

.slider-button svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.stories__viewport {
  display: grid;
  overflow-x: auto;
  gap: 18px;
  margin-top: 38px;
  padding: 4px 2px 20px;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-auto-flow: column;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.stories__viewport::-webkit-scrollbar {
  display: none;
}

.story-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: var(--color-surface);
  scroll-snap-align: start;
}

.story-card--peach {
  background: #fff4ef;
}

.story-card--rose {
  background: #f8e2e6;
}

.story-card__avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fffaf8;
  background: var(--gradient-brand);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.story-card .quote-mark {
  position: absolute;
  top: 32px;
  right: 30px;
}

.story-card blockquote {
  margin-top: auto;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 680;
  letter-spacing: -0.04em;
  line-height: 1.17;
}

.story-card > p {
  margin-top: 22px;
  color: var(--color-text-secondary);
  font-size: 12px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.slider-dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: rgba(33, 26, 28, 0.18);
  content: "";
  transform: translate(-50%, -50%);
  transition:
    width 200ms var(--ease),
    background-color 200ms ease;
}

.slider-dots button.is-active::before {
  width: 40px;
  background: var(--color-pink-deep);
}

/* London */
.london {
  min-height: 800px;
  overflow: hidden;
  color: #fffaf8;
  background: var(--color-dark);
}

.london::before {
  position: absolute;
  top: -240px;
  left: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(245, 205, 214, 0.14);
  border-radius: 50%;
  content: "";
}

.london__word {
  position: absolute;
  right: -0.05em;
  bottom: -0.25em;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(180px, 26vw, 440px);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
  white-space: nowrap;
}

.london__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.london__title h2 {
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.9;
}

.london__title h2 em {
  color: #ed91aa;
  font-family: Georgia, serif;
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.london__facts {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.london__facts article {
  display: grid;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: minmax(160px, 0.65fr) 1.35fr;
}

.london__facts strong {
  color: #f4b0bd;
  font-size: clamp(25px, 2.4vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.london__facts p {
  color: rgba(255, 250, 248, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

/* Support */
.support {
  background: var(--color-bg);
}

.support__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.benefit-grid {
  display: grid;
  gap: 18px;
  margin-top: 60px;
  grid-template-columns: 1.15fr 0.85fr;
}

.benefit-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  background: var(--color-surface);
}

.benefit-card__number {
  display: block;
  margin-bottom: 60px;
  color: var(--color-pink-deep);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.benefit-card h3 {
  max-width: 560px;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.05;
}

.benefit-card p {
  max-width: 570px;
  margin-top: 16px;
  color: var(--color-text-secondary);
  font-size: 16px;
}

.benefit-card--large {
  min-height: 430px;
  padding-right: 45%;
  background: var(--color-peach-soft);
  grid-row: span 2;
}

.benefit-card__icon {
  position: absolute;
  top: 82px;
  right: 35px;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border: 1px solid rgba(214, 104, 137, 0.22);
  border-radius: 50%;
  color: var(--color-pink-deep);
  background: rgba(255, 253, 252, 0.35);
}

.benefit-card__icon svg {
  width: 76px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.benefit-card--accent {
  color: #fffaf8;
  background: var(--gradient-brand);
}

.benefit-card--accent p,
.benefit-card--accent .benefit-card__number {
  color: rgba(255, 250, 248, 0.76);
}

.benefit-card__heart {
  position: absolute;
  top: 18px;
  right: 28px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 64px;
}

.benefit-card--wide {
  display: flex;
  min-height: 180px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  grid-column: 1 / -1;
}

.benefit-card--wide .benefit-card__number {
  margin: 0;
}

.benefit-card--wide > div {
  flex: 1;
}

/* Living */
.living {
  overflow: hidden;
  background: #fff2ee;
}

.living__grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.living__visual {
  position: relative;
  min-height: 620px;
}

.room-shape {
  position: absolute;
  inset: 0 30px 20px 0;
  overflow: hidden;
  border: 1px solid rgba(33, 26, 28, 0.08);
  border-radius: 220px 220px 32px 32px;
  background: linear-gradient(160deg, #f4c4c9, #eb9e91 72%, #dc7d8f);
  box-shadow: var(--shadow-soft);
}

.room-shape::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  background:
    linear-gradient(150deg, transparent 49%, rgba(255, 255, 255, 0.18) 50%, transparent 51%) 0 0 / 90px 90px,
    #f4dacd;
  content: "";
}

.room-shape__sun {
  position: absolute;
  top: 72px;
  right: 70px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 242, 225, 0.78);
  box-shadow: 0 0 70px rgba(255, 242, 225, 0.72);
}

.room-shape__window {
  position: absolute;
  top: 90px;
  left: 55px;
  width: 190px;
  height: 245px;
  border: 13px solid rgba(255, 248, 246, 0.66);
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 248, 246, 0.56) 49%, rgba(255, 248, 246, 0.56) 53%, transparent 54%),
    linear-gradient(transparent 48%, rgba(255, 248, 246, 0.56) 49%, rgba(255, 248, 246, 0.56) 53%, transparent 54%),
    rgba(99, 66, 77, 0.12);
}

.room-shape__sofa {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 105px;
  width: 300px;
  height: 135px;
  border: 1px solid rgba(33, 26, 28, 0.1);
  border-radius: 42px 42px 18px 18px;
  background: #fff4ef;
  box-shadow: 0 22px 35px rgba(69, 37, 45, 0.12);
}

.room-shape__sofa::before,
.room-shape__sofa::after {
  position: absolute;
  top: 19px;
  width: 112px;
  height: 74px;
  border: 1px solid rgba(33, 26, 28, 0.08);
  border-radius: 18px;
  background: #f6d5cf;
  content: "";
}

.room-shape__sofa::before {
  left: 25px;
}

.room-shape__sofa::after {
  right: 25px;
  background: #efc1c8;
}

.room-shape__table {
  position: absolute;
  z-index: 3;
  bottom: 66px;
  left: 74px;
  width: 118px;
  height: 58px;
  border-radius: 50%;
  background: #c66f7e;
  box-shadow: 0 16px 0 -5px #834856;
}

.room-shape__plant {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 122px;
  width: 68px;
  height: 145px;
  border-bottom: 62px solid #9f5f5f;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}

.room-shape__plant::before {
  position: absolute;
  top: -15px;
  left: 7px;
  width: 14px;
  height: 95px;
  border-radius: 100%;
  background: #7c7370;
  box-shadow:
    -20px 15px 0 2px #8a7e74,
    20px 7px 0 2px #6f716b;
  content: "";
  transform-origin: bottom;
}

.living__stamp {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text);
  background: rgba(255, 253, 252, 0.88);
  box-shadow: var(--shadow-card);
  text-align: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.living__stamp span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.living__stamp strong {
  color: var(--color-pink-deep);
  font-size: 31px;
  line-height: 0.6;
}

.living__lead {
  max-width: 610px;
  margin-top: 24px;
  color: var(--color-text-secondary);
  font-size: 20px;
}

.living__details {
  margin-top: 42px;
  border-top: 1px solid var(--color-border-strong);
}

.living__details > div {
  display: grid;
  gap: 24px;
  padding-block: 19px;
  border-bottom: 1px solid var(--color-border);
  grid-template-columns: 150px 1fr;
}

.living__details dt {
  color: var(--color-text-secondary);
  font-size: 13px;
}

.living__details dd {
  font-size: 16px;
  font-weight: 620;
}

.living__details dd strong {
  font-size: 23px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.living__result {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(214, 104, 137, 0.2);
  border-radius: 22px;
  background: rgba(255, 253, 252, 0.64);
  font-size: 15px;
  line-height: 1.55;
}

/* Visa */
.visa {
  background: var(--color-bg);
}

.visa__inner {
  display: grid;
  gap: 74px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.visa__copy > p:last-child {
  max-width: 600px;
  margin-top: 28px;
  color: var(--color-text-secondary);
  font-size: 18px;
}

.visa__metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.visa__metrics article {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: var(--color-surface);
}

.visa__metrics article:first-child {
  background: var(--color-bg-soft);
  grid-row: span 2;
}

.visa__metrics span,
.visa__metrics small {
  color: var(--color-text-secondary);
  font-size: 13px;
}

.visa__metrics strong {
  font-size: clamp(50px, 5vw, 76px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.visa__metrics article:first-child strong {
  margin-block: auto;
  font-size: clamp(74px, 7vw, 110px);
}

.visa__metric-accent {
  color: #fffaf8;
  background: var(--gradient-brand) !important;
}

.visa__metric-accent span,
.visa__metric-accent small {
  color: rgba(255, 250, 248, 0.76);
}

/* Safety */
.safety {
  background: #f7e9e5;
}

.safety__head {
  max-width: 780px;
}

.safety__head > p:last-child {
  max-width: 620px;
  margin-top: 24px;
  color: var(--color-text-secondary);
}

.safety__layout {
  display: grid;
  align-items: start;
  gap: 42px;
  margin-top: 64px;
  grid-template-columns: 0.82fr 1.18fr;
}

.safety__primary {
  position: sticky;
  top: 124px;
  display: flex;
  min-height: 450px;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  border-radius: 32px;
  color: #fffaf8;
  background: var(--color-text);
}

.safety-shield {
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #f1a1b5;
}

.safety-shield svg {
  width: 67px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.safety__primary h3 {
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1;
}

.safety__primary p {
  margin-top: 18px;
  color: rgba(255, 250, 248, 0.64);
  font-size: 15px;
}

.safety-list {
  border-top: 1px solid var(--color-border-strong);
}

.safety-list li {
  display: grid;
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--color-border);
  grid-template-columns: 56px 1fr;
}

.safety-list__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(214, 104, 137, 0.35);
  border-radius: 50%;
  color: var(--color-pink-deep);
  font-size: 11px;
  font-weight: 760;
}

.safety-list h3 {
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
}

.safety-list p {
  max-width: 630px;
  margin-top: 12px;
  color: var(--color-text-secondary);
  font-size: 15px;
}

/* Guests */
.guests {
  overflow: hidden;
  background: var(--color-bg);
}

.guests::after {
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 145, 164, 0.2), transparent 68%);
  content: "";
}

.guests__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
  grid-template-columns: 0.9fr 1.1fr;
}

.guests__copy > p:last-child {
  max-width: 610px;
  margin-top: 28px;
  color: var(--color-text-secondary);
  font-size: 18px;
}

.price-comparison {
  position: relative;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 34px;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-soft);
}

.price-comparison__row {
  display: grid;
  align-items: end;
  gap: 6px 12px;
  padding: 28px;
  border-radius: 24px;
  grid-template-columns: 1fr auto;
}

.price-comparison__row > span {
  align-self: start;
  color: var(--color-text-secondary);
  font-size: 13px;
  grid-column: 1 / -1;
}

.price-comparison__row strong {
  font-size: clamp(46px, 4.5vw, 66px);
  letter-spacing: -0.07em;
  line-height: 0.9;
  white-space: nowrap;
}

.price-comparison__row small {
  color: inherit;
  font-size: 12px;
}

.price-comparison__row--muted {
  color: var(--color-text-secondary);
  background: rgba(255, 253, 252, 0.64);
}

.price-comparison__row--accent {
  color: #fffaf8;
  background: var(--gradient-brand);
}

.price-comparison__row--accent > span {
  color: rgba(255, 250, 248, 0.74);
}

.price-comparison__arrow {
  position: relative;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  margin: -12px auto;
  place-items: center;
  border: 5px solid var(--color-bg-soft);
  border-radius: 50%;
  color: var(--color-pink-deep);
  background: var(--color-surface);
}

.price-comparison__arrow svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.price-comparison > p {
  padding: 24px 12px 4px;
  color: var(--color-text-secondary);
  font-size: 14px;
  text-align: center;
}

/* Freedom */
.freedom {
  color: #fffaf8;
  background: var(--color-text);
}

.freedom__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.freedom__cards {
  display: grid;
  gap: 1px;
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(3, 1fr);
}

.freedom__cards article {
  min-height: 360px;
  padding: 34px;
  background: #2c2225;
  transition: background-color 240ms ease;
}

.freedom__cards article:hover {
  background: #33272b;
}

.freedom__cards article > span {
  color: #ef9eb3;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.freedom__cards h3 {
  max-width: 310px;
  margin-top: 130px;
  font-size: clamp(26px, 2.4vw, 35px);
  line-height: 1.05;
}

.freedom__cards p {
  max-width: 330px;
  margin-top: 18px;
  color: rgba(255, 250, 248, 0.58);
  font-size: 15px;
}

/* FAQ */
.faq {
  background: var(--color-bg);
}

.faq__grid {
  display: grid;
  align-items: start;
  gap: clamp(70px, 9vw, 140px);
  grid-template-columns: 0.78fr 1.22fr;
}

.faq__heading {
  position: sticky;
  top: 130px;
}

.accordion {
  border-top: 1px solid var(--color-border-strong);
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__item h3 {
  margin: 0;
}

.accordion__item button {
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 2px;
  background: transparent;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.accordion__item button i {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 300ms var(--ease);
}

.accordion__item button i::before,
.accordion__item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease);
}

.accordion__item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item button[aria-expanded="true"] i {
  color: #fffaf8;
  background: var(--color-pink-deep);
  transform: rotate(180deg);
}

.accordion__item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__answer {
  display: grid;
  max-height: none;
  opacity: 1;
}

.js .accordion__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 320ms var(--ease),
    opacity 220ms ease;
}

.js .accordion__answer.is-open {
  max-height: 380px;
  opacity: 1;
}

.accordion__answer > div {
  padding: 0 70px 30px 2px;
}

.accordion__answer p {
  max-width: 610px;
  color: var(--color-text-secondary);
  font-size: 16px;
}

/* Application */
.application {
  overflow: hidden;
  color: #fffaf8;
  background: var(--color-dark);
}

.application::before {
  position: absolute;
  top: -100px;
  left: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "♡";
  color: rgba(255, 255, 255, 0.05);
  font-size: 210px;
  line-height: 420px;
  text-align: center;
}

.application__glow {
  position: absolute;
  right: 2%;
  bottom: -300px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 127, 153, 0.3), transparent 68%);
  pointer-events: none;
}

.application__grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: 1fr minmax(430px, 0.82fr);
}

.application__copy > p:nth-of-type(2) {
  max-width: 630px;
  margin-top: 28px;
  color: rgba(255, 250, 248, 0.66);
  font-size: 18px;
}

.application__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.application__summary li {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding-inline: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 250, 248, 0.78);
  font-size: 13px;
}

.application__summary li span {
  color: #f0a4b7;
}

.form-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 32px;
  color: var(--color-text);
  background: var(--color-surface);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.22);
}

.form-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-card__top span:last-child {
  color: var(--color-pink-deep);
  font-size: 23px;
}

.application-form {
  padding: 30px;
}

.form-field + .form-field {
  margin-top: 20px;
}

.form-field label {
  display: block;
  margin: 0 0 8px 4px;
  font-size: 13px;
  font-weight: 680;
}

.form-field input {
  width: 100%;
  height: 60px;
  padding: 0 18px;
  border: 1px solid var(--color-border-strong);
  border-radius: 17px;
  outline: none;
  background: #fffaf8;
  font-size: 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.form-field input::placeholder {
  color: #a79599;
}

.form-field input:hover {
  border-color: rgba(33, 26, 28, 0.36);
}

.form-field input:focus {
  border-color: var(--color-pink-deep);
  box-shadow: 0 0 0 4px rgba(214, 104, 137, 0.12);
  background: #fff;
}

.form-field.is-error input {
  border-color: #b74452;
  box-shadow: 0 0 0 4px rgba(183, 68, 82, 0.1);
}

.form-field__hint,
.form-field__error {
  margin: 7px 4px 0;
  font-size: 11px;
  line-height: 1.45;
}

.form-field__hint {
  color: var(--color-text-secondary);
}

.form-field__error {
  min-height: 0;
  color: #a92e3d;
}

.form-field__error:not(:empty) {
  min-height: 16px;
}

.form-consent {
  margin-top: 22px;
}

.form-consent label {
  display: grid;
  align-items: start;
  gap: 11px;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
  grid-template-columns: 22px 1fr;
}

.form-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-consent__box {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 7px;
  background: #fffaf8;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.form-consent__box svg {
  width: 14px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 150ms ease,
    transform 180ms var(--ease);
}

.form-consent input:checked + .form-consent__box {
  border-color: var(--color-pink-deep);
  background: var(--color-pink-deep);
}

.form-consent input:checked + .form-consent__box svg {
  opacity: 1;
  transform: scale(1);
}

.form-consent input:focus-visible + .form-consent__box {
  box-shadow: 0 0 0 4px rgba(214, 104, 137, 0.16);
}

.form-consent.is-error .form-consent__box {
  border-color: #b74452;
}

.button--form {
  width: 100%;
  min-height: 64px;
  margin-top: 26px;
  padding-inline: 25px;
  color: #fffaf8;
  background: var(--gradient-brand);
  box-shadow: 0 15px 34px rgba(214, 104, 137, 0.24);
}

.button--form:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.button__spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 750ms linear infinite;
}

.button--form.is-loading .button__spinner {
  display: block;
}

.button--form.is-loading .button__arrow {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
}

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

.form-status.is-success {
  color: #365b45;
  background: #e8f4ec;
}

.form-status.is-error {
  color: #8e2936;
  background: #fbe8ea;
}

.form-card__note {
  margin-top: 14px;
  color: var(--color-text-secondary);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

/* Footer and mobile CTA */
.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 250, 248, 0.65);
  background: var(--color-dark);
}

.site-footer__inner {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
}

.brand--footer {
  color: #fffaf8;
}

.brand--footer .brand__mark {
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer__inner > a:last-child {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
}

.mobile-cta {
  display: none;
}

.noscript {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 18px;
  border: 1px solid var(--color-border-strong);
  border-radius: 16px;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  font-size: 13px;
}

/* Tablet */
@media (max-width: 1100px) {
  :root {
    --page-gutter: clamp(22px, 4vw, 42px);
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero__inner {
    gap: 42px;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  }

  .hero__title {
    font-size: clamp(58px, 7.7vw, 78px);
  }

  .income-card {
    padding: 32px;
  }

  .metric-grid {
    grid-template-columns: 1.35fr 0.85fr;
  }

  .metric-card--quote {
    min-height: 240px;
    grid-column: 1 / -1;
  }

  .stories__viewport {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .living__visual {
    min-height: 520px;
  }

  .room-shape__window {
    left: 36px;
    width: 150px;
  }

  .room-shape__sofa {
    right: 30px;
    width: 250px;
  }

  .visa__inner {
    gap: 50px;
  }

  .application__grid {
    gap: 60px;
    grid-template-columns: 1fr minmax(390px, 0.9fr);
  }
}

@media (max-width: 900px) {
  body {
    font-size: 17px;
  }

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

  .hero__title {
    max-width: 720px;
    font-size: clamp(58px, 10vw, 82px);
  }

  .hero__lead {
    max-width: 620px;
  }

  .hero__visual {
    width: min(100%, 570px);
    min-height: 500px;
    margin: 0 auto;
  }

  .income-card {
    right: 50%;
    width: 430px;
    transform: translateX(50%) rotate(-2deg);
  }

  .hero__visual:hover .income-card {
    transform: translateX(50%) rotate(-1deg) translateY(-5px);
  }

  .hero-note--demand {
    left: 0;
  }

  .hero-note--price {
    left: 14px;
  }

  .fit__grid,
  .london__inner,
  .living__grid,
  .visa__inner,
  .safety__layout,
  .guests__grid,
  .faq__grid,
  .application__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--sticky,
  .faq__heading,
  .safety__primary {
    position: relative;
    top: auto;
  }

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

  .income__intro-note {
    max-width: 560px;
  }

  .london {
    min-height: auto;
  }

  .london__inner {
    gap: 60px;
  }

  .london__facts article {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .benefit-card--large {
    padding-right: 38%;
  }

  .living__visual {
    width: min(100%, 650px);
    min-height: 610px;
    margin-inline: auto;
  }

  .room-shape__window {
    left: 60px;
    width: 190px;
  }

  .room-shape__sofa {
    right: 48px;
    width: 300px;
  }

  .visa__metrics {
    max-width: 650px;
  }

  .safety__primary {
    min-height: 370px;
  }

  .price-comparison {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .application__copy {
    max-width: 700px;
  }

  .form-card {
    width: min(100%, 620px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --page-gutter: clamp(18px, 5vw, 22px);
    --section-space: clamp(68px, 19vw, 88px);
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
    font-size: 16px;
  }

  .section-heading h2,
  .safety__head h2,
  .living__copy h2,
  .visa__copy h2,
  .guests__copy h2,
  .freedom__head h2,
  .application__copy h2 {
    font-size: clamp(35px, 10vw, 46px);
    line-height: 1.01;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .site-header {
    padding-block: 9px;
  }

  .site-header.is-scrolled {
    padding-block: 7px;
  }

  .site-header__inner {
    min-height: 48px;
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .brand__text {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 14px;
  }

  .header-cta span {
    display: none;
  }

  .header-cta svg {
    width: 20px;
  }

  .hero {
    min-height: auto;
    padding: 106px 0 68px;
    background-size: 36px 36px, 36px 36px, auto;
  }

  .hero__inner {
    gap: 46px;
  }

  .hero__title {
    font-size: clamp(43px, 13.5vw, 58px);
    line-height: 0.93;
    overflow-wrap: anywhere;
  }

  .hero__title > span {
    margin-top: 0.14em;
    font-size: 0.67em;
  }

  .hero__title strong {
    width: auto;
    font-size: 0.89em;
    white-space: nowrap;
  }

  .hero__title sup {
    margin-left: 0.12em;
    font-size: 0.22em;
  }

  .hero__lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero__benefits {
    gap: 8px;
    margin-top: 22px;
  }

  .hero__benefits li {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 26px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions > p {
    max-width: none;
    justify-content: center;
  }

  .hero__visual {
    width: 100%;
    min-height: 470px;
  }

  .income-card {
    top: 32px;
    right: auto;
    left: 50%;
    width: min(88vw, 390px);
    min-height: 350px;
    padding: 28px;
    border-radius: 29px;
    transform: translateX(-50%) rotate(-2deg);
  }

  .hero__visual:hover .income-card {
    transform: translateX(-50%) rotate(-1deg) translateY(-3px);
  }

  .income-card__value {
    font-size: clamp(46px, 15vw, 62px);
  }

  .hero-note--price {
    top: 3px;
    left: 0;
  }

  .hero-note--demand {
    right: 0;
    bottom: 1px;
    left: auto;
    padding: 15px;
  }

  .hero-note__number {
    font-size: 23px;
  }

  .hero-orbit--one {
    right: -110px;
  }

  .hero__scroll {
    display: none;
  }

  .ticker__group {
    gap: 18px;
    padding-block: 15px;
    font-size: 13px;
  }

  .fit__grid {
    gap: 42px;
  }

  .section-heading > p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

  .numbered-list li {
    min-height: 0;
    gap: 14px;
    padding: 24px 0;
    grid-template-columns: 48px 1fr;
  }

  .numbered-list__number {
    font-size: 13px;
  }

  .numbered-list h3 {
    font-size: 25px;
  }

  .numbered-list p {
    font-size: 14px;
  }

  .income__intro {
    gap: 28px;
  }

  .metric-grid {
    gap: 12px;
    margin-top: 40px;
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 250px;
    padding: 25px;
    border-radius: 24px;
  }

  .metric-card--primary {
    min-height: 330px;
  }

  .metric-card--month,
  .metric-card--quote {
    min-height: 250px;
    grid-column: auto;
  }

  .metric-card--primary strong {
    flex-direction: column;
    font-size: clamp(53px, 16vw, 70px);
  }

  .metric-card--primary strong i {
    margin-block: 4px;
  }

  .stories {
    margin-top: 68px;
  }

  .stories__header {
    align-items: start;
  }

  .stories__header h3 {
    font-size: 33px;
  }

  .slider-controls {
    display: none;
  }

  .stories__viewport {
    width: calc(100% + var(--page-gutter));
    gap: 12px;
    margin-top: 28px;
    grid-auto-columns: 84%;
  }

  .story-card {
    min-height: 315px;
    padding: 24px;
    border-radius: 24px;
  }

  .story-card blockquote {
    font-size: 23px;
  }

  .slider-dots {
    justify-content: flex-start;
  }

  .london__inner {
    gap: 48px;
  }

  .london__title h2 {
    font-size: clamp(57px, 18vw, 78px);
  }

  .london__facts article {
    gap: 13px;
    padding: 26px 0;
    grid-template-columns: 1fr;
  }

  .london__facts strong {
    font-size: 27px;
  }

  .support__head {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }

  .benefit-grid {
    gap: 12px;
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .benefit-card--large,
  .benefit-card--wide {
    display: block;
    min-height: 280px;
    padding: 24px;
    border-radius: 24px;
    grid-column: auto;
    grid-row: auto;
  }

  .benefit-card--large {
    min-height: 390px;
    padding-right: 44%;
  }

  .benefit-card__number {
    margin-bottom: 55px;
  }

  .benefit-card h3 {
    font-size: 27px;
  }

  .benefit-card p {
    font-size: 14px;
  }

  .benefit-card__icon {
    top: 76px;
    right: 18px;
    width: 128px;
    height: 128px;
  }

  .benefit-card__icon svg {
    width: 58px;
  }

  .benefit-card--wide > div {
    margin-bottom: 25px;
  }

  .benefit-card--wide .benefit-card__number {
    margin-bottom: 55px;
  }

  .button--dark {
    width: 100%;
  }

  .living__grid {
    gap: 50px;
  }

  .living__visual {
    min-height: 440px;
  }

  .room-shape {
    right: 15px;
    border-radius: 160px 160px 26px 26px;
  }

  .room-shape__sun {
    top: 54px;
    right: 35px;
    width: 65px;
    height: 65px;
  }

  .room-shape__window {
    top: 64px;
    left: 27px;
    width: 125px;
    height: 180px;
    border-width: 9px;
  }

  .room-shape__sofa {
    right: 24px;
    bottom: 78px;
    width: 215px;
    height: 105px;
  }

  .room-shape__sofa::before,
  .room-shape__sofa::after {
    width: 76px;
    height: 55px;
  }

  .room-shape__table {
    bottom: 46px;
    left: 45px;
    width: 86px;
    height: 43px;
  }

  .room-shape__plant {
    right: 8px;
    bottom: 92px;
    transform: scale(0.75);
  }

  .living__stamp {
    width: 108px;
    height: 108px;
    padding: 16px;
  }

  .living__stamp span {
    font-size: 7px;
  }

  .living__details {
    margin-top: 30px;
  }

  .living__details > div {
    gap: 7px;
    grid-template-columns: 1fr;
  }

  .living__result {
    padding: 18px;
  }

  .visa__inner {
    gap: 42px;
  }

  .visa__metrics {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .visa__metrics article {
    min-height: 190px;
    padding: 21px;
    border-radius: 22px;
  }

  .visa__metrics article:first-child {
    min-height: 220px;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .visa__metrics article:first-child strong {
    margin-block: 28px;
    font-size: 75px;
  }

  .visa__metrics strong {
    font-size: 48px;
  }

  .safety__layout {
    gap: 38px;
    margin-top: 44px;
  }

  .safety__primary {
    min-height: 360px;
    padding: 25px;
    border-radius: 25px;
  }

  .safety-shield {
    width: 105px;
    height: 105px;
  }

  .safety-list li {
    gap: 14px;
    padding: 24px 0;
    grid-template-columns: 46px 1fr;
  }

  .safety-list__icon {
    width: 40px;
    height: 40px;
  }

  .safety-list h3 {
    font-size: 23px;
  }

  .guests__grid {
    gap: 50px;
  }

  .guests__copy > p:last-child,
  .visa__copy > p:last-child,
  .application__copy > p:nth-of-type(2) {
    font-size: 16px;
  }

  .price-comparison {
    padding: 12px;
    border-radius: 26px;
  }

  .price-comparison__row {
    padding: 23px 20px;
    border-radius: 20px;
  }

  .price-comparison__row strong {
    font-size: clamp(45px, 14vw, 58px);
  }

  .freedom__head {
    align-items: start;
    flex-direction: column;
  }

  .freedom__cards {
    gap: 0;
    margin-top: 40px;
    border-radius: 24px;
    grid-template-columns: 1fr;
  }

  .freedom__cards article {
    min-height: 290px;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .freedom__cards article:last-child {
    border-bottom: 0;
  }

  .freedom__cards h3 {
    margin-top: 90px;
    font-size: 28px;
  }

  .faq__grid {
    gap: 48px;
  }

  .accordion__item button {
    min-height: 84px;
    gap: 15px;
    padding: 22px 0;
    font-size: 18px;
  }

  .accordion__item button i {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .accordion__answer > div {
    padding: 0 48px 24px 0;
  }

  .accordion__answer p {
    font-size: 14px;
  }

  .application__grid {
    gap: 44px;
  }

  .application__summary {
    gap: 7px;
    margin-top: 28px;
  }

  .application__summary li {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 11px;
  }

  .form-card {
    border-radius: 25px;
  }

  .form-card__top {
    padding: 18px 20px;
  }

  .application-form {
    padding: 22px 20px 24px;
  }

  .form-field input {
    height: 58px;
  }

  .site-footer {
    padding: 28px 0 calc(34px + env(safe-area-inset-bottom));
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .site-footer__inner > p {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 9px 9px 16px;
    padding-bottom: max(9px, env(safe-area-inset-bottom));
    border: 1px solid rgba(33, 26, 28, 0.12);
    border-radius: 22px;
    background: rgba(255, 253, 252, 0.91);
    box-shadow: 0 14px 40px rgba(41, 28, 32, 0.18);
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 260ms ease,
      transform 300ms var(--ease),
      visibility 260ms ease;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .mobile-cta.is-hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(calc(100% + 20px));
  }

  .mobile-cta > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.2;
  }

  .mobile-cta > div span {
    color: var(--color-text-secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-cta > div strong {
    margin-top: 3px;
    overflow: hidden;
    font-size: 14px;
    letter-spacing: -0.03em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .button--mobile {
    min-height: 48px;
    flex: 0 0 auto;
    padding-inline: 18px;
    color: #fffaf8;
    background: var(--gradient-brand);
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: clamp(40px, 12.8vw, 49px);
  }

  .hero__title strong {
    font-size: 0.86em;
  }

  .hero-note--demand {
    max-width: 225px;
  }

  .benefit-card--large {
    padding-right: 37%;
  }

  .benefit-card__icon {
    width: 108px;
    height: 108px;
  }

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

  .visa__metrics article:first-child {
    grid-column: auto;
  }

  .mobile-cta > div {
    display: none;
  }

  .button--mobile {
    width: 100%;
  }
}

@media (min-width: 1600px) {
  :root {
    --container: 1280px;
  }

  .hero__inner {
    gap: 120px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .ticker__track {
    width: 100%;
    animation: none;
  }

  .ticker__group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }

  .ticker__group[aria-hidden="true"] {
    display: none;
  }
}



/* ---- inline patch block #1 (из оригинала) ---- */
/*pgLondonEdits*/
.story-card__head{display:flex;align-items:center;gap:12px;margin-bottom:6px}
.story-card__avatar{overflow:hidden;flex:0 0 auto}
.story-card__avatar img{width:100%;height:100%;object-fit:cover;border-radius:50%;display:block}
.story-card__name{margin:0;font-weight:760;font-size:16px;letter-spacing:-.01em}
.apart-gallery{display:flex;gap:12px;overflow-x:auto;margin:20px 0 6px;padding-bottom:8px;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.apart-gallery img{flex:0 0 auto;width:80%;max-width:360px;aspect-ratio:4/3;object-fit:cover;border-radius:20px;scroll-snap-align:start;background:var(--color-peach-soft)}
.application__cta{margin-top:8px}


/* ---- inline patch block #2 (из оригинала) ---- */
/*pgLondonEdits2*/
.visa__metrics{grid-template-columns:1fr}
.visa__metrics article:first-child{grid-row:auto}
.visa__metrics article:first-child strong{font-size:clamp(44px,12vw,64px);white-space:nowrap}
.freedom__cards article{min-height:132px;padding:22px 28px}
.lf-radio{display:flex;gap:18px;margin-top:8px}
.lf-radio label{display:flex;align-items:center;gap:7px;font-weight:600;cursor:pointer}
.lf-radio input{width:18px;height:18px;accent-color:var(--color-brand,#d46a86)}
.button--form:disabled{opacity:.5;cursor:not-allowed;filter:grayscale(.35)}


/* ---- inline patch block #3 (из оригинала) ---- */
/*pgLondonEdits3*/
.story-card__avatar{width:72px;height:72px}
.story-card__avatar img{object-position:top center}
