@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("fonts/gilroy-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Philosopher";
  src: url("fonts/philosopher-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Philosopher";
  src: url("fonts/philosopher-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Philosopher";
  src: url("fonts/philosopher-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Philosopher";
  src: url("fonts/philosopher-bolditalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
:root {
  --navy: #12233b;
  --navy-deep: #0c1a2d;
  --cream: #e9e3cc;
  --gold: #bea575;
  --gold-hover: #cbb791;
  --gold-pressed: #b79f70;
  --green: #0b392c;
  --paper: #f4f5f4;
  --paper-2: #e9ecef;
  --ink: #11223a;
  --font-body: "Gilroy", "Segoe UI", sans-serif;
  --font-display: "Philosopher", Georgia, "Times New Roman", serif;
  --blog-views-icon: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE0IDEyIj48cGF0aCBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03IDIuNEM0LjQ1IDIuNCAyLjYzIDQuMDYgMS42OCA1LjVjLjk1IDEuNDQgMi43NyAzLjEgNS4zMiAzLjFzNC4zNy0xLjY2IDUuMzItMy4xQzExLjM3IDQuMDYgOS41NSAyLjQgNyAyLjRaTS4zOCA1LjE4QzEuNDIgMy4zNSAzLjcyIDEuMiA3IDEuMnM1LjU4IDIuMTUgNi42MiAzLjk4YS42NC42NCAwIDAgMSAwIC42NEMxMi41OCA3LjY1IDEwLjI4IDkuOCA3IDkuOFMxLjQyIDcuNjUuMzggNS44MmEuNjQuNjQgMCAwIDEgMC0uNjRaTTcgNC4wNWExLjQ1IDEuNDUgMCAxIDAgMCAyLjkgMS40NSAxLjQ1IDAgMCAwIDAtMi45Wk00LjM1IDUuNWEyLjY1IDIuNjUgMCAxIDEgNS4zIDAgMi42NSAyLjY1IDAgMCAxLTUuMyAwWiIvPjwvc3ZnPg==");
  --muted: rgba(233, 227, 204, .72);
  --hero-x: 50vw;
  --hero-y: 90px;
  --hero-w: 550px;
  --hero-h: 803px;
  --hero-radius: 310px;
  --hero-progress: 0;
  --safe: max(24px, calc((100vw - 1560px) / 2));
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.search-open,
body.fit-open {
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
a:focus { outline: 0; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
.page-shell { overflow: clip; }
.hero-stage { height: 205vh; background: var(--navy); position: relative; }
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: -14vw;
  right: -14vw;
  bottom: -1px;
  height: clamp(138px, 10vw, 190px);
  pointer-events: none;
  background: #13243c;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: var(--cream);
}
.hero-pattern,
.section-dark::after,
.section-cream::before,
.platforms::before,
.blog::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .26;
  background-image:
    radial-gradient(circle at 100% 100%, transparent 0 80px, rgba(233,227,204,.18) 81px 83px, transparent 84px),
    radial-gradient(circle at 0 100%, transparent 0 80px, rgba(233,227,204,.12) 81px 83px, transparent 84px);
  background-size: 240px 240px;
  background-position: 40px 20px;
}
.hero-pattern {
  z-index: 0;
  inset: 0 0 0 auto;
  width: min(55.21vw, 1060px);
  opacity: 1;
  background: url("images/hero-side-pattern.svg") right top / auto 100% no-repeat;
}
.hero-media {
  position: absolute;
  left: var(--hero-x);
  top: var(--hero-y);
  width: var(--hero-w);
  height: var(--hero-h);
  border-radius: var(--hero-radius);
  transform: translateZ(0);
  background-image: url("images/hero-photo-original.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  overflow: hidden;
  z-index: 1;
  will-change: left, top, width, height, border-radius;
}
.hero-media::after,
.hero-shade {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,26,45,.48), rgba(12,26,45,.10) 52%, rgba(12,26,45,.46));
}
.hero-shade {
  z-index: 2;
  opacity: calc(var(--hero-progress) * .85);
  background: linear-gradient(180deg, rgba(12,26,45,.28), rgba(12,26,45,.04) 38%, rgba(12,26,45,.36));
}
.site-header {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: max(18px, calc((100vw - 1740px) / 2));
  right: max(18px, calc((100vw - 1740px) / 2));
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.brand { display: inline-flex; align-items: flex-start; color: var(--cream); min-width: max-content; }
.brand-logo { position: relative; width: 240px; height: 79px; gap: 13px; }
.brand-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: url("/figma-ui/assets/images/logo-dark.svg") left top / 100% 100% no-repeat;
  transition: opacity .18s ease;
}
.brand-emblem { width: 54px; height: 79px; flex: 0 0 54px; object-fit: contain; transition: opacity .18s ease; }
.brand-lockup { display: grid; gap: 5px; padding-top: 7px; transition: opacity .18s ease; }
.brand-wordmark { width: 173px; height: 52px; object-fit: contain; }
.brand-tagline { width: 120px; height: 7px; object-fit: contain; }
.header-nav { display: flex; align-items: center; justify-content: flex-start; gap: 0; flex: 1; margin-left: 36px; }
.header-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.94);
  font-size: 16px;
  line-height: 1;
  border: 1px solid transparent;
  backdrop-filter: blur(8px);
}
.header-nav a.has-chevron::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .85;
}
.hero-tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(233,227,204,.10);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  border: 1px solid rgba(233,227,204,.08);
  backdrop-filter: blur(8px);
}
.header-nav a:hover { background: rgba(233,227,204,.08); border-color: rgba(233,227,204,.08); }
.hero-tags a:hover { background: rgba(190,165,117,.34); }
.header-actions { display: flex; align-items: center; gap: 17px; margin-left: auto; }
.icon-link, .menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  display: inline-grid;
  place-items: center;
  background: #3b485c;
  color: var(--cream);
  cursor: pointer;
  font-size: 0;
}
.icon-link img, .favorite-link img, .social-links img { width: 18px; height: 18px; object-fit: contain; transition: filter .18s ease, opacity .18s ease; }
.favorite-link { display: inline-flex; align-items: center; gap: 5px; color: #fff; font-size: 18px; line-height: 1; white-space: nowrap; }
.favorite-link img { width: 46px; height: 46px; padding: 12px; }
.social-links { display: flex; align-items: center; gap: 5px; height: 46px; }
.social-links a { width: 46px; height: 46px; display: inline-grid; place-items: center; }
.phone-link { min-height: 46px; display: inline-flex; align-items: center; padding: 0 20px; border-radius: 999px; background: #3b485c; color: #fff; font-weight: 500; font-size: 18px; white-space: nowrap; }
.menu-toggle { display: none; position: relative; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--cream); position: absolute; left: 14px; transition: transform .24s ease; }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { bottom: 17px; }
.menu-open .menu-toggle span:first-child { transform: translateY(5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-5px) rotate(-45deg); }
.mobile-menu { display: none; }
.sale-mega {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(236px, 24.6vw, 472px);
  overflow: hidden;
  color: var(--ink);
  background: #eef1f3;
  background-image: url("images/approach-floral-pattern.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 118%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity .24s ease, transform .24s ease;
}
.sale-menu-open .sale-mega {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.sale-menu-open .site-header {
  z-index: 55;
}
.sale-menu-open .header-nav a,
.sale-menu-open .favorite-link,
.sale-menu-open .social-links a {
  color: var(--ink);
}
.sale-menu-open .favorite-link img,
.sale-menu-open .social-links img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(967%) hue-rotate(178deg) brightness(90%) contrast(94%);
}
.sale-menu-open .site-header .brand-logo::after {
  opacity: 1;
}
.sale-menu-open .site-header .brand-emblem,
.sale-menu-open .site-header .brand-lockup {
  opacity: 0;
}
.search-open .search-overlay .brand-logo::after {
  opacity: 1;
}
.search-open .search-overlay .brand-emblem,
.search-open .search-overlay .brand-lockup {
  opacity: 0;
}
.sale-menu-open .header-nav a[data-sale-trigger] {
  color: var(--gold);
  background: rgba(190,165,117,.08);
}
.sale-menu-open .header-nav a[data-sale-trigger]::after {
  margin-top: 3px;
  transform: rotate(225deg);
}
.sale-menu-open .header-nav a:hover {
  background: rgba(17,34,58,.06);
  border-color: transparent;
}
.sale-menu-open .header-nav a[data-sale-trigger]:hover {
  background: rgba(190,165,117,.12);
}
.sale-menu-open .hero-content,
.sale-menu-open .hero-media,
.sale-menu-open .hero-shade {
  filter: blur(8px);
}
.sale-mega-inner {
  width: min(1740px, calc(100vw - 36px));
  height: 100%;
  margin: 0 auto;
  padding: clamp(92px, 7.5vw, 144px) 0 clamp(24px, 2.4vw, 46px);
  display: grid;
  grid-template-columns: minmax(620px, 1fr) clamp(300px, 31vw, 595px);
  gap: clamp(26px, 4.8vw, 92px);
  align-items: start;
}
.sale-mega-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(22px, 3.3vw, 64px);
}
.sale-mega-col {
  display: grid;
  gap: clamp(6px, .52vw, 10px);
  align-content: start;
}
.sale-mega-col h2 {
  margin: 0 0 clamp(8px, .9vw, 18px);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.47vw, 28px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}
.sale-mega-col h2 span {
  min-width: 39px;
  height: 25px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--green, #064632);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
}
.sale-mega-col h2 .sale-menu-title-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.sale-mega-col h2 .sale-menu-title-link:hover {
  color: inherit;
}
.sale-mega-col a {
  color: rgba(17,34,58,.62);
  font-size: clamp(11px, .79vw, 15px);
  line-height: 1;
  transition: color .18s ease;
}
.sale-mega-col a:hover {
  color: var(--ink);
}
.sale-mega-promo {
  position: relative;
  min-height: clamp(132px, 13.75vw, 264px);
  border-radius: clamp(16px, 1.35vw, 26px);
  overflow: hidden;
  align-self: center;
  display: grid;
  align-content: end;
  gap: clamp(8px, .9vw, 18px);
  padding: clamp(20px, 1.9vw, 36px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17,34,58,.84) 0 40%, rgba(17,34,58,.18) 68%),
    url("images/hero-card-original.jpg") center / cover no-repeat;
  box-shadow: 0 28px 70px rgba(17,34,58,.22);
}
.sale-mega-promo span {
  align-self: start;
  margin-bottom: auto;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.4vw, 27px);
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}
.sale-mega-promo strong {
  font-size: clamp(15px, 1.05vw, 20px);
  font-weight: 400;
}
.sale-mega-promo em {
  width: max-content;
  min-height: 34px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  font-style: normal;
  font-size: clamp(11px, .72vw, 14px);
  font-weight: 600;
}
.sale-mega-promo i {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 66px;
  height: 8px;
  border-radius: 999px;
  background:
    radial-gradient(circle, #fff 0 2px, transparent 2.5px) 0 50% / 14px 8px repeat-x;
  opacity: .85;
}
.hero-content { position: relative; z-index: 4; height: 100%; padding: 156px var(--safe) 70px; }
.hero-copy { position: absolute; left: var(--safe); top: 280px; max-width: 610px; transition: transform .3s ease, opacity .3s ease; }
.hero-side {
  position: absolute;
  right: var(--safe);
  top: 237px;
  z-index: 5;
  width: clamp(392px, 34vw, 489px);
  display: grid;
  gap: 26px;
  transition: opacity .28s ease, transform .28s ease;
}
.hero-kicker {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 35px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}
@media (min-width: 761px) {
  .hero-copy { padding-top: 97px; }
}
h1, h2, h3, p { margin-top: 0; }
.hero h1,
.section-head h2,
.lifestyle h2,
.approach h2,
.blog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}
.hero h1 { font-size: clamp(62px, 5.5vw, 104px); line-height: .82; }
.hero-line { display: block; }
.hero h1 .hero-line-2 { color: var(--gold); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 54px; max-width: 700px; }
.hero-card {
  position: relative;
  width: 100%;
  height: 202px;
  min-height: 202px;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px 20px 20px 27px;
  background: rgba(255,255,255,.09);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  box-shadow: none;
}
.hero-card-title {
  display: block;
  width: min(100%, 503px);
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-card-price {
  position: absolute;
  left: 27px;
  top: 98px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--cream);
  white-space: nowrap;
}
.hero-card-price strong {
  display: block;
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.hero-card-price small {
  display: block;
  color: rgba(255,255,255,.80);
  font-size: 18px;
  line-height: 1;
}
.hero-card-dots {
  position: absolute;
  left: 29px;
  bottom: 28px;
  display: flex;
  gap: 3px;
}
.hero-card-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(233,227,204,.95);
}
.hero-card-dots i + i { background: rgba(233,227,204,.45); }
.card-arrow { position: absolute; right: 20px; top: 112px; width: 70px; height: 70px; border-radius: 50%; background: var(--gold); color: #ffffff; display: grid; place-items: center; font-family: var(--font-body); font-size: 31px; line-height: 1; }
.hero-cta {
  --hero-cta-expanded-width: min(486px, calc(100vw - var(--safe) * 2));
  --hero-cta-size: 75px;
  position: absolute;
  z-index: 12;
  right: var(--safe);
  bottom: 92px;
  width: var(--hero-cta-expanded-width);
  min-width: var(--hero-cta-size);
  height: var(--hero-cta-size);
  padding: 0 48px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  overflow: hidden;
  border-radius: 999px;
  background: #f5f2e8;
  color: var(--navy);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
  will-change: width, background-color, color;
  transition: width .42s cubic-bezier(.2,.8,.2,1), padding .42s cubic-bezier(.2,.8,.2,1), background-color .24s ease, color .24s ease, box-shadow .24s ease, transform .24s ease;
}
.hero-cta:hover,
.hero-cta:focus-visible {
  background: var(--gold);
  color: #fff;
  outline: none;
}
.hero-cta-icon {
  position: relative;
  z-index: 2;
  width: var(--hero-cta-size);
  height: var(--hero-cta-size);
  flex: 0 0 var(--hero-cta-size);
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background-color .24s ease;
}
.hero-cta-icon svg {
  width: 39px;
  height: 39px;
  display: block;
}
.hero-cta-icon path,
.hero-cta-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-cta-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  opacity: 1;
  transition: opacity .18s ease .06s;
}
.hero-cta:hover .hero-cta-icon,
.hero-cta:focus-visible .hero-cta-icon {
  background: transparent;
}
.is-hero-cta-compact .hero-cta:not(:hover):not(:focus-visible) {
  width: var(--hero-cta-size);
  padding-right: 0;
  background: transparent;
  box-shadow: none;
}
.is-hero-cta-compact .hero-cta:not(:hover):not(:focus-visible) .hero-cta-text {
  opacity: 0;
  transition-delay: 0s;
}
.is-hero-cta-compact .hero-cta:hover,
.is-hero-cta-compact .hero-cta:focus-visible {
  width: var(--hero-cta-expanded-width);
  padding-right: 48px;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
}
.scroll-cue { position: absolute; left: 50%; bottom: 58px; width: 144px; height: 144px; transform: translateX(-50%); display: grid; place-items: center; border: 0; padding: 0; background: transparent; color: var(--gold); cursor: pointer; opacity: calc(1 - var(--hero-progress)); transition: opacity .2s ease, transform .2s ease; }
.scroll-cue:hover,
.scroll-cue:focus-visible { transform: translateX(-50%) translateY(3px); outline: none; }
.scroll-cue img { width: 144px; height: 144px; display: block; object-fit: contain; animation: scrollCueSpin 14s linear infinite; transform-origin: 50% 50%; will-change: transform; }
@keyframes scrollCueSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue img { animation: none; }
}
.scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 26px;
  border-radius: 999px;
  background: var(--gold);
  transform: translate(-50%, -57%);
}
.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translate(-50%, 1px) rotate(45deg);
  transform-origin: center;
}
.scroll-cue span { width: 140px; height: 140px; border: 1px solid rgba(190,165,117,.36); border-radius: 50%; display: grid; place-items: center; font-size: 10px; text-transform: uppercase; letter-spacing: 0; }
.scroll-cue i { position: absolute; font-style: normal; font-size: 34px; }
.search-overlay {
  --search-x: 50%;
  --search-y: 28px;
  position: fixed;
  z-index: 100;
  inset: 0;
  min-height: 100vh;
  overflow: hidden;
  background: #eef0f2;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  clip-path: circle(0 at var(--search-x) var(--search-y));
  transition: clip-path .62s cubic-bezier(.19, 1, .22, 1), opacity .18s ease;
}
.search-open .search-overlay {
  opacity: 1;
  pointer-events: auto;
  clip-path: circle(155% at var(--search-x) var(--search-y));
}
.search-overlay-pattern {
  position: absolute;
  top: 76px;
  right: -42px;
  width: min(55vw, 850px);
  height: calc(100vh - 76px);
  opacity: .36;
  background: url("images/approach-floral-pattern.png") right top / cover no-repeat;
  pointer-events: none;
}
.search-overlay-header {
  position: relative;
  z-index: 2;
  height: 79px;
  margin: 10px max(18px, calc((100vw - 1740px) / 2)) 0;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.search-overlay-nav {
  flex: 1;
  margin-left: 36px;
  display: flex;
  align-items: center;
  gap: 0;
}
.search-overlay-nav a {
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ink);
  font-size: 16px;
}
.search-overlay-nav a.has-chevron::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: .85;
}
.search-overlay-actions {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-left: auto;
  padding-right: 46px;
}
.search-overlay-search-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #3b485c;
}
.search-overlay-search-icon img {
  width: 18px;
  height: 18px;
}
.search-overlay .favorite-link,
.search-overlay .social-links a {
  color: var(--ink);
}
.overlay-close {
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 3px;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}
.search-close {
  position: absolute;
  top: 76px;
  right: 70px;
}
.search-overlay-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 56px));
  margin: clamp(84px, 11.2vh, 142px) auto 0;
  transform: translateX(-5vw);
}
.search-overlay h2 {
  margin: 0 0 86px;
  font-family: var(--font-display);
  font-size: clamp(54px, 4.7vw, 90px);
  font-weight: 400;
  line-height: .72;
  letter-spacing: 0;
  text-align: center;
}
.search-overlay-form {
  display: grid;
  grid-template-columns: 1fr 114px;
  gap: 12px;
  align-items: center;
}
.search-overlay-form label {
  position: relative;
  display: block;
}
.search-overlay-form input {
  width: 100%;
  height: 51px;
  border: 0;
  border-radius: 999px;
  outline: none;
  padding: 0 58px 0 34px;
  background: #d8dde4;
  color: var(--ink);
  font-size: 13px;
}
.search-overlay-form input::placeholder {
  color: rgba(17,34,58,.62);
}
.search-overlay-form label span {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 22px;
  height: 34px;
  transform: translateY(-50%);
  background: url("images/micro.svg") center / contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
}
.search-overlay-form label span::before {
  content: none;
}
.search-overlay-form label span::after {
  content: none;
}
.search-overlay-form button {
  height: 51px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.search-suggestions {
  width: min(555px, 100%);
  margin-top: 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search-suggestions a {
  min-height: 25px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: rgba(17,34,58,.8);
  font-size: 11px;
  line-height: 1;
}
.fit-modal {
  position: fixed;
  z-index: 96;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: rgba(8,18,32,.62);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.fit-open .fit-modal {
  opacity: 1;
  pointer-events: auto;
}
.fit-modal-panel {
  position: relative;
  width: min(650px, calc(100vw - 40px));
  max-height: min(calc(100vh - 80px), 940px);
  overflow: auto;
  border-radius: 16px;
  padding: 54px 48px 40px;
  color: var(--cream);
  background:
    radial-gradient(circle at 85% 8%, rgba(190,165,117,.24), transparent 25%),
    linear-gradient(135deg, rgba(103,99,100,.88), rgba(47,59,78,.90));
  box-shadow: 0 36px 100px rgba(0,0,0,.38);
  transform: translateY(18px) scale(.97);
  transition: transform .28s ease;
}
.fit-open .fit-modal-panel {
  transform: none;
}
.fit-close {
  position: absolute;
  top: 25px;
  right: 26px;
  color: var(--cream);
}
.fit-modal h2 {
  margin: 0 0 55px;
  width: 450px;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 35px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}
.fit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 24px;
}
.fit-group,
.fit-field {
  min-width: 0;
  display: grid;
  gap: 10px;
}
.fit-type {
  grid-column: 1 / -1;
}
.fit-group > span,
.fit-field > span {
  color: #fff;
  font-size: 15px;
  line-height: 1;
}
.fit-chip-row,
.fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.fit-chip-row label,
.fit-tags label {
  display: inline-flex;
}
.fit-chip-row input,
.fit-tags input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fit-chip-row span,
.fit-tags span {
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(233,227,204,.15);
  color: var(--cream);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}
.fit-chip-row input:checked + span,
.fit-tags input:checked + span {
  background: var(--gold);
  color: #fff;
}
.fit-field select,
.fit-price input {
  width: 100%;
  height: 63px;
  border: 0;
  border-radius: 6px;
  outline: none;
  background: rgba(255,255,255,.18);
  color: #fff;
  padding: 0 20px;
  font-size: 18px;
  appearance: none;
}
.fit-field {
  position: relative;
}
.fit-field:not(.fit-price)::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 25px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(255,255,255,.85);
  border-bottom: 1.5px solid rgba(255,255,255,.85);
  transform: rotate(45deg);
  pointer-events: none;
}
.fit-price {
  grid-template-columns: 1fr;
  gap: 10px;
}
.fit-price-head {
  grid-column: 1 / -1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.fit-price-head > span {
  color: #fff;
  font-size: 15px;
  line-height: 1;
}
.fit-currency-control {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.fit-currency-control button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .9);
  font-family: inherit;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(17px);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.fit-currency-control button:hover,
.fit-currency-control button:focus-visible {
  background: rgba(255, 255, 255, .24);
  outline: none;
}
.fit-currency-control button.active,
.fit-currency-control button[aria-pressed="true"] {
  background: var(--gold);
  color: #fff;
}
.fit-price-control {
  grid-column: 1 / -1;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 5px;
  gap: 5px;
  background: rgba(255,255,255,.09);
  border-radius: 10px;
}
.fit-price-control label {
  min-width: 0;
  height: 50px;
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(22px);
  border-radius: 10px;
  box-sizing: border-box;
}
.fit-price input {
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-family: inherit;
  text-align: center;
  color: rgba(233,227,204,.75);
  line-height: 1;
}
.fit-price input::placeholder {
  color: rgba(233,227,204,.4);
  opacity: 1;
  font-size: 18px;
  line-height: 1;
  text-align: center;
}
.fit-tags {
  grid-column: 1 / -1;
  margin-top: 3px;
}
.fit-tags span {
  min-height: 28px;
  padding: 0 12px;
  font-size: 14px;
  background: rgba(233,227,204,.16);
}
.fit-tags label:nth-child(1) span,
.fit-tags label:nth-child(3) span {
  background: var(--gold);
  color: #fff;
}
.fit-tags label:nth-child(2) span {
  background: #b45a23;
  color: #fff;
}
.fit-submit {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 310px;
  height: 70px;
  margin-top: clamp(24px, 5vh, 88px);
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
.section-dark, .section-light, .section-cream, .section-gray { position: relative; overflow: hidden; }
.section-dark { background: var(--navy); color: var(--cream); }
.section-light { background: var(--paper); color: var(--ink); }
.section-cream { background: #fbfbf8; color: var(--ink); }
.section-gray { background: var(--paper-2); color: var(--ink); }
.section-grid { position: relative; max-width: 1640px; margin: 0 auto; padding: 150px 60px; }
.lifestyle { margin-top: -1px; }
.lifestyle-figma-slides,
.lifestyle-figma-control,
.lifestyle-figma-cta {
  display: none;
}
.lifestyle-figma-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease;
}
.lifestyle-figma-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.lifestyle-figma-slide img {
  width: 100%;
  height: 100%;
  display: block;
}
.lifestyle::before,
.approach-section::before {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  bottom: -1px;
  height: 150px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.lifestyle-grid { min-height: 920px; display: grid; grid-template-columns: 360px 1fr 460px; align-items: center; gap: 40px; }
.lifestyle-copy-track {
  position: relative;
  min-height: 280px;
}
.lifestyle-copy-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .34s ease, transform .34s ease;
}
.lifestyle-copy-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.section-copy .eyebrow { font-family: var(--font-display); font-size: 33px; line-height: .9; text-transform: uppercase; margin-bottom: 64px;
  letter-spacing: 0;
}
.section-copy p:not(.eyebrow) { color: rgba(233,227,204,.74); font-size: 20px; line-height: 1.35; }
.slider-count { display: flex; align-items: center; gap: 36px; color: var(--gold); margin-top: 130px; }
.slider-count b { width: 78px; height: 78px; border: 1px solid rgba(190,165,117,.45); border-radius: 50%; display: grid; place-items: center; font: 30px var(--font-display); font-weight: 400;
  letter-spacing: 0;
}
.lifestyle-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(190,165,117,.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.lifestyle-arrow:hover {
  background: rgba(190,165,117,.12);
  border-color: rgba(190,165,117,.55);
  transform: translateY(-2px);
}
.lifestyle-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.lifestyle-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(233,227,204,.26);
  cursor: pointer;
  transition: width .24s ease, background .24s ease;
}
.lifestyle-dots button.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--gold);
}
.lifestyle-card {
  position: relative;
  align-self: center;
  min-height: 430px;
  border-radius: 22px;
  overflow: visible;
  outline: none;
}
.lifestyle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: 0 35px 110px rgba(0,0,0,.25);
  pointer-events: none;
}
.lifestyle-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 20px;
  background: #0c1a2d;
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px) scale(.985);
  transition: opacity .42s ease, transform .42s ease;
}
.lifestyle-media.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.lifestyle-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 52% 46%;
  transform: scale(1.06);
}
.lifestyle-media:first-child img {
  object-position: 61% 52%;
  transform: scale(1.42);
}
.lifestyle-media-wide img {
  object-position: center;
  transform: scale(1.02);
}
.lifestyle-media-bright,
.lifestyle-media-compact {
  background:
    radial-gradient(circle at 72% 18%, rgba(190,165,117,.26), transparent 32%),
    linear-gradient(145deg, #eef0f1, #ccd4d9);
}
.lifestyle-media-bright img,
.lifestyle-media-compact img {
  object-fit: contain;
  object-position: center bottom;
  padding: 32px 48px 0;
  transform: scale(1);
  filter: drop-shadow(0 28px 30px rgba(19,35,59,.18));
}
.lifestyle-card[data-lifestyle-figma-assets] .lifestyle-media img,
.lifestyle-card[data-lifestyle-figma-assets] .lifestyle-media:first-child img,
.lifestyle-card[data-lifestyle-figma-assets] .lifestyle-media-wide img,
.lifestyle-card[data-lifestyle-figma-assets] .lifestyle-media-bright img,
.lifestyle-card[data-lifestyle-figma-assets] .lifestyle-media-compact img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: none;
}
.lifestyle-card[data-lifestyle-figma-assets] .lifestyle-media-bright,
.lifestyle-card[data-lifestyle-figma-assets] .lifestyle-media-compact {
  background: transparent;
}
.lifestyle-card[data-lifestyle-figma-assets] .lifestyle-media img,
.lifestyle-card[data-lifestyle-figma-assets] .lifestyle-media:first-child img {
  border-radius: 0;
  object-fit: cover;
  transform: scale(1.055);
  transform-origin: center;
}
.round-cta { position: absolute; z-index: 5; left: -60px; top: 42%; width: 146px; height: 146px; border-radius: 50%; background: var(--gold); color: white; display: grid; place-items: center; text-align: center; font-weight: 700; line-height: 1.05; }
.lifestyle h2 { font-size: clamp(64px, 5.2vw, 118px); line-height: .86; color: var(--cream); align-self: start; padding-top: 80px; }
@media (min-width: 761px) {
  .lifestyle {
    height: clamp(792px, 54.9479vw, 1055px);
    min-height: 0;
    overflow: hidden;
    background: #14243a;
  }

  .lifestyle::before {
    display: none;
  }

  .lifestyle-figma-slides {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
  }

  .lifestyle-figma-slide img {
    object-fit: fill;
  }

  .lifestyle .section-grid.lifestyle-grid {
    height: 100%;
    min-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  .lifestyle-figma-control,
  .lifestyle-figma-cta {
    position: absolute;
    z-index: 5;
    display: block;
    border: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
  }

  .lifestyle-figma-prev,
  .lifestyle-figma-next {
    left: 6.2%;
    bottom: 21%;
    width: 92px;
    height: 92px;
    border-radius: 50%;
  }

  .lifestyle-figma-next {
    left: 17.1%;
  }

  .lifestyle-figma-cta {
    left: 42.7%;
    top: 38.5%;
    width: 170px;
    height: 170px;
    border-radius: 50%;
  }
}
.section-head { position: relative; z-index: 1; max-width: 1640px; margin: 0 auto; padding: 120px 60px 64px; }
.split-head { display: grid; grid-template-columns: minmax(360px, 660px) minmax(300px, 560px); justify-content: space-between; gap: 70px; align-items: start; }
.section-head h2 { font-size: clamp(52px, 4.4vw, 88px); line-height: .84; }
.section-head p { font-size: 18px; line-height: 1.45; max-width: 580px; }
.architecture {
  background: #e7e9eb;
  color: #13233b;
}
.architecture::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -1px;
  width: 3865px;
  height: 1031px;
  max-width: 268vw;
  transform: translateX(-50%) translateY(88%);
  border-radius: 50%;
  background: #fbfbf8;
  pointer-events: none;
}
.architecture .section-head {
  max-width: none;
  padding: 108px 90px 36px;
  grid-template-columns: minmax(520px, 896px) minmax(420px, 617px);
  gap: 80px;
}
.architecture .section-head h2 {
  max-width: 896px;
  font-size: clamp(58px, 4.7vw, 90px);
  line-height: .75;
  letter-spacing: 0;
}
.style-intro {
  display: grid;
  gap: 20px;
  justify-self: end;
  max-width: 617px;
}
.style-intro p {
  max-width: none;
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  color: rgba(19,35,59,.8);
}
.style-intro .style-lead {
  font-size: 25px;
  font-weight: 500;
  color: #13233b;
}
.style-slider {
  position: relative;
  z-index: 1;
  padding: 0 0 155px 0;
}
.style-rail {
  display: flex;
  align-items: flex-end;
  gap: 85px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 90px;
  scroll-behavior: smooth;
  padding: 18px 90px 10px;
  scrollbar-width: none;
}
.style-rail::-webkit-scrollbar { display: none; }
.style-card {
  position: relative;
  flex: 0 0 319px;
  min-height: 626px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  scroll-snap-align: start;
}
.style-visual {
  position: relative;
  width: 319px;
  height: 391px;
  margin-bottom: -5px;
  display: grid;
  place-items: end center;
  isolation: isolate;
  overflow: visible;
}
.style-visual > img {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 112%;
  max-height: 360px;
  object-fit: contain;
  transform: translateY(10px);
  filter: drop-shadow(0 16px 18px rgba(19,35,59,.12));
  transition: transform .28s ease, filter .28s ease;
}
.classic .style-visual > img { width: 118%; }
.hightech .style-visual > img { width: 116%; transform: translateY(6px); }
.rococo .style-visual > img { width: 120%; }
.fachwerk .style-visual > img { width: 118%; }
.prairie .style-visual > img { width: 126%; transform: translate(14px, 10px); }
.chalet .style-visual > img { width: 116%; }
.modern .style-visual > img { width: 108%; }
.barnhouse .style-visual > img { width: 135%; }
.eco .style-visual > img { width: 122%; }
.gothic .style-visual > img { width: 116%; }
.fachwerk .style-visual > img,
.chalet .style-visual > img,
.modern .style-visual > img {
  clip-path: inset(2px 0 0 0);
}
.fachwerk .style-visual > img {
  -webkit-mask-image: linear-gradient(to bottom, #000 0 24.2%, transparent 24.2% 25%, #000 25% 100%);
  mask-image: linear-gradient(to bottom, #000 0 24.2%, transparent 24.2% 25%, #000 25% 100%);
}
.chalet .style-visual > img {
  -webkit-mask-image: linear-gradient(to bottom, #000 0 33.7%, transparent 33.7% 34.5%, #000 34.5% 100%);
  mask-image: linear-gradient(to bottom, #000 0 33.7%, transparent 33.7% 34.5%, #000 34.5% 100%);
}
.modern .style-visual > img {
  -webkit-mask-image: linear-gradient(to bottom, #000 0 25%, transparent 25% 25.8%, #000 25.8% 100%);
  mask-image: linear-gradient(to bottom, #000 0 25%, transparent 25% 25.8%, #000 25.8% 100%);
}
.style-card:hover .style-visual > img,
.style-card:focus-within .style-visual > img {
  transform: translateY(0) scale(1.03);
  filter: drop-shadow(0 20px 24px rgba(19,35,59,.18));
}
.prairie:hover .style-visual > img { transform: translate(14px, 0) scale(1.03); }
.style-ring {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: 258px;
  height: 349px;
  margin: 0;
  color: #13233b;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  transition: opacity .25s ease;
}
.style-card:hover .style-ring,
.style-card:focus-within .style-ring { opacity: 1; }
.style-ring-text {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
}
.style-card .style-ring img,
.style-card:hover .style-ring img,
.style-card:focus-within .style-ring img {
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  object-fit: fill;
  animation: style-ring-spin 18s linear infinite;
  transform-origin: 50% 50%;
  filter: none;
  will-change: transform;
}
.style-ring span {
  position: absolute;
  left: var(--ring-x, 50%);
  top: var(--ring-y, 50%);
  transform: translate(-50%, -50%) rotate(var(--ring-rotate, 0deg));
  transform-origin: 50% 50%;
}
@keyframes style-ring-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .style-card .style-ring img {
    animation: none;
  }
}
.style-card > span {
  align-self: flex-start;
  padding: 10px;
  border-radius: 999px;
  background: #0b392c;
  color: white;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  backdrop-filter: blur(17px);
}
.style-card h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 35px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 500;
}
.style-card p {
  width: 303px;
  margin: 0;
  font-size: 18px;
  line-height: 1;
  color: #13233b;
}
.style-next {
  position: absolute;
  right: 90px;
  top: 178px;
  z-index: 4;
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #13233b;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(19,35,59,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.style-next:hover {
  transform: translateX(4px);
  box-shadow: 0 22px 46px rgba(19,35,59,.18);
}
.exclusive { padding-bottom: 118px; }
.exclusive .section-head { padding-top: 104px; padding-bottom: 48px; }
.exclusive-wrap { position: relative; z-index: 1; max-width: 1348px; margin: 0 auto; padding: 0 60px; display: grid; grid-template-columns: minmax(560px, 640px) 520px; gap: 76px; align-items: center; }
.exclusive-card { position: relative; min-height: 430px; border-radius: 8px; overflow: hidden; background: var(--navy); box-shadow: 0 30px 90px rgba(0,0,0,.14); color: white; }
.exclusive-photo { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.72)), url("images/hero-photo-original.jpg") center 45%/cover; filter: saturate(.88); }
.exclusive-body { position: absolute; left: 28px; right: 28px; bottom: 24px; }
.exclusive-body strong { display: block; font: 38px var(--font-display); margin-bottom: 12px;
  letter-spacing: 0;
}
.exclusive-body p { max-width: 520px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.35; }
.badge { position: absolute; z-index: 2; left: 24px; top: 24px; background: rgba(11,57,44,.92); color: white; border-radius: 999px; padding: 10px 16px; font-size: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.chips span { border-radius: 999px; padding: 8px 13px; background: rgba(255,255,255,.10); font-size: 12px; }
.pill-link, .gold-link, .blog-card a, .club-card button, .footer-form button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 22px; border-radius: 999px; background: var(--gold); color: white; border: 0; cursor: pointer; font-weight: 700; }
.club-card { border-radius: 8px; background: var(--green); color: white; padding: 32px 38px 34px; box-shadow: 0 32px 90px rgba(11,57,44,.18); }
.club-card h3 { margin: 0 0 18px; font: 31px/.9 var(--font-display); letter-spacing: 0; }
.club-card p, .club-card li { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.28; }
.club-card ul { padding-left: 18px; margin: 20px 0 24px; }
.club-card label { display: block; color: rgba(255,255,255,.62); font-size: 12px; margin-bottom: 9px; }
.club-card input, .footer-form input { width: 100%; height: 38px; border-radius: 999px; border: 0; padding: 0 18px; background: rgba(255,255,255,.88); color: var(--ink); outline: none; }
.club-card button { min-height: 38px; margin-top: 4px; color: white; }
.approach-section { min-height: clamp(900px, 61.98vw, 1190px); display: grid; grid-template-columns: minmax(600px, 720px) minmax(560px, 1fr); gap: clamp(42px, 3.4vw, 66px); align-items: start; padding: clamp(88px, 5.3125vw, 102px) clamp(68px, 4.6875vw, 90px) 0; background-image: url("images/approach-floral-pattern.png"); background-repeat: no-repeat; background-position: 0 0; background-size: 100% auto; overflow: visible; isolation: isolate; }
.approach-section::before {
  left: -18vw;
  right: -18vw;
  top: -70px;
  bottom: auto;
  height: 96px;
  background: var(--navy);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: none;
  z-index: 0;
  pointer-events: none;
}
.approach-section::after { display: none; }
.approach-copy { position: relative; z-index: 1; max-width: 720px; }
.approach h2 { font-size: clamp(54px, 3.75vw, 72px); line-height: .84; color: var(--gold); margin-bottom: clamp(40px, 2.708vw, 52px); }
.approach h2 span { display: block; }
.approach h2 span + span { color: var(--cream); }
.approach p { width: min(714px, 100%); margin: 0; color: rgba(255,255,255,.82); font-size: clamp(14px, .833vw, 16px); line-height: 1.22; }
.approach p:first-of-type { color: #fff; }
.approach p + p { margin-top: 27px; }
.approach p + p { color: rgba(233,227,204,.56); }
.facts { display: grid; width: min(630px, 100%); grid-template-columns: 210px 210px; gap: clamp(56px, 4.06vw, 78px) 210px; margin: clamp(126px, 9.06vw, 174px) 0 clamp(68px, 5vw, 96px); }
.facts strong { display: block; font: clamp(54px, 3.54vw, 68px)/.86 var(--font-display); color: var(--gold); font-weight: 400;
  letter-spacing: 0;
}
.facts span { color: rgba(255,255,255,.66); font-size: clamp(13px, .78vw, 15px); line-height: 1.14; }
.approach-section .gold-link { min-height: clamp(48px, 3.33vw, 64px); padding: 0 clamp(30px, 2.29vw, 44px); font-family: var(--font-display); font-size: clamp(16px, .94vw, 18px); font-weight: 700;
  letter-spacing: 0;
}
.portrait-card { --portrait-video-y: clamp(62px, 4.17vw, 80px); position: relative; z-index: 1; justify-self: end; width: min(868px, 45.2vw); min-height: clamp(560px, 36.4vw, 699px); margin-top: clamp(52px, 3.39vw, 65px); margin-right: clamp(-30px, -1.56vw, -18px); display: grid; place-items: center; }
.portrait-card::before {
  content: "";
  display: none;
  position: absolute;
  z-index: 0;
  right: clamp(-110px, -5.2vw, -70px);
  top: clamp(20px, 3.2vw, 62px);
  width: clamp(390px, 32vw, 615px);
  height: clamp(500px, 41vw, 790px);
  opacity: .16;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 62% 44%, transparent 0 50%, rgba(233,227,204,.92) 50.3% 50.9%, transparent 51.2%),
    radial-gradient(ellipse at 38% 56%, transparent 0 45%, rgba(233,227,204,.72) 45.4% 45.9%, transparent 46.2%),
    radial-gradient(ellipse at 52% 22%, transparent 0 34%, rgba(233,227,204,.62) 34.4% 34.9%, transparent 35.2%);
  border-radius: 48% 52% 46% 54%;
  transform: rotate(12deg);
}
.portrait-shape {
  position: relative;
  z-index: 3;
  width: clamp(330px, 25.2vw, 484px);
  aspect-ratio: 484 / 705;
  overflow: hidden;
  border-radius: 50% / 45%;
  background: transparent;
  filter: drop-shadow(0 35px 88px rgba(0,0,0,.24));
  transform: translateY(var(--portrait-video-y));
}
.portrait-shape img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.portrait-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  border: clamp(4px, .42vw, 8px) solid var(--gold);
  border-radius: inherit;
  pointer-events: none;
}
.portrait-lettermark {
  --portrait-lettermark-y: -50%;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: clamp(405px, 31vw, 596px);
  height: auto;
  max-width: none;
  animation: portraitLettermarkSpin 24s linear infinite;
  transform: translate(-50%, var(--portrait-lettermark-y));
  transform-origin: 50% 50%;
  opacity: .98;
  pointer-events: none;
  will-change: transform;
}
@keyframes portraitLettermarkSpin {
  from { transform: translate(-50%, var(--portrait-lettermark-y, -50%)) rotate(0deg); }
  to { transform: translate(-50%, var(--portrait-lettermark-y, -50%)) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .portrait-lettermark {
    animation: none;
  }
}
.portrait-play {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 53%;
  width: clamp(44px, 3.75vw, 72px);
  height: clamp(44px, 3.75vw, 72px);
  transform: translate(-50%, calc(-50% + var(--portrait-video-y)));
  border-radius: 50%;
  background: rgba(190,165,117,.88);
  box-shadow: 0 18px 45px rgba(0,0,0,.20);
  pointer-events: none;
}
.portrait-play::before {
  content: "";
  position: absolute;
  left: 54%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-45%, -50%);
  border-top: clamp(10px, .94vw, 18px) solid transparent;
  border-bottom: clamp(10px, .94vw, 18px) solid transparent;
  border-left: clamp(15px, 1.25vw, 24px) solid #fff;
}
.platforms {
  min-height: clamp(762px, 52.917vw, 1016px);
  padding-bottom: 0;
  background: #fff;
}
.platforms::before {
  z-index: 0;
  inset: 0 0 auto auto;
  width: clamp(804px, 55.833vw, 1072px);
  height: 100%;
  opacity: 1;
  background: url("images/platform-cloud.svg") right top / 100% auto no-repeat;
}
.platforms::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -8vw;
  right: -8vw;
  bottom: -1px;
  height: clamp(68px, 5.521vw, 106px);
  background: #e7e9eb;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}
.platforms .section-head {
  max-width: none;
  padding:
    clamp(78px, 5.417vw, 104px)
    clamp(68px, 4.688vw, 90px)
    clamp(115px, 7.969vw, 153px);
  grid-template-columns:
    minmax(clamp(465px, 32.292vw, 620px), clamp(540px, 37.5vw, 720px))
    minmax(clamp(390px, 27.083vw, 520px), clamp(459px, 31.875vw, 612px));
}
.platforms .section-head p { display: grid; gap: clamp(18px, 1.042vw, 20px); max-width: 612px; margin: 0; font-size: 0; line-height: 1; }
.platforms .section-head p strong { display: block; color: var(--ink); font-size: clamp(20px, 1.354vw, 26px); line-height: 1.05; font-weight: 500; }
.platforms .section-head p span { display: block; max-width: 600px; color: rgba(17,34,58,.82); font-size: clamp(15px, 1.042vw, 20px); line-height: 1.1; }
.platform-cloud {
  position: relative;
  z-index: 1;
  width: min(1740px, calc(100% - clamp(135px, 9.375vw, 180px)));
  margin: 0 auto;
  min-height: clamp(342px, 23.75vw, 456px);
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(31px, 2.188vw, 42px);
  flex-wrap: nowrap;
}
.platform-card {
  width: clamp(188px, 13.073vw, 251px);
  height: clamp(260px, 18.021vw, 346px);
  flex: 0 0 clamp(188px, 13.073vw, 251px);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: none;
  transition: transform .35s ease, filter .35s ease;
}
.platform-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: #dfe2e5;
}
.platform-cloud .platform-card:nth-child(2n) {
  height: clamp(260px, 18.021vw, 346px);
  margin-top: clamp(82px, 5.729vw, 110px);
}
.platform-cloud .platform-card:nth-child(3n) { height: clamp(260px, 18.021vw, 346px); }
.platform-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  transition: opacity .28s ease, transform .35s ease;
}
picture.platform-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.platform-logo-map { width: clamp(44px, 4.53vw, 87px); }
.platform-logo-avito { width: clamp(95px, 9.79vw, 188px); }
.platform-logo-domclick { width: clamp(56px, 5.78vw, 111px); }
.platform-logo-house { width: clamp(78px, 8.02vw, 154px); }
.platform-logo-m2 { width: clamp(68px, 7.03vw, 135px); }
.platform-logo-homehunter { width: clamp(80px, 8.33vw, 160px); }
.platform-logo-color {
  position: absolute;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}
.platform-card:hover > .platform-logo:not(.platform-logo-color),
.platform-card:focus-visible > .platform-logo:not(.platform-logo-color) {
  opacity: 0;
}
.platform-card:hover > .platform-logo-color,
.platform-card:focus-visible > .platform-logo-color {
  opacity: 1;
  transform: scale(1.02);
}
.platform-card:hover,
.platform-card:focus-visible {
  filter: drop-shadow(0 18px 32px rgba(18, 35, 59, .14));
  transform: translateY(-6px);
}
.blog { padding-bottom: 112px; background: #e7e9eb; }
.blog-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-top: 104px; padding-bottom: 44px; }
.blog-head a { color: var(--ink); font-weight: 700; font-size: 14px; }
.blog-rail-wrap { position: relative; z-index: 1; max-width: none; margin-left: max(24px, calc((100vw - 1348px) / 2 + 60px)); overflow: hidden; }
.blog-rail { padding: 0 clamp(92px, 8vw, 132px) 0 0; display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
.blog-rail::-webkit-scrollbar { display: none; }
.blog-card { position: relative; isolation: isolate; flex: 0 0 clamp(320px, 29vw, 410px); min-height: 260px; overflow: hidden; background: white; border-radius: 8px; padding: 24px; box-shadow: 0 18px 50px rgba(18,35,59,.08); display: flex; flex-wrap: wrap; gap: 10px; align-content: start; scroll-snap-align: start; }
.blog-card::before { content: ""; position: absolute; inset: auto auto -46px -34px; z-index: -1; width: 260px; height: 230px; opacity: .48; background: url("images/approach-floral-pattern.png") center / contain no-repeat; pointer-events: none; }
.blog-card span { color: rgba(17,34,58,.55); font-size: 12px; }
.blog-card span:first-child { min-height: 22px; padding: 5px 13px 4px; border-radius: 999px; background: #eef1f4; color: rgba(17,34,58,.78); font-size: 10px; line-height: 1.2; }
.blog-card span:nth-child(2) { margin-left: auto; }
.blog-card span:nth-child(2)::before,
.blog-card span:nth-child(3)::before { color: var(--gold); margin-right: 5px; }
.blog-card span:nth-child(2)::before { content: "◷"; }
.blog-card span:nth-child(3)::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 11px;
  background-color: var(--gold);
  -webkit-mask: var(--blog-views-icon) center / contain no-repeat;
  mask: var(--blog-views-icon) center / contain no-repeat;
  vertical-align: -1px;
}
.blog-card h3 { flex-basis: 100%; margin: 16px 0 0; font: 25px/1.04 var(--font-display); letter-spacing: 0; }
.blog-card p { flex-basis: 100%; color: rgba(17,34,58,.68); line-height: 1.42; }
.blog-card a { margin-top: auto; margin-left: auto; min-height: 42px; }
.blog-arrow,
.blog-next { position: absolute; z-index: 3; top: 50%; width: 56px; height: 56px; border: 0; border-radius: 50%; background: var(--gold); color: #fff; display: inline-grid; place-items: center; font-size: 22px; line-height: 1; cursor: pointer; transform: translateY(-50%); box-shadow: 0 18px 36px rgba(18,35,59,.14); transition: background .2s ease, opacity .2s ease, transform .2s ease, visibility .2s ease; }
.blog-arrow-prev { left: clamp(38px, 5vw, 92px); }
.blog-arrow-next,
.blog-next { right: clamp(38px, 5vw, 92px); }
.blog-arrow:hover,
.blog-arrow:focus-visible,
.blog-next:hover,
.blog-next:focus-visible { background: #c7ad78; transform: translateY(-50%) scale(1.04); outline: none; }
.blog-arrow[disabled],
.blog-next[disabled] { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-50%) scale(.92); }
.site-footer { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(220px, 360px) minmax(280px, 420px); gap: 70px; padding: 90px var(--safe); background: var(--navy-deep); color: var(--cream); }
.footer-logo { margin-bottom: 42px; }
.site-footer dl { display: grid; grid-template-columns: 100px 1fr; gap: 10px 28px; margin: 0; }
.site-footer dt { color: rgba(233,227,204,.55); }
.site-footer dd { margin: 0; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(110px, 1fr)); gap: 16px 34px; align-content: start; }
.footer-nav a { color: rgba(233,227,204,.82); }
.footer-form h3 { margin: 0 0 12px; font: 28px/1 var(--font-display);
  letter-spacing: 0;
}
.footer-form p { color: rgba(233,227,204,.62); }
.footer-form input { background: rgba(255,255,255,.09); color: white; margin: 14px 0; }
.footer-form button { color: var(--navy); }
.is-expanded .hero-side { opacity: 1; transform: none; }
.is-expanded .hero-copy { transform: none; }
@media (max-width: 1540px) {
  .social-links { display: none; }
}
@media (max-width: 1440px) {
  .favorite-link span { display: none; }
}
@media (max-width: 1360px) {
  .header-nav { display: none; }
  .menu-toggle { display: inline-grid; }
}
@media (max-width: 1180px) {
  .header-nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .social-links { display: none; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle h2 { grid-row: 1; padding-top: 0; }
  .section-copy { grid-row: 3; }
  .lifestyle-copy-track { min-height: 210px; }
  .slider-count { margin-top: 46px; }
  .exclusive-wrap, .approach-section, .site-footer { grid-template-columns: 1fr; }
  .architecture .section-head {
    grid-template-columns: 1fr;
    padding-left: 40px;
    padding-right: 40px;
  }
  .style-intro { justify-self: start; }
  .style-rail {
    gap: 46px;
    padding-left: 40px;
    padding-right: 40px;
    scroll-padding-left: 40px;
  }
  .style-card { flex-basis: 300px; }
  .style-next { right: 40px; }
}
@media (max-width: 900px) {
  .favorite-link span { display: none; }
}
@media (max-width: 760px) {
  :root { --safe: 18px; }
  .hero-stage { height: 185vh; }
  .hero-stage::after { height: 82px; left: -28vw; right: -28vw; }
  .hero-pattern {
    width: 100%;
    opacity: .55;
    background-size: auto 100%;
    background-position: center top;
  }
  .hero { min-height: 640px; }
  .site-header { top: 16px; left: 18px; right: 18px; }
  .brand-logo { width: 180px; height: 62px; gap: 10px; }
  .brand-emblem { width: 42px; height: 62px; flex-basis: 42px; }
  .brand-lockup { gap: 4px; padding-top: 6px; }
  .brand-wordmark { width: 132px; height: 40px; }
  .brand-tagline { width: 92px; height: 5px; }
  .icon-link, .favorite-link, .phone-link, .social-links { display: none; }
  .hero-content { padding: 110px 18px 44px; }
  .hero-copy { left: 18px; right: 18px; top: 112px; max-width: none; }
  .hero-side { right: 18px; top: 216px; width: 230px; display: block; }
  .hero-kicker { width: 230px; margin: 0; font-size: 14px; line-height: 1.2; }
  .hero h1 { font-size: clamp(42px, 12vw, 54px); text-align: left; }
  .hero-tags { margin-top: 220px; gap: 6px; }
  .hero-tags a { min-height: 25px; padding: 0 10px; font-size: 10px; }
  .hero-card { display: none; }
  .hero-cta { --hero-cta-size: 42px; --hero-cta-expanded-width: min(218px, calc(100vw - 36px)); right: 18px; bottom: 42px; width: var(--hero-cta-expanded-width); min-width: var(--hero-cta-size); height: var(--hero-cta-size); padding-right: 16px; font-size: 12px; }
  .hero-cta-icon svg { width: 23px; height: 23px; }
  .scroll-cue { display: none; }
  .section-grid, .section-head, .exclusive-wrap, .blog-rail, .approach-section, .site-footer { padding-left: 18px; padding-right: 18px; }
  .lifestyle-grid { min-height: auto; padding-top: 86px; padding-bottom: 170px; gap: 34px; }
  .lifestyle h2, .section-head h2, .approach h2, .blog h2 { font-size: 43px; line-height: .88; }
  .lifestyle-copy-track { min-height: 220px; }
  .lifestyle-card { min-height: 252px; width: calc(100% - 26px); justify-self: end; }
  .lifestyle-media img { min-height: 252px; object-position: 64% center; }
  .lifestyle-media:first-child img { transform: scale(1.5); object-position: 63% 54%; }
  .lifestyle-media-bright img,
  .lifestyle-media-compact img { padding: 18px 24px 0; }
  .round-cta { left: auto; right: 16px; top: auto; bottom: -34px; width: 90px; height: 90px; font-size: 11px; }
  .section-copy .eyebrow { font-size: 21px; margin-bottom: 24px; }
  .section-copy p:not(.eyebrow), .section-head p, .approach p { font-size: 14px; }
  .slider-count { margin-top: 38px; justify-content: space-between; gap: 14px; }
  .slider-count b { width: 54px; height: 54px; font-size: 18px; }
  .lifestyle-arrow { width: 40px; height: 40px; }
  .lifestyle-dots { justify-content: flex-end; margin-top: 18px; }
  .split-head { grid-template-columns: 1fr; gap: 24px; padding-top: 74px; }
  .architecture .section-head {
    padding: 74px 18px 10px;
  }
  .architecture .section-head h2 {
    font-size: 48px;
    line-height: .78;
  }
  .style-intro { gap: 12px; }
  .style-intro .style-lead { font-size: 17px; }
  .style-intro p { font-size: 14px; }
  .style-slider { padding-bottom: 72px; }
  .style-rail {
    gap: 22px;
    padding: 42px 18px 8px;
    scroll-padding-left: 18px;
  }
  .style-card {
    flex-basis: 242px;
    min-height: 468px;
    gap: 14px;
  }
  .style-visual {
    width: 242px;
    height: 268px;
    margin-bottom: 0;
  }
  .style-visual > img {
    width: 118%;
    max-height: 250px;
  }
  .style-ring {
    width: 176px;
    height: 238px;
    margin: 0;
    font-size: 11px;
  }
  .style-card h3 { font-size: 25px; }
  .style-card p {
    width: 230px;
    font-size: 13px;
    line-height: 1.08;
  }
  .style-next {
    width: 54px;
    height: 54px;
    right: 18px;
    top: 260px;
    font-size: 22px;
  }
  .exclusive { padding-bottom: 72px; }
  .exclusive-wrap { gap: 22px; }
  .exclusive-card { min-height: 470px; }
  .exclusive-body { left: 18px; right: 18px; bottom: 18px; }
  .exclusive-body strong { font-size: 28px; }
  .club-card { padding: 26px 18px; }
  .club-card h3 { font-size: 31px; }
  .approach-section { padding-top: 84px; padding-bottom: 86px; gap: 20px; }
  .facts { grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 36px 0; }
  .facts strong { font-size: 42px; }
  .portrait-card { min-height: 390px; }
  .portrait-shape { width: 270px; }
  .portrait-lettermark { width: 330px; }
  .portrait-play { width: 52px; height: 52px; }
  .platforms { padding-bottom: 86px; }
  .platform-cloud {
    min-height: 360px;
    padding: 0 24px 16px;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .platform-cloud a {
    width: 188px;
    height: 259px;
    flex-basis: 188px;
    font-size: 0;
    scroll-snap-align: start;
  }
  .platform-cloud a:nth-child(2n) {
    height: 259px;
    margin-top: 70px;
  }
  .platform-cloud a:nth-child(3n) { height: 259px; }
  .blog { padding-bottom: 70px; }
  .blog-head { align-items: center; padding-bottom: 28px; }
  .blog-rail-wrap { margin-left: 0; overflow: hidden; }
  .blog-rail { display: flex; overflow-x: auto; gap: 14px; padding: 0 76px 0 18px; scroll-snap-type: x mandatory; }
  .blog-card { flex: 0 0 285px; min-width: 0; min-height: 300px; scroll-snap-align: start; }
  .blog-arrow,
  .blog-next { width: 48px; height: 48px; font-size: 19px; }
  .blog-arrow-prev { left: 18px; }
  .blog-arrow-next,
  .blog-next { right: 18px; }
  .site-footer { padding-top: 62px; padding-bottom: 62px; gap: 34px; }
  .site-footer dl, .footer-nav { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --safe: 20px; }

  .hero-stage {
    height: 1436px;
  }

  .hero {
    height: 718px;
    min-height: 718px;
  }

  .site-header {
    top: 10px;
    left: 20px;
    right: 20px;
    height: 60px;
    align-items: flex-start;
  }

  .brand-logo {
    width: 166px;
    height: 48px;
    gap: 8px;
  }

  .brand-emblem {
    width: 49px;
    height: 49px;
    flex-basis: 49px;
  }

  .brand-lockup {
    gap: 2px;
    padding-top: 5px;
  }

  .brand-wordmark {
    width: 111px;
    height: 31px;
  }

  .brand-tagline {
    width: 89px;
    height: 6px;
  }

  .header-actions {
    gap: 22px;
    padding-top: 3px;
  }

  .search-link {
    display: inline-grid;
    width: 46px;
    height: 46px;
    background: #3b485c;
  }

  .menu-toggle {
    display: inline-grid;
    width: 33px;
    height: 28px;
    margin-top: 6px;
    border-radius: 0;
    background: transparent;
  }

  .menu-toggle::before {
    content: "";
    position: absolute;
    left: 1px;
    top: 13px;
    width: 31px;
    height: 2px;
    background: var(--cream);
    transition: opacity .2s ease;
  }

  .menu-toggle span {
    left: 1px;
    width: 31px;
    height: 2px;
  }

  .menu-toggle span:first-child { top: 3px; }
  .menu-toggle span:last-child { bottom: 3px; }
  .menu-open .menu-toggle::before { opacity: 0; }
  .menu-open .menu-toggle span:first-child { transform: translateY(10px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-10px) rotate(-45deg); }

  .mobile-menu {
    top: 70px;
    right: 20px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-copy {
    top: 107px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    max-width: 335px;
  }

  .hero h1 {
    order: 1;
    width: 335px;
    font-size: 38px;
    line-height: .79;
    letter-spacing: 0;
    text-align: left;
  }

  .hero-line-2 {
    margin-left: 88px;
  }

  .hero-line-3 {
    margin-left: 44px;
  }

  .hero-side {
    top: 218px;
    right: 20px;
    width: 239px;
  }

  .hero-kicker {
    width: 239px;
    margin: 0;
    font-size: 15px;
    line-height: 1.07;
  }

  .hero-tags {
    order: 3;
    width: 257px;
    margin-top: 254px;
    gap: 6px;
  }

  .hero-tags a {
    min-height: 20px;
    padding: 0 10px;
    font-size: 10px;
    border: 0;
    background: rgba(233, 227, 204, .14);
  }

  .hero-cta {
    --hero-cta-size: 31px;
    --hero-cta-expanded-width: 200px;
    top: 616px;
    right: 20px;
    bottom: auto;
    width: var(--hero-cta-expanded-width);
    min-width: var(--hero-cta-size);
    height: 31px;
    min-height: 31px;
    padding: 0 16px 0 0;
    font-size: 13px;
    color: var(--navy);
    background: white;
  }

  .hero-cta-icon svg {
    width: 17px;
    height: 17px;
  }

  .lifestyle {
    height: 835px;
    margin-top: 0;
  }

  .lifestyle::before {
    left: 0;
    right: 0;
    bottom: -1px;
    height: 8px;
    z-index: 5;
    border-radius: 0;
  }

  .lifestyle-grid {
    height: 835px;
    min-height: 835px;
    display: block;
    padding: 0 20px;
  }

  .lifestyle h2 {
    position: absolute;
    left: 20px;
    top: 124px;
    width: 330px;
    padding: 0;
    font-size: 40px;
    line-height: .78;
    letter-spacing: 0;
  }

  .lifestyle-desktop-break {
    display: none;
  }

  .lifestyle-card {
    position: absolute;
    left: 20px;
    top: 253px;
    width: calc(100% - 40px);
    min-height: 232px;
    height: 232px;
    border-radius: 4px;
  }

  .lifestyle-media img {
    min-height: 232px;
    object-position: center;
  }

  .lifestyle-media:first-child img {
    transform: none;
    object-position: center;
  }

  .round-cta {
    left: 134px;
    right: auto;
    top: 192px;
    bottom: auto;
    width: 82px;
    height: 82px;
    font-size: 12px;
    font-weight: 500;
  }

  .lifestyle .section-copy {
    position: absolute;
    left: 20px;
    top: 558px;
    width: 310px;
  }

  .lifestyle-copy-track {
    min-height: 132px;
  }

  .section-copy .eyebrow {
    font-size: 20px;
    line-height: .92;
    margin-bottom: 16px;
    text-transform: uppercase;
  }

  .section-copy p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.08;
  }

  .lifestyle .slider-count {
    position: absolute;
    left: 230px;
    top: 186px;
    width: 111px;
    margin: 0;
    gap: 12px;
  }

  .slider-count b {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .lifestyle-arrow {
    width: 20px;
    height: 20px;
    border: 0;
    background: transparent;
    color: var(--gold);
  }

  .lifestyle-dots {
    display: none;
  }

  .architecture {
    height: 768px;
    overflow: hidden;
  }

  .architecture .section-head {
    height: 342px;
    padding: 58px 20px 0;
    gap: 22px;
  }

  .architecture .section-head h2 {
    font-size: 39px;
    line-height: .78;
    letter-spacing: 0;
  }

  .style-intro .style-lead {
    font-size: 17px;
    line-height: 1.12;
  }

  .style-intro p {
    font-size: 13px;
    line-height: 1.16;
  }

  .style-slider {
    padding-bottom: 0;
  }

  .style-rail {
    gap: 33px;
    padding: 40px 20px 0;
    scroll-padding-left: 20px;
  }

  .style-card {
    flex: 0 0 206px;
    min-height: 330px;
    gap: 12px;
    background: transparent;
  }

  .style-visual {
    width: 206px;
    height: 128px;
    align-items: flex-end;
    overflow: visible;
  }

  .style-visual > img {
    width: 225px;
    max-height: 128px;
    object-fit: contain;
    object-position: left bottom;
  }

  .style-ring {
    display: none;
  }

  .style-card span {
    width: max-content;
    min-height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: var(--green);
    color: white;
    font-size: 10px;
  }

  .style-card h3 {
    font-size: 20px;
    line-height: .92;
  }

  .style-card p {
    width: 206px;
    font-size: 14px;
    line-height: 1.08;
  }

  .style-next {
    top: 492px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: white;
    color: var(--navy);
  }

  .exclusive {
    min-height: 1602px;
    padding-bottom: 0;
  }

  .exclusive .section-head {
    padding: 68px 20px 32px;
  }

  .exclusive .section-head h2 {
    font-size: 29px;
    line-height: .86;
    text-align: center;
  }

  .exclusive .section-head p {
    font-size: 13px;
    line-height: 1.18;
  }

  .exclusive-wrap {
    padding: 0 13px;
    gap: 26px;
  }

  .exclusive-card {
    min-height: 422px;
    border-radius: 8px;
  }

  .club-card {
    min-height: 649px;
    padding: 28px 18px 22px;
    border-radius: 8px;
  }

  .approach-section {
    min-height: 1072px;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 47px 20px 54px;
    gap: 28px;
    background-image: none;
  }

  .approach h2 {
    font-size: 39px;
    line-height: .78;
  }

  .approach p {
    font-size: 15px;
    line-height: 1.13;
  }

  .portrait-card {
    --portrait-video-y: 0px;
    width: 100%;
    min-height: 333px;
    margin-top: 0;
    margin-right: 0;
    justify-self: center;
  }

  .portrait-card::before {
    display: none;
  }

  .portrait-shape {
    width: 268px;
    transform: none;
  }

  .portrait-play {
    transform: translate(-50%, -50%);
  }

  .facts {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 36px;
    margin: 26px 0 28px;
  }

  .platforms {
    min-height: 650px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .platforms .section-head {
    grid-template-columns: 1fr;
    padding: 58px 20px 28px;
  }

  .platforms .section-head h2 {
    font-size: 40px;
    line-height: .92;
  }

  .platforms .section-head p {
    gap: 12px;
    font-size: 0;
    line-height: 1;
  }

  .platforms .section-head p strong {
    font-size: 15px;
    line-height: 1.16;
  }

  .platforms .section-head p span {
    font-size: 13px;
    line-height: 1.16;
  }

  .platform-cloud {
    width: 100%;
    min-height: 292px;
    padding: 0 20px 24px;
    gap: 12px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-padding-left: 20px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .platform-cloud a {
    width: 128px;
    height: 176px;
    flex-basis: 128px;
    font-size: 0;
    scroll-snap-align: start;
  }

  .platform-cloud::-webkit-scrollbar { display: none; }

  .platform-cloud .platform-card:nth-child(2n) {
    height: 176px;
    margin-top: 52px;
  }
  .platform-cloud .platform-card:nth-child(3n) { height: 176px; }

  .blog {
    height: 464px;
    padding-bottom: 0;
    overflow: hidden;
  }

  .blog-head {
    padding: 38px 20px 28px;
  }

  .blog h2 {
    font-size: 39px;
    line-height: .82;
  }

  .blog-rail {
    gap: 10px;
    padding: 0 76px 0 20px;
  }

  .blog-card {
    flex-basis: 293px;
    min-height: 277px;
    padding: 20px;
  }

  .blog-card h3 {
    font-size: 20px;
    line-height: .94;
    margin-top: 12px;
  }

  .blog-card p {
    font-size: 13px;
    line-height: 1.18;
  }

  .site-footer {
    min-height: 1092px;
    padding: 56px 20px 28px;
    gap: 28px;
  }

  .site-footer .brand-logo {
    width: 260px;
    height: 99px;
    gap: 14px;
  }

  .site-footer .brand-emblem {
    width: 76px;
    height: 99px;
    flex-basis: 76px;
  }

  .site-footer .brand-wordmark {
    width: 168px;
    height: 50px;
  }

  .site-footer .brand-tagline {
    width: 132px;
    height: 10px;
  }
}

/* Footer, Frame 2087326745 */
.site-footer {
  --footer-side: var(--safe, var(--side, 60px));
  position: relative;
  min-height: 646px;
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(112px, 150px) minmax(150px, 214px) minmax(138px, 190px) minmax(310px, 430px);
  gap: clamp(34px, 3.5vw, 68px);
  align-items: start;
  padding: 92px var(--footer-side) 28px;
  overflow: hidden;
  background: #0b1b31;
  color: rgba(233, 227, 204, .74);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 56px 0 0 auto;
  width: min(760px, 46vw);
  opacity: .24;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 100% 100%, transparent 0 80px, rgba(233, 227, 204, .18) 81px 83px, transparent 84px),
    radial-gradient(circle at 0 100%, transparent 0 80px, rgba(233, 227, 204, .12) 81px 83px, transparent 84px);
  background-size: 238px 238px;
  background-position: right top;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: var(--footer-side);
  right: var(--footer-side);
  bottom: 74px;
  height: 1px;
  background: rgba(233, 227, 204, .14);
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.footer-logo {
  width: 286px;
  height: 94px;
  gap: 17px;
  margin: 0 0 48px;
}

.site-footer .brand-emblem {
  width: 64px;
  height: 94px;
  flex-basis: 64px;
}

.site-footer .brand-lockup {
  gap: 7px;
  padding-top: 9px;
}

.site-footer .brand-wordmark {
  width: 202px;
  height: 61px;
}

.site-footer .brand-tagline {
  width: 141px;
  height: 8px;
}

.footer-contacts {
  display: grid;
  gap: 12px;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.25;
}

.footer-contacts a,
.footer-contacts strong {
  color: var(--cream);
  font-weight: 600;
}

.footer-contacts p {
  margin: 8px 0 0;
  color: rgba(233, 227, 204, .62);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(233, 227, 204, .10);
  border: 1px solid rgba(233, 227, 204, .22);
  transition: background .2s ease, transform .2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(190, 165, 117, .82);
  transform: translateY(-2px);
}

.footer-socials img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding-top: 105px;
}

.footer-column h2,
.footer-form h2 {
  margin: 0 0 8px;
  color: var(--cream);
  font: 600 16px/1.12 var(--font-body);
}

.footer-column a {
  color: rgba(233, 227, 204, .58);
  font-size: 14px;
  line-height: 1.2;
  transition: color .2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--cream);
}

.footer-form {
  max-width: 430px;
  padding-top: 98px;
}

.footer-form h2 {
  max-width: 330px;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.04;
}

.footer-form input {
  width: 100%;
  height: 32px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(233, 227, 204, .14);
  color: white;
  outline: none;
  padding: 0 18px;
  font-size: 13px;
}

.footer-form input::placeholder {
  color: rgba(233, 227, 204, .48);
}

.footer-form p {
  max-width: 360px;
  margin: 12px 0 18px;
  color: rgba(233, 227, 204, .42);
  font-size: 12px;
  line-height: 1.28;
}

.footer-form button {
  min-height: 36px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold);
  color: #0b1b31;
  border: 0;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  margin-top: 82px;
  padding-top: 24px;
  color: rgba(233, 227, 204, .45);
  font-size: 12px;
  line-height: 1.2;
}

.footer-bottom a {
  color: rgba(233, 227, 204, .45);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--cream);
}

@media (max-width: 1360px) {
  .site-footer {
    grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(130px, 1fr));
    min-height: 720px;
  }

  .footer-form {
    grid-column: 2 / -1;
    max-width: 560px;
    padding-top: 10px;
  }
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
    min-height: auto;
    padding: 58px 20px 28px;
  }

  .site-footer::before {
    inset: 140px -190px 0 auto;
    width: 560px;
    opacity: .18;
  }

  .site-footer::after {
    left: 20px;
    right: 20px;
    bottom: 104px;
  }

  .footer-brand,
  .footer-form,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: 260px;
    height: 99px;
    gap: 14px;
    margin-bottom: 38px;
  }

  .site-footer .brand-emblem {
    width: 76px;
    height: 99px;
    flex-basis: 76px;
  }

  .site-footer .brand-wordmark {
    width: 168px;
    height: 50px;
  }

  .site-footer .brand-tagline {
    width: 132px;
    height: 10px;
  }

  .footer-column {
    padding-top: 0;
  }

  .footer-form {
    padding-top: 4px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .footer-socials {
    margin-top: 34px;
  }

  .footer-form input {
    height: 36px;
  }
}

@media (max-width: 1180px) {
  .sale-mega {
    display: none;
  }

  .search-overlay-header {
    left: 0;
    right: 0;
    margin: 10px 28px 0;
  }

  .search-overlay-nav {
    display: none;
  }

  .search-overlay-actions {
    margin-left: auto;
  }

  .search-overlay-content {
    transform: none;
  }
}

@media (min-width: 761px) {
  .lifestyle {
    position: relative;
    height: clamp(594px, 54.9479vw, 1055px);
    min-height: 0;
    overflow: hidden;
    background: #13243c;
  }

  .lifestyle::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(55.21vw, 1060px);
    opacity: 1;
    pointer-events: none;
    background: url("images/lifestyle-circles.svg") right center / auto 100% no-repeat;
  }

  .lifestyle::before {
    display: block;
    z-index: 4;
    left: -10vw;
    right: -10vw;
    bottom: -1px;
    height: clamp(62px, 4.9vw, 94px);
    background: var(--paper);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  }

  .lifestyle-figma-slides,
  .lifestyle-figma-control,
  .lifestyle-figma-cta {
    display: none !important;
  }

  .lifestyle .section-grid.lifestyle-grid {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .lifestyle .section-copy.narrow {
    position: absolute;
    left: 4.68vw;
    top: 29.1%;
    width: clamp(230px, 17.2vw, 330px);
    max-width: none;
  }

  .lifestyle-copy-track {
    height: clamp(152px, 11.7vw, 225px);
    min-height: 0;
  }

  .section-copy .eyebrow {
    margin-bottom: clamp(25px, 2.9vw, 56px);
    font-size: clamp(16px, 1.5vw, 29px);
    line-height: .9;
  }

  .section-copy p:not(.eyebrow) {
    width: clamp(210px, 16.25vw, 312px);
    max-width: none;
    font-size: clamp(12px, .88vw, 17px);
    line-height: 1.22;
    color: rgba(233,227,204,.74);
  }

  .lifestyle .slider-count {
    position: absolute;
    top: clamp(300px, 22.7vw, 436px);
    left: 0;
    margin-top: 0;
    gap: clamp(19px, 1.88vw, 36px);
    color: var(--gold);
  }

  .lifestyle .slider-count b {
    width: clamp(42px, 4.0625vw, 78px);
    height: clamp(42px, 4.0625vw, 78px);
    border-color: rgba(190,165,117,.42);
    font-size: clamp(16px, 1.56vw, 30px);
  }

  .lifestyle-arrow {
    width: clamp(24px, 2.2vw, 42px);
    height: clamp(24px, 2.2vw, 42px);
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--gold);
    font-size: clamp(12px, .94vw, 18px);
  }

  .lifestyle-arrow:hover {
    background: transparent;
    border-color: transparent;
    transform: translateX(2px);
  }

  .lifestyle-dots {
    display: none;
  }

  .lifestyle-card {
    position: absolute;
    left: 43.45vw;
    top: 24.35%;
    width: clamp(480px, 44.74vw, 859px);
    height: clamp(300px, 27.93vw, 536px);
    min-height: 0;
    border-radius: clamp(6px, .42vw, 8px);
    overflow: visible;
  }

  .lifestyle-card::after {
    display: none;
  }

  .lifestyle-media {
    border-radius: clamp(6px, .42vw, 8px);
    background: transparent;
    transform: translateX(18px);
    transition: opacity .34s ease, transform .34s ease;
  }

  .lifestyle-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
      linear-gradient(90deg, rgba(19,36,60,.08), transparent 22%),
      linear-gradient(180deg, rgba(19,36,60,.50), transparent 34%);
  }

  .lifestyle-media.is-active {
    transform: none;
  }

  .lifestyle-media img,
  .lifestyle-media:first-child img,
  .lifestyle-media-wide img,
  .lifestyle-media-bright img,
  .lifestyle-media-compact img {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    object-fit: cover;
    object-position: center;
    transform: none;
    filter: none;
  }

  .round-cta {
    left: calc(-1 * clamp(35px, 3.44vw, 66px));
    top: 44.2%;
    width: clamp(70px, 6.875vw, 132px);
    height: clamp(70px, 6.875vw, 132px);
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: clamp(9px, .68vw, 13px);
    font-weight: 600;
    line-height: 1.05;
  }

  .lifestyle h2 {
    position: absolute;
    z-index: 3;
    left: 69.9vw;
    top: 10.35%;
    width: clamp(260px, 20.5vw, 394px);
    padding: 0;
    font-size: clamp(48px, 4.64vw, 89px);
    line-height: .86;
    color: var(--cream);
  }
}

@media (max-width: 760px) {
  .search-overlay {
    min-height: 100dvh;
    overflow: hidden;
    background:
      linear-gradient(to bottom, #e7e9eb 0, #e7e9eb 63.5dvh, rgba(8, 18, 32, .76) 63.5dvh, rgba(8, 18, 32, .86) 100%),
      url("images/hero-photo-original.jpg") center bottom / cover no-repeat;
    backdrop-filter: blur(8px);
  }

  .search-overlay-pattern {
    top: 245px;
    right: -158px;
    width: 480px;
    height: 340px;
    opacity: .28;
    background-size: contain;
  }

  .search-overlay-header {
    height: 60px;
    margin: 10px 20px 0;
    align-items: flex-start;
  }

  .search-overlay-actions {
    position: absolute;
    top: 0;
    right: 52px;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 0;
  }

  .search-overlay-actions .favorite-link,
  .search-overlay-actions .phone-link,
  .search-overlay-actions .social-links {
    display: none;
  }

  .search-overlay-search-icon {
    width: 46px;
    height: 46px;
    background: #3b485c;
  }

  .search-overlay-search-icon img {
    width: 18px;
    height: 18px;
  }

  .search-close {
    top: 20px;
    right: 0;
    width: 32px;
    height: 32px;
    border: 0;
    color: transparent;
    font-size: 0;
  }

  .search-close::before,
  .search-close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 31px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transform-origin: center;
  }

  .search-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .search-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .search-overlay-content {
    width: calc(100vw - 40px);
    margin-top: 61px;
    transform: none;
  }

  .search-overlay h2 {
    width: min(260px, 100%);
    margin: 0 auto 38px;
    font-size: clamp(36px, 10.2vw, 39px);
    line-height: .82;
    letter-spacing: 0;
    text-align: center;
  }

  .search-overlay-form {
    grid-template-columns: minmax(0, 1fr) 98px;
    gap: 8px;
    align-items: center;
  }

  .search-overlay-form input,
  .search-overlay-form button {
    height: 37px;
  }

  .search-overlay-form input {
    padding: 0 37px 0 16px;
    background: #d8dde4;
    font-size: 10px;
    line-height: 1;
  }

  .search-overlay-form label span {
    right: 13px;
    width: 18px;
    height: 18px;
  }

  .search-overlay-form label span::before {
    left: 6px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: transparent;
  }

  .search-overlay-form label span::after {
    left: 4px;
    top: 12px;
    width: 10px;
    height: 5px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    border-radius: 0 0 8px 8px;
    background: transparent;
    transform: none;
  }

  .search-overlay-form button {
    width: 98px;
    padding: 0;
    font-size: 13px;
  }

  .search-suggestions {
    width: 100%;
    margin-top: 10px;
    gap: 6px 5px;
  }

  .search-suggestions a {
    min-height: 22px;
    padding: 0 11px;
    font-size: 10px;
    color: rgba(17, 34, 58, .74);
  }

  .search-suggestions a:nth-child(1) { order: 2; }
  .search-suggestions a:nth-child(2) { order: 3; }
  .search-suggestions a:nth-child(3) { order: 4; }
  .search-suggestions a:nth-child(4) { order: 5; }
  .search-suggestions a:nth-child(5) { order: 6; }
  .search-suggestions a:nth-child(6) { order: 1; }
}

@media (max-width: 374px) {
  .search-overlay-form {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .search-overlay-form button {
    width: 88px;
  }

  .search-overlay-form input {
    font-size: 9px;
    padding-left: 14px;
  }
}

@media (max-width: 760px) {
  .fit-modal {
    align-items: start;
    padding: 72px 20px 24px;
    overflow-y: auto;
  }

  .fit-modal-panel {
    width: 100%;
    max-height: none;
    padding: 44px 20px 28px;
    border-radius: 14px;
  }

  .fit-close {
    top: 18px;
    right: 18px;
  }

  .fit-modal h2 {
    margin-bottom: 34px;
    font-size: 28px;
  }

  .fit-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fit-field select,
  .fit-price input {
    height: 50px;
  }

  .fit-price {
    grid-template-columns: 1fr 1fr;
  }

  .fit-price-head {
    gap: 10px;
  }

  .fit-currency-control {
    gap: 5px;
  }

  .fit-currency-control button {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .fit-submit {
    width: 100%;
    min-width: 0;
    height: 56px;
    margin-top: 30px;
    font-size: 17px;
  }
}



@media (max-width: 760px) {
  .approach-section::before {
    left: -28vw;
    right: -28vw;
    top: -44px;
    height: 64px;
  }
}

.lifestyle::before {
  background: #e7e9eb;
}

@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden;
  }

  .menu-open .site-header {
    position: fixed;
    z-index: 90;
  }

  .menu-open .site-header .brand-logo::after {
    opacity: 0;
  }

  .menu-open .site-header .brand-emblem,
  .menu-open .site-header .brand-lockup {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(11%) sepia(28%) saturate(1517%) hue-rotate(178deg) brightness(93%) contrast(91%);
  }

  .menu-open .search-link {
    background: rgba(255,255,255,.72);
  }

  .menu-open .search-link img {
    filter: brightness(0) saturate(100%) invert(11%) sepia(28%) saturate(1517%) hue-rotate(178deg) brightness(93%) contrast(91%);
  }

  .menu-open .menu-toggle::before,
  .menu-open .menu-toggle span {
    background: var(--ink);
  }

  .mobile-menu {
    position: fixed;
    z-index: 80;
    inset: 0;
    top: 0;
    right: 0;
    width: 100%;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 118px 20px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 0;
    background:
      radial-gradient(circle at 100% 16%, rgba(255,255,255,.65), transparent 34%),
      url("images/lifestyle-circles.svg") right 88px / 270px auto repeat-y,
      #e7e9eb;
    color: var(--ink);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease;
  }

  .mobile-menu {
    background:
      url("images/mobile-menu-bg.svg") center top / 375px 718px no-repeat,
      #e7e9eb !important;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .mobile-menu-main {
    flex: 0 0 auto;
    display: grid;
    gap: 0;
  }

  .mobile-menu .mobile-menu-link {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-bottom: 1px solid rgba(17,34,58,.14);
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 400;
    line-height: .92;
    letter-spacing: 0;
    text-align: left;
    cursor: pointer;
  }

  .mobile-menu .mobile-menu-link::after {
    content: "";
    width: 9px;
    height: 9px;
    margin-right: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    opacity: .7;
    transition: transform .22s ease, opacity .22s ease;
  }

  .mobile-menu .mobile-menu-link:not(.mobile-sale-toggle)::after {
    opacity: .28;
  }

  .mobile-sale-open .mobile-sale-toggle {
    color: var(--gold);
  }

  .mobile-sale-open .mobile-sale-toggle::after {
    transform: rotate(45deg);
    opacity: 1;
  }

  .mobile-sale-panel {
    flex: 0 0 auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height .32s ease, opacity .22s ease, transform .22s ease, margin .22s ease;
  }

  .mobile-sale-open .mobile-sale-panel {
    max-height: 1800px;
    margin-top: -10px;
    opacity: 1;
    transform: none;
  }

  .mobile-sale-grid {
    display: grid;
    gap: 10px;
    padding: 18px 0 6px;
  }

  .mobile-sale-group {
    padding: 17px 18px 15px;
    border-radius: 18px;
    background: rgba(255,255,255,.68);
    box-shadow: 0 18px 46px rgba(18,35,59,.08);
    backdrop-filter: blur(16px);
  }

  .mobile-sale-group h2 {
    margin: 0 0 12px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    line-height: .94;
    letter-spacing: 0;
  }

  .mobile-sale-group h2 span {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0;
  }

  .mobile-menu .mobile-sale-group h2 .sale-menu-title-link {
    min-height: auto;
    padding: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    border-bottom: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
  }

  .mobile-menu .mobile-sale-group a {
    min-height: 31px;
    padding: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(17,34,58,.08);
    color: rgba(17,34,58,.78);
    font-size: 14px;
    line-height: 1.1;
  }

  .mobile-menu .mobile-sale-group a:last-child {
    border-bottom: 0;
  }

  .mobile-menu-footer {
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 12px;
    display: grid;
    gap: 16px;
  }

  .mobile-sale-open .mobile-menu-footer {
    margin-top: 6px;
  }

  .mobile-menu .mobile-menu-phone {
    min-height: 48px;
    padding: 0;
    border-bottom: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
  }

  .mobile-menu-socials {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-menu .mobile-menu-socials a {
    width: 46px;
    height: 46px;
    padding: 0;
    border-bottom: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    box-shadow: 0 12px 30px rgba(18,35,59,.08);
  }

  .mobile-menu-socials img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(11%) sepia(28%) saturate(1517%) hue-rotate(178deg) brightness(93%) contrast(91%);
  }
}

/* Footer parity with Figma node 42:53097 */
.site-footer {
  min-height: 742px;
  grid-template-columns: minmax(300px, 390px) minmax(150px, 190px) minmax(255px, 310px) minmax(220px, 270px) minmax(360px, 440px);
  gap: clamp(34px, 3.2vw, 62px);
  padding-top: 106px;
  background: #13233b;
  color: rgba(233, 227, 204, .68);
}

.site-footer::before {
  inset: 0 0 0 auto;
  width: min(860px, 48vw);
  opacity: .19;
  background-size: 238px 238px;
  background-position: right 0 top 0;
}

.site-footer::after {
  bottom: 74px;
  background: rgba(233, 227, 204, .22);
}

.footer-logo {
  margin-bottom: 62px;
}

.footer-contacts {
  gap: 6px;
  max-width: 310px;
}

.footer-contacts span {
  margin-top: 18px;
  color: rgba(233, 227, 204, .38);
  font-size: 14px;
  line-height: 1;
}

.footer-contacts span:first-child {
  margin-top: 0;
}

.footer-contacts a,
.footer-contacts p {
  margin: 0;
  color: var(--cream);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.16;
}

.footer-contacts strong {
  display: none;
}

.footer-socials {
  gap: 12px;
  margin-top: 66px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--cream);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: var(--gold);
}

.footer-socials img {
  width: 17px;
  height: 17px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(967%) hue-rotate(178deg) brightness(90%) contrast(94%);
}

.footer-column {
  gap: 19px;
  padding-top: 200px;
}

.footer-column h2,
.footer-form h2 {
  color: var(--cream);
  font-weight: 500;
}

.footer-column h2 {
  margin-bottom: 13px;
  font-size: 24px;
  line-height: 1.05;
}

.footer-column a {
  color: rgba(233, 227, 204, .44);
  font-size: 20px;
  line-height: 1.16;
}

.footer-column:first-of-type a {
  color: var(--cream);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold);
}

.footer-form {
  max-width: 430px;
  padding-top: 186px;
}

.footer-form h2 {
  max-width: 390px;
  margin-bottom: 26px;
  font-size: 25px;
  line-height: 1.05;
}

.footer-form input[type="email"] {
  height: 52px;
  padding: 0 30px;
  background: rgba(233, 227, 204, .18);
  color: var(--cream);
  font-size: 16px;
}

.footer-form input[type="email"]::placeholder {
  color: rgba(233, 227, 204, .55);
}

.footer-consent {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 13px;
  color: rgba(233, 227, 204, .36);
  font-size: 11px;
  line-height: 1.18;
}

.footer-consent input {
  width: 17px;
  height: 17px;
  margin: 0;
  appearance: none;
  border: 1px solid rgba(233, 227, 204, .35);
  border-radius: 4px;
  background: transparent;
}

.footer-consent input:checked {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 4px #13233b;
}

.footer-consent a {
  color: rgba(233, 227, 204, .58);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-form p {
  display: none;
}

.footer-form button {
  min-height: 44px;
  margin-top: 20px;
  padding: 0 28px;
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.footer-bottom {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  margin-top: 72px;
  padding-top: 24px;
  color: rgba(233, 227, 204, .44);
  font-size: 15px;
}

.footer-bottom a,
.footer-bottom span {
  color: rgba(233, 227, 204, .44);
}

.footer-bottom .footer-dev {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
letter-spacing: 0;
}

@media (max-width: 1360px) {
  .site-footer {
    min-height: auto;
    grid-template-columns: minmax(250px, 1fr) repeat(3, minmax(150px, 1fr));
  }

  .footer-column,
  .footer-form {
    padding-top: 70px;
  }

  .footer-form {
    grid-column: 2 / -1;
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-top: 58px;
  }

  .footer-logo {
    margin-bottom: 38px;
  }

  .footer-contacts a,
  .footer-contacts p {
    font-size: 21px;
  }

  .footer-socials {
    margin-top: 36px;
  }

  .footer-column,
  .footer-form {
    padding-top: 0;
  }

  .footer-form {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-column a {
    font-size: 18px;
  }

  .footer-form input[type="email"] {
    height: 48px;
  }
}

/* Footer subscription form: object-page compact variant */
.site-footer .footer-form {
  width: 100%;
  max-width: 430px;
  padding-top: 98px;
  justify-self: start;
}

.site-footer .footer-form h2 {
  max-width: 330px;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.04;
}

.site-footer .footer-form input[type="email"] {
  width: 100%;
  height: 32px;
  padding: 0 18px;
  background: rgba(233, 227, 204, .14);
  color: var(--cream);
  font-size: 13px;
}

.site-footer .footer-form input[type="email"]::placeholder {
  color: rgba(233, 227, 204, .48);
}

.site-footer .footer-consent {
  max-width: 360px;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 10px;
  margin-top: 12px;
  color: rgba(233, 227, 204, .42);
  font-size: 11px;
  line-height: 1.2;
}

.site-footer .footer-form .footer-consent input[type="checkbox"] {
  width: 17px;
  min-width: 17px;
  max-width: 17px;
  height: 17px;
  min-height: 17px;
  max-height: 17px;
}

.site-footer .footer-form button {
  min-height: 36px;
  margin-top: 18px;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1360px) {
  .site-footer .footer-form {
    max-width: 560px;
    padding-top: 10px;
  }
}

@media (max-width: 900px) {
  .site-footer .footer-form {
    max-width: 560px;
    padding-top: 4px;
  }
}

@media (max-width: 520px) {
  .site-footer .footer-form {
    max-width: none;
  }
}

/* Exclusive offers: final Figma-aligned layout */
.exclusive {
  position: relative;
  min-height: clamp(980px, 72.9167vw, 1400px);
  padding-bottom: clamp(118px, 9.375vw, 180px);
  background:
    radial-gradient(circle at 68% 16%, rgba(255,255,255,.95) 0 18%, rgba(244,245,244,.55) 46%, transparent 70%),
    #fbfbf8;
  overflow: hidden;
}
.exclusive::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(58vw, 1114px);
  pointer-events: none;
  opacity: .58;
  background-image:
    radial-gradient(circle at 100% 100%, transparent 0 80px, rgba(18,35,59,.10) 81px 83px, transparent 84px),
    radial-gradient(circle at 0 100%, transparent 0 80px, rgba(18,35,59,.08) 81px 83px, transparent 84px);
  background-size: 240px 240px;
  background-position: -76px 142px;
}
.exclusive .section-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 600px) minmax(340px, 510px);
  column-gap: clamp(140px, 16vw, 310px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(112px, 8.6vw, 166px) 60px clamp(56px, 4.375vw, 84px);
}
.exclusive .section-head h2 {
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 4.55vw, 87px);
  line-height: .84;
  letter-spacing: 0;
}
.exclusive .section-head h2 span + span {
  align-self: flex-end;
  margin-top: -3px;
}
.exclusive .section-head p {
  max-width: 496px;
  margin: .2em 0 0;
  color: var(--ink);
  font-size: clamp(15px, 1.05vw, 20px);
  line-height: 1.28;
}
.exclusive-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(96px, 7.4vw, 142px);
  width: min(100%, 1440px);
  max-width: none;
  margin: 0 auto;
  padding: 0 60px;
}
.exclusive-card {
  position: relative;
  justify-self: start;
  margin-left: clamp(122px, 10.2vw, 196px);
  width: min(55.21vw, 1060px);
  min-width: 760px;
  min-height: clamp(344px, 25.885vw, 497px);
  border-radius: 8px;
  overflow: hidden;
  background: #07111f;
  color: #fff;
  box-shadow: 0 26px 74px rgba(18,35,59,.18);
}
.exclusive-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("images/hero-card-original.jpg") center / cover no-repeat;
  filter: saturate(.92) contrast(.98);
}
.exclusive-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,15,27,.83) 0%, rgba(6,15,27,.54) 38%, rgba(6,15,27,.10) 61%, rgba(6,15,27,.56) 100%),
    linear-gradient(180deg, rgba(6,15,27,.02) 0%, rgba(6,15,27,.24) 54%, rgba(6,15,27,.86) 100%);
}
.exclusive-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  right: clamp(42px, 4.15vw, 80px);
  width: clamp(148px, 12.4vw, 238px);
  height: clamp(148px, 12.4vw, 238px);
  border-radius: 50%;
  border: 1px solid rgba(233,227,204,.42);
  background: url("images/hero-card-original.jpg") 72% 50% / 280% auto no-repeat;
  box-shadow: inset 0 0 46px rgba(0,0,0,.28), 0 18px 46px rgba(0,0,0,.22);
}
.exclusive .badge {
  position: absolute;
  z-index: 0;
  left: clamp(20px, 1.75vw, 34px);
  top: clamp(20px, 1.75vw, 34px);
  padding: 8px 15px;
  border-radius: 999px;
  background: #0b392c;
  color: #fff;
  font-size: clamp(10px, .68vw, 13px);
  line-height: 1;
}
.exclusive-body {
  position: absolute;
  z-index: 3;
  left: clamp(26px, 2.45vw, 47px);
  right: clamp(26px, 2.45vw, 47px);
  bottom: clamp(24px, 2.35vw, 45px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 32px;
}
.exclusive-body strong {
  grid-column: 1;
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.08vw, 40px);
  font-weight: 400;
  line-height: .95;
letter-spacing: 0;
}
.exclusive-body p {
  grid-column: 1;
  max-width: 510px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(12px, .83vw, 16px);
  line-height: 1.28;
}
.exclusive .chips {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 0;
}
.exclusive .chips span {
  min-height: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: #fff;
  font-size: clamp(10px, .68vw, 13px);
  line-height: 1;
}
.exclusive .pill-link {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  min-width: clamp(152px, 11.56vw, 222px);
  min-height: clamp(40px, 2.82vw, 54px);
  padding: 0 24px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: clamp(11px, .83vw, 16px);
  font-weight: 600;
}
.club-card {
  position: relative;
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(320px, 420px);
  column-gap: clamp(54px, 5.2vw, 100px);
  width: min(72.4vw, 1390px);
  min-width: 920px;
  min-height: clamp(280px, 21.1vw, 405px);
  padding: clamp(42px, 3.1vw, 60px) clamp(50px, 4vw, 77px);
  border-radius: 8px;
  overflow: hidden;
  background: #0b3b2e;
  color: #fff;
  box-shadow: 0 28px 86px rgba(11,57,44,.20);
}
.club-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    radial-gradient(circle at 100% 100%, transparent 0 80px, rgba(233,227,204,.28) 81px 83px, transparent 84px),
    radial-gradient(circle at 0 100%, transparent 0 80px, rgba(233,227,204,.18) 81px 83px, transparent 84px);
  background-size: 240px 240px;
  background-position: 52% -26px;
}
.club-card > * {
  position: relative;
  z-index: 1;
}
.club-card h3 {
  grid-column: 1;
  margin: 0 0 20px;
  max-width: 430px;
  font-family: var(--font-display);
  font-size: clamp(34px, 2.55vw, 49px);
  font-weight: 400;
  line-height: .84;
  letter-spacing: 0;
}
.club-card p {
  grid-column: 1;
  max-width: 430px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.82);
  font-size: clamp(12px, .83vw, 16px);
  line-height: 1.28;
}
.club-card ul {
  grid-column: 1;
  margin: 0;
  padding-left: 17px;
}
.club-card li {
  color: rgba(255,255,255,.82);
  font-size: clamp(12px, .83vw, 16px);
  line-height: 1.28;
}
.club-card label {
  grid-column: 2;
  display: block;
  margin: 0 0 15px;
  color: rgba(255,255,255,.58);
  font-size: clamp(10px, .68vw, 13px);
}
.club-card .club-form-note {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  max-width: 330px;
  margin: 3px 0 16px;
  color: rgba(255,255,255,.82);
  font-size: clamp(12px, .83vw, 16px);
  line-height: 1.28;
}
.club-card .club-form-note + label {
  margin-top: 0;
}
.club-card .club-label-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.club-card input {
  width: 100%;
  height: clamp(34px, 2.5vw, 48px);
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(236,242,238,.94);
  color: var(--ink);
  outline: none;
}
.club-card input::placeholder {
  color: rgba(18,35,59,.55);
}
.club-card button {
  grid-column: 2;
  justify-self: start;
  min-height: clamp(36px, 2.5vw, 48px);
  padding: 0 clamp(18px, 1.56vw, 30px);
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .exclusive .section-head {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .exclusive .section-head p {
    max-width: 620px;
  }
  .exclusive-card,
  .club-card {
    width: min(100%, 900px);
    min-width: 0;
  }
  .exclusive-card {
    justify-self: center;
    margin-left: 0;
  }
  .club-card {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .club-card .club-form-note {
    grid-column: 1;
    grid-row: auto;
    max-width: 430px;
    margin: 0;
  }
  .club-card label,
  .club-card button {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .exclusive {
    min-height: auto;
    padding-bottom: 76px;
  }
  .exclusive::after {
    width: 100%;
    background-size: 186px 186px;
    background-position: -86px 90px;
  }
  .exclusive .section-head {
    padding: 68px 20px 32px;
    row-gap: 18px;
  }
  .exclusive .section-head h2 {
    width: 100%;
    align-items: center;
    font-size: 38px;
    line-height: .86;
    text-align: center;
  }
  .exclusive .section-head h2 span + span {
    align-self: center;
  }
  .exclusive .section-head p {
    max-width: 330px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.18;
    text-align: center;
  }
  .exclusive-wrap {
    gap: 30px;
    padding: 0 13px;
  }
  .exclusive-card {
    width: 100%;
    min-height: 422px;
  }
  .exclusive-card::after {
    top: 18px;
    right: 18px;
    width: 112px;
    height: 112px;
  }
  .exclusive-body {
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: block;
  }
  .exclusive-body strong {
    font-size: 28px;
  }
  .exclusive .pill-link {
    margin-top: 18px;
  }
  .club-card {
    width: 100%;
    min-width: 0;
    min-height: 649px;
    padding: 28px 18px 22px;
    grid-template-columns: 1fr;
  }
  .club-card h3 {
    font-size: 31px;
  }
  .club-card label:first-of-type {
    margin-top: 0;
  }
}

/* Exclusive offers rebuilt from exclusive-section.html, Figma node 42:47724 */
.exclusive.exclusive-offers {
  --exclusive-bg: #fbfbf8;
  position: relative;
  z-index: 3;
  isolation: isolate;
  min-height: 2113px;
  padding: 117px 0 208px;
  background: var(--exclusive-bg);
  color: var(--ink, #13233b);
  overflow: hidden;
}
.exclusive.exclusive-offers::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  height: 320px;
  background: var(--exclusive-bg);
  opacity: 1;
  pointer-events: none;
}
.exclusive.exclusive-offers::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -172px;
  width: 2260px;
  height: 260px;
  border-radius: 50% 50% 0 0;
  background: #13233b;
  transform: translateX(-50%);
  pointer-events: none;
}
.exclusive-offers__pattern {
  position: absolute;
  z-index: 2;
  left: -22px;
  top: 0;
  bottom: 0;
  width: 626px;
  opacity: .5;
  background: url("images/exclusive-pattern-light.svg") left -52px top -82px / 580px auto repeat-y;
  pointer-events: none;
}
.exclusive-offers__inner {
  position: relative;
  z-index: 3;
}
.exclusive-offers__head {
  width: min(calc(100% - 184px), 1736px);
  margin: 0 auto 124px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 473px);
  column-gap: clamp(40px, calc(100% - 1373px), 227px);
  justify-content: start;
  align-items: start;
}
.exclusive-offers__title {
  max-width: 900px;
  margin: 0;
  color: var(--ink, #13233b);
  font-family: var(--font-display, serif);
  font-size: 90px;
  font-weight: 400;
  line-height: .72;
  letter-spacing: 0;
}
.exclusive-offers__title span {
  display: block;
  margin-left: 275px;
}
.exclusive-offers__intro {
  min-width: 0;
  max-width: 473px;
  padding-top: 2px;
  color: var(--ink, #13233b);
}
.exclusive-offers__intro strong {
  display: block;
  margin: 0 0 25px;
  font-family: var(--font-body, sans-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
}
.exclusive-offers__intro p {
  margin: 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.18;
}
.exclusive-offers__slider-area {
  position: relative;
  width: 1380px;
  max-width: calc(100% - 40px);
  margin: 0 auto 233px;
}
.exclusive-offers__slider {
  position: relative;
  width: 1058px;
  height: 705px;
  border-radius: 20px;
  overflow: visible;
  background: #07111f;
  box-shadow: none;
}
.exclusive-slide {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.exclusive-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.exclusive-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}
.exclusive-slide::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(6,15,27,.18) 0%, rgba(6,15,27,.04) 47%, rgba(6,15,27,.34) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 33%, rgba(0,0,0,.84) 100%);
  pointer-events: none;
}
.exclusive-slide__badge {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 27px;
  width: 260px;
  height: 57px;
  padding: 0 32px 0 50px;
  border-radius: 0 80px 80px 0;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #0b3b2e;
  color: #e9e3cc;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.exclusive-slide__badge span {
  font-size: 27px;
  line-height: 1;
}
.exclusive-slide__zoom {
  position: absolute;
  z-index: 3;
  top: -35px;
  right: 56px;
  width: 255px;
  height: 371px;
  border: 3px solid var(--gold, #bea575);
  border-radius: 3000px;
  overflow: hidden;
  background: #20120d;
}
.exclusive-slide__zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 55%;
  transform: scale(1.42);
}
.exclusive-slide__content {
  position: absolute;
  z-index: 3;
  left: 46px;
  right: 360px;
  bottom: 49px;
  color: #e9e3cc;
}
.exclusive-slide__price {
  margin: 0 0 10px;
  color: #e9e3cc;
  font-size: 59px;
  font-weight: 400;
  line-height: 1;
}
.exclusive-slide__title {
  margin: 0 0 7px;
  color: #bea575;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.12;
}
.exclusive-slide__subtitle {
  margin: 0 0 35px;
  color: rgba(233,227,204,.63);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
}
.exclusive-slide__tags {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.exclusive-slide__tags li {
  min-height: 32px;
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.exclusive-slide__cta {
  position: absolute;
  z-index: 4;
  right: 48px;
  bottom: 43px;
  width: 297px;
  height: 70px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold, #bea575);
  color: #fff;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
.exclusive-offers__nav {
  position: absolute;
  z-index: 3;
  top: 594px;
  right: -184px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--gold, #bea575);
}
.exclusive-offers__nav-btn {
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: currentColor;
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
}
.exclusive-offers__counter {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(190,165,117,.46);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold, #bea575);
  font-size: 32px;
  line-height: 1;
}
.club-block {
  position: relative;
  z-index: 2;
  width: 1380px;
  max-width: calc(100% - 40px);
  height: auto;
  min-height: 595px;
  margin: 0 auto;
  padding: 58px 39px 50px 46px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 620px) 629px;
  column-gap: 67px;
  background: #0b3b2e;
  color: #fff;
}
.club-block::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .32;
  background: url("images/club-block-pattern.svg") center / cover no-repeat;
  pointer-events: none;
}
.club-block__copy,
.club-block__form {
  position: relative;
  z-index: 1;
}
.club-block__copy h3 {
  max-width: 700px;
  margin: 0 0 28px;
  color: #fff;
  font-family: var(--font-display, serif);
  font-size: 48px;
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
}
.club-block__copy p {
  max-width: 660px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.82);
  font-size: 25px;
  line-height: 1.22;
}
.club-block__copy p strong {
  font-weight: 700;
}
.club-block__benefits-title {
  margin-bottom: 26px !important;
  font-weight: 700;
}
.club-block__copy ul {
  max-width: 720px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.club-block__copy li {
  position: relative;
  margin: 0 0 22px;
  padding-left: 29px;
  color: rgba(255,255,255,.82);
  font-size: 25px;
  line-height: 1.2;
}
.club-block__copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold, #bea575);
  font-size: 20px;
  font-weight: 700;
}
.club-block__form {
  align-self: start;
  min-height: 494px;
  padding: 40px 32px 39px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(126,165,143,.60), rgba(69,104,88,.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(22px);
}
.club-block__form p {
  max-width: 520px;
  margin: 0 0 31px;
  color: rgba(255,255,255,.86);
  font-size: 29px;
  line-height: 1.14;
}
.club-block__form label {
  display: block;
  margin: 0 0 15px;
}
.club-block__form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.club-block__form input {
  width: 100%;
  height: 63px;
  border: 0;
  border-radius: 999px;
  padding: 0 41px;
  background: #e7e9eb;
  color: var(--ink, #13233b);
  font-family: var(--font-body, sans-serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
}
.club-block__form input::placeholder {
  color: rgba(19,35,59,.42);
  font-family: var(--font-body, sans-serif);
  font-weight: 400;
  letter-spacing: 0;
}
.club-block__form small {
  display: block;
  max-width: 481px;
  margin: 26px 0 25px 20px;
  color: rgba(255,255,255,.54);
  font-size: 14px;
  line-height: 1.18;
}
.club-block__form button {
  min-width: 263px;
  height: 70px;
  border: 0;
  border-radius: 999px;
  padding: 0 34px;
  background: var(--gold, #bea575);
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1760px) {
  .exclusive-offers__nav {
    right: 0;
  }
}

@media (max-width: 1460px) {
  .exclusive.exclusive-offers {
    min-height: auto;
    padding-top: 86px;
  }
  .exclusive-offers__head {
    width: min(calc(100% - 80px), 1180px);
    grid-template-columns: 1fr minmax(360px, 470px);
    column-gap: 56px;
  }
  .exclusive-offers__title {
    font-size: clamp(64px, 6.2vw, 90px);
  }
  .exclusive-offers__title span {
    margin-left: clamp(90px, 13vw, 220px);
  }
  .exclusive-offers__slider-area {
    width: min(calc(100% - 80px), 1180px);
  }
  .exclusive-offers__slider {
    width: min(100%, 1058px);
    height: auto;
    aspect-ratio: 1058 / 705;
  }
  .exclusive-offers__nav {
    position: static;
    justify-content: flex-end;
    margin-top: 28px;
  }
  .club-block {
    width: min(calc(100% - 80px), 1180px);
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    column-gap: 42px;
  }
}

@media (max-width: 1180px) {
  .exclusive-offers__head {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }
  .exclusive-offers__intro {
    max-width: 760px;
  }
  .club-block {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }
  .club-block__form {
    width: min(100%, 629px);
  }
}

@media (max-width: 760px) {
  .exclusive.exclusive-offers {
    padding: 68px 0 92px;
  }
  .exclusive.exclusive-offers::after {
    bottom: -118px;
    width: 840px;
    height: 170px;
  }
  .exclusive-offers__pattern {
    width: 100%;
    opacity: .20;
    background-size: 360px auto;
    background-position: -138px 0;
  }
  .exclusive-offers__head {
    width: calc(100% - 40px);
    margin-bottom: 34px;
    row-gap: 18px;
  }
  .exclusive-offers__title {
    width: 100%;
    font-size: 43px;
    line-height: .86;
    text-align: center;
    letter-spacing: 0;
  }
  .exclusive-offers__title span {
    margin-left: 0;
  }
  .exclusive-offers__intro {
    max-width: 335px;
    margin: 0 auto;
    text-align: center;
  }
  .exclusive-offers__intro strong {
    margin-bottom: 13px;
    font-size: 17px;
    line-height: 1.16;
  }
  .exclusive-offers__intro p {
    font-size: 13px;
    line-height: 1.18;
  }
  .exclusive-offers__slider-area {
    width: calc(100% - 26px);
    margin-bottom: 58px;
  }
  .exclusive-offers__slider {
    width: 100%;
    min-height: 512px;
    aspect-ratio: auto;
    border-radius: 14px;
  }
  .exclusive-slide__badge {
    top: 14px;
    min-width: 142px;
    height: 38px;
    padding: 0 20px;
    gap: 8px;
    font-size: 17px;
  }
  .exclusive-slide__badge span {
    font-size: 17px;
  }
  .exclusive-slide__zoom {
    top: 14px;
    right: 14px;
    width: 112px;
    height: 164px;
    border-width: 2px;
  }
  .exclusive-slide__content {
    left: 18px;
    right: 18px;
    bottom: 90px;
  }
  .exclusive-slide__price {
    font-size: 31px;
  }
  .exclusive-slide__title {
    font-size: 18px;
  }
  .exclusive-slide__subtitle {
    margin-bottom: 17px;
    font-size: 13px;
  }
  .exclusive-slide__tags {
    gap: 6px;
  }
  .exclusive-slide__tags li {
    min-height: 26px;
    padding: 6px 10px;
    font-size: 11px;
  }
  .exclusive-slide__cta {
    left: 18px;
    right: auto;
    bottom: 22px;
    width: auto;
    height: 46px;
    padding: 0 22px;
    font-size: 17px;
  }
  .exclusive-offers__nav {
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
  }
  .exclusive-offers__counter {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }
  .club-block {
    width: calc(100% - 26px);
    min-height: 0;
    padding: 28px 18px 22px;
    border-radius: 14px;
  }
  .club-block::before {
    background-size: 760px auto;
    background-position: right -330px top -70px;
  }
  .club-block__copy h3 {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: .96;
  }
  .club-block__copy p,
  .club-block__copy li {
    font-size: 16px;
  }
  .club-block__copy li {
    margin-bottom: 13px;
    padding-left: 22px;
  }
  .club-block__form {
    width: 100%;
    min-height: 0;
    padding: 22px 14px 18px;
    border-radius: 14px;
  }
  .club-block__form p {
    margin-bottom: 18px;
    font-size: 18px;
  }
  .club-block__form input {
    height: 46px;
    padding: 0 20px;
    font-size: 16px;
  }
  .club-block__form small {
    margin: 14px 0 16px;
    font-size: 11px;
  }
  .club-block__form button {
    min-width: 184px;
    height: 46px;
    font-size: 18px;
  }
}
/* Mobile pass against Figma frame 88:28370 */
@media (max-width: 760px) {
  .hero-media {
    background-image: url("images/hero-photo-mobile.jpg");
    background-position: center center;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(12, 26, 45, .16), rgba(12, 26, 45, .04) 45%, rgba(12, 26, 45, .28)),
      linear-gradient(90deg, rgba(12, 26, 45, .26), rgba(12, 26, 45, .04) 52%, rgba(12, 26, 45, .26));
  }

  .hero-shade {
    opacity: calc(var(--hero-progress) * .46);
  }

  .club-block {
    height: auto;
    min-height: 0;
    overflow: visible;
    row-gap: 22px;
  }

  .club-block__copy,
  .club-block__form {
    min-width: 0;
  }

  .club-block__form {
    align-self: stretch;
    box-sizing: border-box;
  }

  .approach-section {
    min-height: auto;
    padding: 48px 20px 58px;
    gap: 26px;
  }

  .approach p + p {
    margin-top: 20px;
  }

  .facts {
    gap: 22px 34px;
    margin: 24px 0 24px;
  }

  .portrait-card {
    width: 100%;
    height: 338px;
    min-height: 338px;
    margin: 2px 0 0;
    overflow: visible;
  }

  .portrait-lettermark {
    width: 300px;
    max-width: none;
    left: 50%;
    top: 53%;
    --portrait-lettermark-y: -50%;
  }

  .portrait-shape {
    width: 168px;
    height: 244px;
    aspect-ratio: auto;
    border-radius: 50% / 46%;
    background: linear-gradient(180deg, #a95b25 0%, #844018 100%);
    filter: drop-shadow(0 22px 42px rgba(0, 0, 0, .26));
    transform: none;
  }

  .portrait-shape img {
    opacity: 0;
  }

  .portrait-shape::after {
    border-width: 3px;
  }

  .portrait-play {
    top: 50%;
    width: 54px;
    height: 54px;
    transform: translate(-50%, -50%);
  }

  .platforms {
    min-height: auto;
    padding-bottom: 82px;
    overflow: hidden;
  }

  .platform-cloud {
    display: grid;
    grid-template-columns: repeat(3, 96px);
    justify-content: center;
    align-items: start;
    width: 100%;
    min-height: 302px;
    padding: 6px 20px 36px;
    gap: 12px 14px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .platform-cloud a,
  .platform-cloud .platform-card:nth-child(2n),
  .platform-cloud .platform-card:nth-child(3n) {
    width: 96px;
    height: 132px;
    flex: none;
    margin-top: 0;
  }

  .platform-cloud .platform-card:nth-child(2),
  .platform-cloud .platform-card:nth-child(5) {
    margin-top: 36px;
  }

  .platform-logo-map { width: 34px; }
  .platform-logo-avito { width: 74px; }
  .platform-logo-domclick { width: 50px; }
  .platform-logo-house { width: 66px; }
  .platform-logo-m2 { width: 54px; }
  .platform-logo-homehunter { width: 68px; }

  .site-footer {
    min-height: auto;
    padding: 48px 20px 32px;
    gap: 24px;
  }

  .site-footer::after {
    bottom: 92px;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-contacts,
  .footer-column,
  .site-footer .footer-form {
    max-width: none;
  }

  .footer-column {
    gap: 9px;
  }

  .footer-socials a[aria-label="VK"] {
    position: relative;
  }

  .footer-socials a[aria-label="VK"]::before {
    content: "vk";
    color: var(--navy);
    font: 700 10px/1 var(--font-body);
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .footer-socials a[aria-label="VK"] img {
    display: none;
  }
}

/* Mobile search overlay, Figma frame 88:19759 */
@media (max-width: 760px) {
  .search-overlay {
    background:
      linear-gradient(to bottom, #e7e9eb 0, #e7e9eb 63.65dvh, #0d1d33 63.65dvh, #0d1d33 100%);
  }

  .search-overlay::before {
    content: "";
    position: absolute;
    top: 99px;
    right: -20px;
    width: 34px;
    height: 34px;
    border: 4px solid rgba(17, 34, 58, .05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
  }

  .search-overlay::after {
    content: "";
    position: absolute;
    z-index: 0;
    left: -18px;
    right: -18px;
    top: 63.65dvh;
    bottom: -18px;
    background:
      linear-gradient(180deg, rgba(8, 18, 32, .42), rgba(8, 18, 32, .84)),
      url("images/hero-photo-mobile.jpg") center bottom / cover no-repeat;
    filter: blur(10px);
    transform: scale(1.04);
    transform-origin: center top;
    pointer-events: none;
  }

  .search-overlay-pattern {
    z-index: 1;
    top: 326px;
    right: -88px;
    width: 300px;
    height: 232px;
    opacity: .42;
    background-position: right top;
    background-size: contain;
  }

  .search-overlay-content {
    z-index: 2;
    margin-top: 67px;
  }

  .search-overlay-header {
    z-index: 3;
  }

  .search-overlay h2 {
    margin-bottom: 37px;
    font-size: 39px;
    line-height: .78;
    letter-spacing: 0;
  }

  .search-overlay-form {
    grid-template-columns: minmax(0, 1fr) 98px;
    gap: 8px;
  }

  .search-overlay-form input,
  .search-overlay-form button {
    height: 37px;
  }

  .search-overlay-form input {
    padding-left: 15px;
    padding-right: 42px;
    background: #d8dde4;
    font-size: 10px;
  }

  .search-overlay-form input::placeholder {
    color: rgba(17, 34, 58, .56);
  }

  .search-overlay-form label span {
    right: 14px;
  }

  .search-overlay-form button {
    font-size: 13px;
    font-weight: 600;
  }

  .search-suggestions {
    margin-top: 16px;
    gap: 6px 5px;
  }

  .search-suggestions a {
    min-height: 20px;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: 0;
  }
}

/* Platforms mobile parity, Figma node 88:31082 */
.platform-mobile-break {
  display: none;
}

@media (max-width: 760px) {
  .platforms.section-light {
    height: 650px;
    min-height: 650px;
    padding: 0;
    overflow: hidden;
    background: #fff;
  }

  .platforms::before {
    inset: 0 -390px auto auto;
    width: 625px;
    height: 650px;
    opacity: 1;
    background: url("images/platform-cloud.svg") right top / 625px auto no-repeat;
  }

  .platforms::after {
    left: 50%;
    right: auto;
    bottom: -141px;
    width: 649px;
    height: 173px;
    transform: translateX(-50%);
    background: #e7e9eb;
    border-radius: 50%;
  }

  .platforms .section-head {
    position: static;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .platforms .section-head h2 {
    position: absolute;
    z-index: 2;
    left: 20px;
    top: 57px;
    width: 335px;
    margin: 0;
    color: #13233b;
    font-size: 40px;
    font-weight: 400;
    line-height: .75;
    letter-spacing: 0;
  }

  .platforms .section-head p {
    position: absolute;
    z-index: 2;
    left: 20px;
    top: 122px;
    width: 335px;
    max-width: calc(100vw - 40px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    line-height: 1;
  }

  .platform-mobile-break {
    display: block;
  }

  .platforms .section-head p strong {
    width: 335px;
    max-width: calc(100vw - 40px);
    color: #13233b;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .platforms .section-head p span {
    width: 337px;
    max-width: calc(100vw - 40px);
    color: rgba(19, 35, 59, .8);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .platform-cloud {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 650px;
    min-height: 650px;
    margin: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .platform-cloud .platform-card,
  .platform-cloud .platform-card:nth-child(2n),
  .platform-cloud .platform-card:nth-child(3n) {
    position: absolute;
    width: 100.337px;
    height: 138.53px;
    min-width: 0;
    flex: none;
    margin: 0;
    border-radius: 300px;
    transform: none;
    filter: none;
  }

  .platform-cloud .platform-card:nth-child(1) {
    left: 20px;
    top: 253px;
    margin-top: 0;
  }

  .platform-cloud .platform-card:nth-child(2) {
    left: calc(50% - 50.17px);
    top: 297px;
    margin-top: 0;
  }

  .platform-cloud .platform-card:nth-child(3) {
    left: calc(100% - 120.34px);
    top: 253px;
    margin-top: 0;
  }

  .platform-cloud .platform-card:nth-child(4) {
    left: 20px;
    top: 398px;
    margin-top: 0;
  }

  .platform-cloud .platform-card:nth-child(5) {
    left: calc(50% - 50.17px);
    top: 442px;
    margin-top: 0;
  }

  .platform-cloud .platform-card:nth-child(6) {
    left: calc(100% - 120.34px);
    top: 398px;
    margin-top: 0;
  }

  .platform-card::before {
    background: #e7e9eb;
  }

  .platform-logo-map {
    width: 34px;
  }

  .platform-logo-avito {
    width: 74px;
  }

  .platform-logo-domclick {
    width: 50px;
  }

  .platform-logo-house {
    width: 66px;
  }

  .platform-logo-m2 {
    width: 54px;
  }

  .platform-logo-homehunter {
    width: 68px;
  }
}

/* Approach section parity, Figma nodes 42:48737 and 88:31059 */
.approach-section {
  z-index: 4;
  min-height: 1200px;
  grid-template-columns: 714px minmax(560px, 1fr);
  gap: clamp(72px, 7.2vw, 138px);
  padding: 105px 90px 0;
  background-color: #12233b;
  background-image: url("images/approach-floral-pattern.png");
  background-repeat: no-repeat;
  background-position: right -126px top -3px;
  background-size: 845px auto;
}

.exclusive.exclusive-offers {
  overflow: visible;
}

.exclusive.exclusive-offers::after {
  z-index: 4;
}

.approach-section::before {
  left: 50%;
  right: auto;
  top: -96px;
  bottom: auto;
  width: max(3600px, 220vw);
  height: 142px;
  background: #12233b;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: translateX(-50%);
  z-index: 3;
}

.approach-section::after {
  opacity: .18;
}

.approach-copy {
  max-width: 714px;
}

.approach h2 {
  margin: 0 0 46px;
  font-size: 84px;
  font-weight: 400;
  line-height: .82;
  letter-spacing: 0;
}

.approach p {
  width: 714px;
  max-width: 100%;
  margin: 0;
  color: #e9e3cc;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.approach p + p {
  width: 714px;
  margin-top: 24px;
  color: rgba(233, 227, 204, .55);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
}

.facts {
  width: 630px;
  grid-template-columns: 210px 210px;
  gap: 38px 210px;
  margin: 110px 0 72px;
}

.facts strong {
  font-size: 84px;
  line-height: .9;
  font-weight: 400;
  letter-spacing: 0;
}

.facts span {
  margin-top: 12px;
  color: rgba(233, 227, 204, .58);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.08;
}

.approach-section .gold-link {
  width: 221px;
  min-height: 70px;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
}

.portrait-card {
  width: min(868px, 45.2vw);
  min-height: 850px;
  margin-top: 52px;
  margin-right: -26px;
}

.portrait-shape {
  width: 484px;
  aspect-ratio: 484 / 705;
  transform: translateY(28px);
  filter: none;
}

.portrait-lettermark {
  width: 596px;
  height: 740px;
  object-fit: contain;
  --portrait-lettermark-y: calc(-50% - 58px);
}

.portrait-play {
  width: 72px;
  height: 72px;
  transform: translate(-50%, calc(-50% + 28px));
}

@media (max-width: 1600px) {
  .approach-section {
    min-height: 900px;
    grid-template-columns: minmax(520px, 610px) minmax(430px, 1fr);
    gap: clamp(42px, 5.6vw, 90px);
    padding: 78px clamp(52px, 4.6875vw, 90px) 0;
    background-position: right -115px top 0;
    background-size: 700px auto;
  }

  .approach h2 {
    font-size: clamp(64px, 4.375vw, 70px);
    margin-bottom: 38px;
  }

  .approach p {
    width: 610px;
    font-size: clamp(18px, 1.25vw, 20px);
  }

  .approach p + p {
    width: 610px;
    margin-top: 20px;
    font-size: clamp(16px, 1.04vw, 18px);
  }

  .facts {
    width: 540px;
    grid-template-columns: 185px 185px;
    gap: 32px 170px;
    margin: 84px 0 58px;
  }

  .facts strong {
    font-size: clamp(60px, 4.2vw, 68px);
  }

  .facts span {
    font-size: clamp(17px, 1.1vw, 19px);
  }

  .approach-section .gold-link {
    width: 186px;
    min-height: 58px;
    font-size: 18px;
  }

  .portrait-card {
    width: min(680px, 42vw);
    min-height: 690px;
    margin-top: 46px;
  }

  .portrait-shape {
    width: clamp(330px, 25.2vw, 410px);
  }

  .portrait-lettermark {
    width: clamp(405px, 31vw, 505px);
    height: clamp(503px, 38.54vw, 627px);
    --portrait-lettermark-y: calc(-50% - 44px);
  }

  .portrait-play {
    width: clamp(56px, 3.75vw, 60px);
    height: clamp(56px, 3.75vw, 60px);
  }
}

@media (max-width: 760px) {
  .approach-section {
    display: flex;
    flex-direction: column;
    min-height: 1129px;
    padding: 50px 20px 55px;
    gap: 0;
    overflow: visible;
    background-color: #12233b;
    background-image: url("images/approach-mobile-bg.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
  }

  .approach-section::before {
    left: 50%;
    right: auto;
    top: -84px;
    width: 640px;
    height: 124px;
    transform: translateX(-50%);
    background: #12233b;
  }

  .approach-copy {
    display: contents;
  }

  .approach h2 {
    order: 1;
    width: 335px;
    margin: 0 0 37px;
    color: #bea575;
    font-size: 40px;
    font-weight: 400;
    line-height: .75;
    letter-spacing: 0;
  }

  .approach h2 span + span {
    color: #e9e3cc;
  }

  .approach p {
    order: 2;
    width: 335px;
    color: #e9e3cc;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .approach p + p {
    order: 3;
    width: 337px;
    margin-top: 10px;
    color: rgba(233, 227, 204, .72);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.1;
  }

  .portrait-card {
    order: 4;
    align-self: center;
    width: 335px;
    height: 378px;
    min-height: 378px;
    margin: 40px 0 0;
  }

  .portrait-shape {
    width: 236px;
    height: 344px;
    aspect-ratio: auto;
    background: transparent;
    transform: translateY(0);
    filter: none;
  }

  .portrait-shape img {
    opacity: 1;
  }

  .portrait-lettermark {
    width: 300px;
    height: 373px;
    --portrait-lettermark-y: -50%;
  }

  .portrait-play {
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
  }

  .portrait-play::before {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 18px;
  }

  .facts {
    order: 5;
    width: 335px;
    grid-template-columns: 1fr 1fr;
    gap: 28px 34px;
    margin: 24px 0 31px;
  }

  .facts strong {
    font-size: 40px;
    line-height: .9;
    letter-spacing: 0;
  }

  .facts span {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.1;
  }

  .approach-section .gold-link {
    order: 6;
    width: 149px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 16px;
  }
}

/* Figma home refinements: section curves, pattern fades, exclusive slider counter */
.exclusive.exclusive-offers::after {
  content: none !important;
  display: none !important;
}

.hero-pattern,
.section-dark::after,
.section-cream::before,
.platforms::before,
.blog::before,
.site-footer::before,
.exclusive::after,
.exclusive-offers__pattern,
.club-block::before,
.search-overlay-pattern {
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 58%, rgba(0, 0, 0, .82) 72%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 0 58%, rgba(0, 0, 0, .82) 72%, transparent 100%);
}

.exclusive-offers__counter {
  --exclusive-progress: .1667;
  --exclusive-dash-offset: 204.204px;
  position: relative;
  border: 0;
  display: grid;
  place-items: center;
  color: rgba(190, 165, 117, .48);
  font-size: 0;
  line-height: 1;
}

.exclusive-offers__counter-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.exclusive-offers__counter-track,
.exclusive-offers__counter-progress {
  fill: none;
  stroke-width: 1.2;
}

.exclusive-offers__counter-track {
  stroke: rgba(190, 165, 117, .22);
}

.exclusive-offers__counter-progress {
  stroke: #bea575;
  stroke-linecap: round;
  stroke-dasharray: 245.044px;
  stroke-dashoffset: var(--exclusive-dash-offset);
  transition: stroke-dashoffset .32s ease;
}

.exclusive-offers__counter-text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-display, serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: rgba(190, 165, 117, .46);
  letter-spacing: 0;
}

.exclusive-offers__counter-current {
  color: #bea575;
}

.exclusive-offers__counter-separator,
.exclusive-offers__counter-total {
  color: rgba(190, 165, 117, .46);
}

.slider-count b.slider-count-ring {
  position: relative;
  border: 0;
  overflow: visible;
  color: rgba(190, 165, 117, .46);
  font-size: 0;
  line-height: 1;
}

.slider-count-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.slider-count-ring-track,
.slider-count-ring-progress {
  fill: none;
  stroke-width: 1.35;
}

.slider-count-ring-track {
  stroke: rgba(190, 165, 117, .22);
}

.slider-count-ring-progress {
  stroke: #bea575;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-dasharray: 245.044px;
  stroke-dashoffset: var(--lifestyle-dash-offset, 210.038px);
  transition: stroke-dashoffset .32s ease;
}

.slider-count-text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-display, serif);
  font-size: clamp(16px, 1.56vw, 30px);
  font-weight: 400;
  line-height: 1;
  color: rgba(190, 165, 117, .46);
  letter-spacing: 0;
}

.slider-count-current {
  color: #bea575;
  font-weight: 700;
}

.slider-count-separator,
.slider-count-total {
  color: rgba(190, 165, 117, .46);
  font-weight: 400;
}

@media (max-width: 760px) {
  .slider-count-text {
    font-size: 20px;
  }

  .exclusive-offers__counter-text {
    font-size: 20px;
  }
}

/* Keep the hero/lifestyle blue curve below real controls. */
.hero-stage::after {
  z-index: 2;
}

.hero-content {
  z-index: 8;
}

.hero-copy,
.hero-tags,
.hero-side,
.hero-cta {
  position: absolute;
  z-index: 12;
}

.hero-tags {
  position: relative;
}

.hero-cta {
  z-index: 20;
}

.lifestyle {
  isolation: isolate;
}

.lifestyle .section-grid.lifestyle-grid {
  z-index: 6;
}

/* Hero/lifestyle transition: reference-like blue oval under chips and CTA. */
.hero-stage::after {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: -7vw;
  right: -7vw;
  bottom: -1px;
  height: clamp(150px, 11vw, 220px);
  pointer-events: none;
  background: #13243c;
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
}

.hero-content {
  z-index: auto;
}

.hero-copy,
.hero-side {
  z-index: auto;
}

.hero-tags {
  position: relative;
  z-index: 5;
}

.hero-cta,
.scroll-cue {
  z-index: 6;
}

/* Hero/lifestyle transition refinement: blue block with oval top edge. */
.hero::after {
  top: clamp(84px, 22vh, 250px);
  bottom: -1px;
  height: auto;
  border-radius: 50% 50% 0 0 / 12% 12% 0 0;
}

/* Keep hero text, chips and CTA visible while the image expands. */
@media (min-width: 761px) {
  .hero-content {
    z-index: 4;
  }

  .hero h1,
  .hero-side {
    opacity: 1;
  }

  .hero-tags {
    position: relative;
    z-index: 6;
    opacity: 1;
  }

  .hero-cta,
  .scroll-cue {
    z-index: 6;
  }
}

@media (min-width: 761px) {
  .is-expanded .hero-side {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Hero final blue curve appears only at the end of the scroll scene. */
.hero::after {
  content: "";
  position: absolute;
  display: block;
  z-index: 4;
  top: auto;
  left: -10vw;
  right: -10vw;
  bottom: -1px;
  height: clamp(62px, 4.9vw, 94px);
  pointer-events: none;
  background: #13243c;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: clamp(0, calc((var(--hero-progress, 0) - .90) * 10), 1);
  transform: translateY(calc((1 - var(--hero-progress, 0)) * 32px));
  transition: opacity .12s linear;
}
/* End hero final blue curve. */

/* Exclusive CTA font refinement. */
.exclusive-slide__cta {
  font-size: 25px;
}

/* Blog card pattern and desktop alignment. */
.blog-card::before {
  inset: 0;
  width: auto;
  height: auto;
  opacity: 1;
  background: url("images/blog-card-pattern.svg") left bottom / 100% auto no-repeat;
}

.blog .blog-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
  align-content: stretch;
  align-items: start;
}

.blog .blog-card span:first-child {
  grid-column: 1;
  grid-row: 1;
}

.blog .blog-card span:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
  margin-left: 0;
}

.blog .blog-card span:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

.blog .blog-card h3 {
  grid-column: 1 / -1;
  grid-row: 2;
}

.blog .blog-card p {
  grid-column: 1 / -1;
  grid-row: 3;
}

.blog .blog-card a {
  grid-column: 1 / -1;
  grid-row: 5;
  justify-self: end;
  align-self: end;
  margin-top: 0;
  margin-left: 0;
}

@media (min-width: 761px) {
  .blog-rail-wrap {
    margin-left: max(60px, calc((100vw - 1640px) / 2 + 60px));
  }
}
/* End blog card pattern and desktop alignment. */

/* Approach uploaded background pattern. */
.approach.section-dark.approach-section {
  background-color: #12233b;
  background-image:
    linear-gradient(180deg, #13233B 0%, rgba(19, 35, 59, 0) 100%),
    url("images/approach-section-bg.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: center top, center top;
  background-size: 100% 218px, cover;
}
/* End approach uploaded background pattern. */

/* Gold link font refinement. */
.gold-link,
.approach-section .gold-link {
  font-family: 'GILROY', var(--font-sans);
  font-weight: 500;
}

/* Exclusive offers uploaded pattern background. */
.exclusive-offers__pattern {
  width: 705px;
  opacity: 1;
  background: url("images/exclusive-offers-pattern.svg") left top / 705px auto no-repeat;
}

@media (max-width: 760px) {
  .exclusive-offers__pattern {
    width: 100%;
    opacity: 1;
    background: url("images/exclusive-offers-pattern.svg") left -120px top / 420px auto no-repeat;
  }
}
/* End exclusive offers uploaded pattern background. */

/* Exclusive pattern white edge fades. */
.exclusive-offers__pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 15%),
    linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 15%),
    linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 16%),
    linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 16%);
}
/* End exclusive pattern white edge fades. */


/* Architecture slider directional arrows. */
.style-prev,
.style-next {
  position: absolute;
  top: 275px;
  z-index: 4;
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #13233b;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(19,35,59,.12);
  opacity: 1;
  visibility: visible;
  transition: opacity .22s ease, visibility .22s ease, transform .2s ease, box-shadow .2s ease;
}

.style-prev {
  left: 90px;
  right: auto;
}

.style-next {
  right: 90px;
  left: auto;
}

.style-prev:hover {
  transform: translateX(-4px);
  box-shadow: 0 22px 46px rgba(19,35,59,.18);
}

.style-next:hover {
  transform: translateX(4px);
  box-shadow: 0 22px 46px rgba(19,35,59,.18);
}

.architecture.is-at-start .style-prev,
.architecture.is-at-end .style-next,
.style-prev[disabled],
.style-next[disabled] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.architecture.is-at-start .style-prev,
.style-prev[disabled] {
  transform: translateX(-12px) scale(.94);
}

.architecture.is-at-end .style-next,
.style-next[disabled] {
  transform: translateX(12px) scale(.94);
}

@media (max-width: 1180px) {
  .style-prev { left: 40px; }
  .style-next { right: 40px; }
}

@media (max-width: 900px) {
  .style-prev,
  .style-next {
    top: 260px;
    width: 54px;
    height: 54px;
    font-size: 22px;
  }
  .style-prev { left: 18px; }
  .style-next { right: 18px; }
}

@media (max-width: 760px) {
  .style-prev,
  .style-next {
    top: 492px;
    width: 45px;
    height: 45px;
  }
  .style-prev { left: 20px; }
  .style-next { right: 20px; }
}
/* End architecture slider directional arrows. */

/* Platform cards adaptive fit between desktop and mobile. */
@media (min-width: 761px) and (max-width: 1400px) {
  .platforms {
    overflow: hidden;
  }

  .platform-cloud {
    --platform-gap-fit: clamp(8px, 1.35vw, 20px);
    --platform-card-fit: max(108px, min(188px, calc((100vw - 40px - var(--platform-gap-fit) - var(--platform-gap-fit) - var(--platform-gap-fit) - var(--platform-gap-fit) - var(--platform-gap-fit)) / 6)));
    width: calc(100% - 40px);
    max-width: none;
    min-height: clamp(212px, 25vw, 342px);
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: var(--platform-gap-fit);
    overflow: visible;
    scroll-snap-type: none;
  }

  .platform-cloud .platform-card,
  .platform-cloud .platform-card:nth-child(2n),
  .platform-cloud .platform-card:nth-child(3n) {
    width: var(--platform-card-fit);
    height: auto;
    aspect-ratio: 188 / 260;
    flex: 0 0 var(--platform-card-fit);
    min-width: 0;
  }

  .platform-cloud .platform-card:nth-child(2n) {
    margin-top: clamp(38px, 5.6vw, 78px);
  }

  .platform-logo-map { width: clamp(28px, 4vw, 58px); }
  .platform-logo-avito { width: clamp(58px, 8.2vw, 116px); }
  .platform-logo-domclick { width: clamp(38px, 5.2vw, 74px); }
  .platform-logo-house { width: clamp(48px, 6.8vw, 96px); }
  .platform-logo-m2 { width: clamp(42px, 5.8vw, 82px); }
  .platform-logo-homehunter { width: clamp(52px, 6.8vw, 96px); }
}
/* End platform cards adaptive fit. */

/* Platform heading text adaptive fit between desktop and mobile. */
@media (min-width: 1101px) and (max-width: 1400px) {
  .platforms .section-head {
    padding-left: clamp(40px, 4.86vw, 68px);
    padding-right: clamp(40px, 4.86vw, 68px);
    grid-template-columns: minmax(420px, 46vw) minmax(320px, min(40vw, 459px));
    gap: clamp(42px, 5vw, 72px);
  }

  .platforms .section-head p {
    width: 100%;
    max-width: min(459px, 40vw);
    justify-self: end;
  }

  .platforms .section-head p strong {
    font-size: clamp(20px, 1.354vw, 20px);
  }

  .platforms .section-head p span {
    font-size: clamp(15px, 1.042vw, 16px);
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .platforms .section-head {
    padding: clamp(58px, 7vw, 76px) clamp(32px, 5vw, 56px) clamp(46px, 6vw, 72px);
    grid-template-columns: 1fr;
    gap: clamp(18px, 2.8vw, 28px);
  }

  .platforms .section-head h2 {
    width: min(100%, 540px);
  }

  .platforms .section-head p {
    width: min(100%, 560px);
    max-width: min(100%, 560px);
    justify-self: start;
    gap: clamp(12px, 2vw, 18px);
  }

  .platforms .section-head p strong {
    width: 100%;
    max-width: 100%;
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.08;
  }

  .platforms .section-head p span {
    width: 100%;
    max-width: 100%;
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.12;
  }
}
/* End platform heading text adaptive fit. */

/* Mobile hero pattern replacement and clean vertical fades. */
.hero-pattern::before,
.hero-pattern::after {
  content: none;
}

@media (max-width: 760px) {
  .hero-pattern {
    z-index: 0;
    inset: 0;
    width: 100%;
    opacity: 1;
    background: url("images/hero-pattern-mobile.svg") right top / auto 100% no-repeat;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-pattern::before,
  .hero-pattern::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 71px;
    pointer-events: none;
  }

  .hero-pattern::before {
    top: 70px;
    background: linear-gradient(180deg, #13233B 0%, rgba(19, 35, 59, 0) 100%);
  }

  .hero-pattern::after {
    bottom: 0;
    background: linear-gradient(0deg, #13233B 0%, rgba(19, 35, 59, 0) 100%);
  }
}
/* End mobile hero pattern replacement and clean vertical fades. */

/* Shared hero pattern edge fades. */
.hero-pattern::before,
.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  pointer-events: none;
}

.hero-pattern::before {
  background: linear-gradient(180deg, #13233B 0%, rgba(19, 35, 59, 0) 100%);
}

.hero-pattern::after {
  transform: none;
  background: linear-gradient(0deg, #13233B 0%, rgba(19, 35, 59, 0) 100%);
}
/* End shared hero pattern edge fades. */

/* Mobile hero tags position. */
@media (max-width: 760px) {
  .hero-tags {
    margin-top: 328px;
  }
}
/* End mobile hero tags position. */

/* Architecture style slider bottom spacing. */
.style-slider {
  margin-bottom: 87px;
}
/* End architecture style slider bottom spacing. */

/* White transition/background for architecture and exclusive offers. */
.architecture::after {
  background: #ffffff;
}

.exclusive.exclusive-offers {
  --exclusive-bg: #ffffff;
}
/* End white transition/background for architecture and exclusive offers. */

/* Hero layer/CTA refinements. */
.hero::after {
  z-index: 3;
}

.hero-cta {
  bottom: 147px;
}

.hero-pattern::before {
  top: 0;
  bottom: auto;
  height: 218px;
}
/* End hero layer/CTA refinements. */

/* Lifestyle top fade over the decorative pattern. */
.lifestyle::after {
  background:
    linear-gradient(180deg, #13233B 0%, rgba(19, 35, 59, 0) 100%) right top / 100% 218px no-repeat,
    url("images/lifestyle-circles.svg") right center / auto 100% no-repeat;
}
/* End lifestyle top fade over the decorative pattern. */

/* Shared gold CTA states */
.pill-link,
.gold-link,
.blog-card a,
.club-card button,
.footer-form button,
.club-block__form button,
.exclusive-slide__cta,
.round-cta,
.card-arrow {
  transition: background-color .2s ease, background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.pill-link:hover,
.pill-link:focus-visible,
.gold-link:hover,
.gold-link:focus-visible,
.blog-card a:hover,
.blog-card a:focus-visible,
.club-card button:hover,
.club-card button:focus-visible,
.footer-form button:hover,
.footer-form button:focus-visible,
.club-block__form button:hover,
.club-block__form button:focus-visible,
.exclusive-slide__cta:hover,
.exclusive-slide__cta:focus-visible,
.round-cta:hover,
.round-cta:focus-visible,
.card-arrow:hover,
.card-arrow:focus-visible {
  background: var(--gold-hover);
}

.pill-link:active,
.gold-link:active,
.blog-card a:active,
.club-card button:active,
.footer-form button:active,
.club-block__form button:active,
.exclusive-slide__cta:active,
.round-cta:active,
.card-arrow:active {
  background: var(--gold-pressed);
}


/* Hero CTA fixed viewport behavior. */
@media (min-width: 761px) {
  .hero-cta {
    position: fixed;
    right: var(--safe);
    bottom: 147px;
    top: auto;
    transform: none;
  }
}
/* End hero CTA fixed viewport behavior. */

/* Backend cached Twig fallback: keep the real homepage aligned with /figma-home/ without a cache clear. */
.figma-home-backend .figma-header-shell .site-header.figma-header {
  position: absolute !important;
  z-index: 120 !important;
  top: 16px !important;
  left: max(18px, calc((100vw - 1740px) / 2)) !important;
  right: max(18px, calc((100vw - 1740px) / 2)) !important;
  width: auto !important;
}

.figma-home-backend .figma-header-shell .sale-mega {
  z-index: 110 !important;
}

.sale-menu-open .figma-home-backend .figma-header-shell .site-header.figma-header {
  z-index: 130 !important;
}

@media (min-width: 761px) {
  .figma-home-backend.is-home-header-portal-ready .figma-header-shell .site-header.figma-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 1750px !important;
  }
}

.figma-home-backend .hero-stage {
  height: 205vh !important;
  min-height: 0 !important;
}

.figma-home-backend .hero {
  padding: 0 !important;
}

.figma-home-backend .figma-backend-content {
  margin-bottom: 0 !important;
}

.figma-home-backend .hero-stage {
  z-index: 80 !important;
  pointer-events: none !important;
}

.figma-home-backend .hero-stage a,
.figma-home-backend .hero-stage button {
  pointer-events: auto !important;
}

.figma-home-backend .hero-shade {
  pointer-events: none !important;
}

.figma-home-backend .hero h1,
.figma-home-backend .lifestyle h2,
.figma-home-backend .architecture .section-head h2,
.figma-home-backend .exclusive-offers__title,
.figma-home-backend .club-block__copy h3,
.figma-home-backend .approach-copy h2,
.figma-home-backend .platforms .section-head h2,
.figma-home-backend .blog-head h2,
.figma-home-backend .blog-card h3,
.figma-home-backend .search-overlay h2 {
  text-transform: none;
}

.figma-home-backend .hero-tags,
.figma-home-backend .hero-cta,
.figma-home-backend .scroll-cue {
  z-index: 20 !important;
}

@media (min-width: 761px) {
  .lifestyle h2 {
    left: 67.8vw;
  }
}

.approach h2 {
  letter-spacing: 0;
}

.style-ring {
  --style-ring-size: 290px;
  width: var(--style-ring-size);
  height: var(--style-ring-size);
}

.style-card .style-ring img,
.style-card:hover .style-ring img,
.style-card:focus-within .style-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.portrait-lettermark {
  --portrait-lettermark-size: clamp(660px, 42.7vw, 820px);
  --portrait-lettermark-y: calc(-50% + var(--portrait-video-y, 0px) - clamp(34px, 2.6vw, 50px));
  width: var(--portrait-lettermark-size);
  height: var(--portrait-lettermark-size);
  object-fit: contain;
}

@media (max-width: 1180px) {
  .style-ring {
    --style-ring-size: 250px;
  }

  .portrait-lettermark {
    --portrait-lettermark-size: clamp(560px, 54vw, 640px);
  }
}

@media (max-width: 760px) {
  .style-ring {
    display: none;
  }

  .portrait-lettermark {
    --portrait-lettermark-size: 330px;
    --portrait-lettermark-y: -50%;
  }
}

@media (min-width: 761px) {
  .figma-home-backend .hero-cta {
    position: fixed !important;
    top: auto !important;
    right: var(--safe) !important;
    bottom: 92px !important;
    z-index: 30 !important;
    width: var(--hero-cta-expanded-width) !important;
    min-width: var(--hero-cta-size) !important;
    height: var(--hero-cta-size) !important;
    padding: 0 48px 0 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .is-hero-cta-compact .figma-home-backend .hero-cta:not(:hover):not(:focus-visible) {
    width: var(--hero-cta-size) !important;
    padding-right: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .is-hero-cta-compact .figma-home-backend .hero-cta:not(:hover):not(:focus-visible) .hero-cta-text {
    opacity: 0 !important;
  }
}

@media (max-width: 760px) {
  .figma-home-backend .figma-header-shell .site-header.figma-header {
    top: 10px !important;
    left: 20px !important;
    right: 20px !important;
    width: auto !important;
    height: 60px !important;
    align-items: flex-start !important;
  }

  .figma-home-backend .hero-stage {
    height: 1436px !important;
    min-height: 0 !important;
  }

  .figma-home-backend .hero-content {
    transform: translateY(70px) !important;
  }

  .figma-home-backend .hero-line {
    white-space: nowrap;
  }

  .figma-home-backend .hero-media {
    background-image: url("images/hero-photo-mobile.jpg") !important;
  }
}

@media (min-width: 761px) {
  .figma-home-backend .hero-line-2,
  .figma-home-backend .hero-line-3 {
    margin-left: 0 !important;
  }

  .figma-home-backend .hero-line-2 {
    margin-top: 18px;
  }

  .figma-home-backend .hero-line-3 {
    margin-top: 2px;
  }
}

@media (min-width: 1200px) {
  .figma-home-backend .hero-copy {
    max-width: 960px;
  }

  .figma-home-backend .hero h1 {
    width: 960px;
    max-width: 960px;
    font-size: 96px;
    line-height: .65;
    letter-spacing: 0;
  }

  .figma-home-backend .hero-line + .hero-line {
    margin-top: 0;
  }

  .figma-home-backend .hero-line-2 {
    margin-top: 30px;
    padding-left: 210px;
  }

  .figma-home-backend .hero-line-3 {
    margin-top: 0;
    padding-left: 85px;
  }
}

@media (min-width: 761px) {
  .figma-home-backend .blog {
    --home-blog-gutter: clamp(60px, 4.688vw, 90px);
  }

  .figma-home-backend .blog .blog-head {
    max-width: none;
    padding-left: var(--home-blog-gutter);
    padding-right: max(var(--home-blog-gutter), calc((100vw - 1640px) / 2 + 60px));
  }

  .figma-home-backend .blog .blog-rail-wrap {
    margin-left: var(--home-blog-gutter);
  }
}

.circle-text {
  overflow: visible;
  border-radius: 50%;
  pointer-events: none;
}

.circle-text__char {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 1em;
  height: 1em;
  margin: -.5em 0 0 -.5em;
  color: currentColor;
  font: inherit;
  line-height: 1;
  text-align: center;
  white-space: pre;
  transform-origin: 50% 50%;
}

.style-ring.circle-text {
  color: #13233b;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  animation: styleCircleTextSpin 18s linear infinite;
letter-spacing: 0;
}

.style-ring.circle-text .circle-text__char--muted {
  color: rgba(19, 35, 59, .28);
}

.style-ring.circle-text.is-circle-text-ready {
  opacity: 0;
}

.style-card:hover .style-ring.circle-text,
.style-card:focus-within .style-ring.circle-text {
  opacity: 1;
}

.portrait-lettermark.circle-text {
  --portrait-lettermark-size: clamp(475px, 36.3vw, 697px);
  --portrait-lettermark-y: calc(-57% + var(--portrait-video-y, 0px) - clamp(64px, 9vw, 90px));
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(40px, 1.35vw, 26px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  animation: portraitCircleTextSpin 24s linear infinite;
letter-spacing: 0;
}

.portrait-lettermark.circle-text[data-circle-arc-start] {
  animation: none;
  will-change: auto;
}

@keyframes styleCircleTextSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes portraitCircleTextSpin {
  from { transform: translate(-50%, var(--portrait-lettermark-y, -50%)) rotate(0deg); }
  to { transform: translate(-50%, var(--portrait-lettermark-y, -50%)) rotate(360deg); }
}

@media (max-width: 1180px) {
  .style-ring.circle-text {
    font-size: 15px;
  }

  .portrait-lettermark.circle-text {
    font-size: clamp(18px, 2.4vw, 24px);
  }
}

@media (max-width: 760px) {
  .portrait-lettermark.circle-text {
    --portrait-lettermark-size: 180px;
    --portrait-lettermark-y: calc(-50% - 36px);
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .style-ring.circle-text,
  .portrait-lettermark.circle-text {
    animation: none;
  }
}

.fachwerk .style-visual > img,
.chalet .style-visual > img,
.modern .style-visual > img {
  -webkit-clip-path: inset(3px 5px 3px 3px);
  clip-path: inset(3px 5px 3px 3px);
}

.fachwerk .style-visual > img {
  -webkit-mask-image: linear-gradient(to bottom, #000 0 23.9%, transparent 23.9% 25.4%, #000 25.4% 100%) !important;
  mask-image: linear-gradient(to bottom, #000 0 23.9%, transparent 23.9% 25.4%, #000 25.4% 100%) !important;
}

.chalet .style-visual > img {
  -webkit-mask-image: linear-gradient(to bottom, #000 0 33.2%, transparent 33.2% 35%, #000 35% 100%) !important;
  mask-image: linear-gradient(to bottom, #000 0 33.2%, transparent 33.2% 35%, #000 35% 100%) !important;
}

.modern .style-visual > img {
  -webkit-mask-image: linear-gradient(to bottom, #000 0 24.5%, transparent 24.5% 26.2%, #000 26.2% 100%) !important;
  mask-image: linear-gradient(to bottom, #000 0 24.5%, transparent 24.5% 26.2%, #000 26.2% 100%) !important;
}

.style-card:hover .style-visual > img,
.style-card:focus-within .style-visual > img {
  transform: translateY(0) scale(1.03);
}

.hightech:hover .style-visual > img,
.hightech:focus-within .style-visual > img {
  transform: translateY(0) scale(1.03);
}

.prairie:hover .style-visual > img,
.prairie:focus-within .style-visual > img {
  transform: translate(14px, 0) scale(1.03);
}

.fachwerk:hover .style-visual > img,
.fachwerk:focus-within .style-visual > img,
.chalet:hover .style-visual > img,
.chalet:focus-within .style-visual > img,
.modern:hover .style-visual > img,
.modern:focus-within .style-visual > img {
  transform: translateY(0) scale(1.03);
}

@media (max-width: 760px) {
  .figma-home-backend .hero-media {
    transform: translateY(calc(94px * (1 - var(--hero-progress, 0)))) scale(calc(.86 + (.14 * var(--hero-progress, 0)))) !important;
    transform-origin: top center !important;
  }

  .figma-home-backend .hero-tags {
    margin-top: 360px !important;
  }

  .figma-home-backend .hero-cta {
    --hero-cta-size: 46px !important;
    --hero-cta-expanded-width: min(278px, calc(100vw - 40px)) !important;
    position: fixed !important;
    top: auto !important;
    right: 20px !important;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 95 !important;
    width: var(--hero-cta-expanded-width) !important;
    min-width: var(--hero-cta-size) !important;
    height: var(--hero-cta-size) !important;
    min-height: var(--hero-cta-size) !important;
    padding: 0 22px 0 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}
/* End backend cached Twig fallback. */
