:root {
  --black: #050705;
  --ink: #0b100d;
  --forest: #102d22;
  --forest-2: #163d2d;
  --jade: #2f7d5a;
  --gold: #d6b35b;
  --gold-2: #f1d98b;
  --stone: #f4f2eb;
  --stone-2: #e8e1d0;
  --white: #ffffff;
  --muted: #68716b;
  --muted-light: rgba(255, 255, 255, 0.72);
  --line: rgba(11, 16, 13, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  --tile-shadow: 0 24px 58px rgba(11, 16, 13, 0.14);
  --tile-shadow-strong: 0 34px 78px rgba(11, 16, 13, 0.2);
  --tile-shadow-dark: 0 30px 76px rgba(0, 0, 0, 0.34);
  --tile-shadow-soft: 0 18px 46px rgba(11, 16, 13, 0.07), 0 3px 12px rgba(11, 16, 13, 0.04);
  --tile-shadow-soft-hover: 0 28px 68px rgba(11, 16, 13, 0.12), 0 8px 24px rgba(11, 16, 13, 0.06);
  --tile-glow: 0 20px 56px rgba(0, 0, 0, 0.24), 0 0 28px rgba(214, 179, 91, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  --tile-glow-hover: 0 34px 84px rgba(0, 0, 0, 0.36), 0 0 42px rgba(214, 179, 91, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.075);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --speed: 260ms var(--ease-out);
  --card-speed: 460ms var(--ease-out);
  --image-speed: 720ms var(--ease-out);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(5, 7, 5, 0.38);
  backdrop-filter: blur(4px);
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

button[data-gallery-index],
button[data-gallery-index] img,
.project-gallery-slide {
  cursor: pointer;
}

a {
  color: inherit;
}

.mobile-soft-break {
  display: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1 {
  max-width: 900px;
  font-size: 66px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 23px;
  line-height: 1.12;
}

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

ul,
ol,
dl,
figure {
  margin: 0;
}

.container {
  width: min(100% - 48px, 1260px);
  margin: 0 auto;
}

.module {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
}

.module-dark {
  background: var(--black);
  color: var(--white);
}

.module-dark p,
.module-dark li,
.module-dark dd {
  color: var(--muted-light);
}

.module-cream {
  background: var(--ed-cream, var(--stone));
}

.module-stone {
  background: var(--stone);
}

.module-white {
  background: var(--white);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section-head {
  margin-bottom: 54px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: end;
}

.split-head p:not(.kicker) {
  font-size: 19px;
}

.center-head {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.center-head .kicker {
  justify-content: center;
}

.center-head p:not(.kicker) {
  margin: 20px auto 0;
  max-width: 720px;
  font-size: 19px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--speed), border-color var(--speed), background var(--speed), color var(--speed), box-shadow var(--speed);
}

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

.btn-small {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 14px;
}

.mobile-label {
  display: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 16px 32px rgba(214, 179, 91, 0.22);
}

.btn-gold:hover {
  background: var(--gold-2);
  box-shadow: 0 20px 44px rgba(214, 179, 91, 0.28);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--forest);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(214, 179, 91, 0.14);
}

.site-header {
  position: relative;
  z-index: 50;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  background: rgba(14, 12, 10, 0.96);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.site-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 14px 0;
  gap: 24px;
}

/* === Desktop inline nav === */
.site-nav-desktop {
  display: inline-flex;
  justify-self: center;
  gap: clamp(18px, 2.4vw, 36px);
  align-items: center;
}

.site-nav-desktop a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  transition: color var(--speed);
}

.site-nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--ed-gold-2);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 320ms var(--ease-luxe);
}

.site-nav-desktop a:hover,
.site-nav-desktop a:focus-visible {
  color: var(--ed-gold-2);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-text {
  color: var(--ed-white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo {
  flex-shrink: 0;
}

.brand-logo-img {
  display: block;
  width: clamp(118px, 11.5vw, 154px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.site-nav,
.site-nav a,
.header-actions,
.messenger-link-max {
  /* legacy selectors retained for safety; visual rules collapsed */
}

.header-right {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.header-right .lang-switch-desktop {
  order: 2;
}

.header-right .header-cta {
  order: 1;
}

.header-right .menu-trigger {
  order: 3;
}

.header-cta {
  font-size: 13px;
  letter-spacing: 0;
}

.btn.btn-sm {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 13px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.lang-switch :is(a, button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.lang-switch :is(a, button):hover,
.lang-switch :is(a, button).active {
  background: var(--gold);
  color: var(--ink);
}

.messenger-links {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.messenger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--speed), border-color var(--speed), box-shadow var(--speed);
}

.messenger-link:hover {
  border-color: rgba(214, 179, 91, 0.52);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.messenger-link svg {
  display: block;
  width: 22px;
  height: 22px;
}

.messenger-link svg path {
  fill: currentColor;
}

.messenger-link-whatsapp {
  background: #25d366;
}

.messenger-link-telegram {
  background: #2aabee;
}

.messenger-link-telegram svg {
  width: 20px;
  height: 20px;
  transform: translateX(-1px);
}

.messenger-link-max {
  background: #5533ee;
}

.messenger-link-max svg {
  width: 100%;
  height: 100%;
}

/* === Menu trigger (replaces old .menu-toggle, kept as alias) === */
.menu-trigger,
.menu-toggle {
  display: none; /* shown only on mobile/tablet via media query */
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--speed), background var(--speed), color var(--speed);
}

.menu-trigger:hover {
  border-color: rgba(214, 179, 91, 0.42);
  background: rgba(214, 179, 91, 0.08);
  color: var(--gold-2);
}

.menu-trigger-label {
  display: inline-block;
}

.menu-trigger-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
}

.menu-trigger-icon span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--speed), width var(--speed);
}

.menu-trigger[aria-expanded="true"] .menu-trigger-icon span:first-child {
  transform: translateY(2.75px) rotate(45deg);
}

.menu-trigger[aria-expanded="true"] .menu-trigger-icon span:last-child {
  transform: translateY(-2.75px) rotate(-45deg);
}

.hero {
  min-height: 780px;
  display: flex;
  align-items: center;
  padding: 118px 0 76px;
  background:
    linear-gradient(135deg, #050705 0%, #0a1811 34%, #123d2d 72%, #07100b 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(214, 179, 91, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, transparent 0 43%, rgba(214, 179, 91, 0.07) 43% 44%, transparent 44% 100%);
  background-size: 112px 112px, 112px 112px, 100% 100%;
  opacity: 0.28;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  display: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.78), rgba(5, 7, 5, 0.42) 42%, rgba(5, 7, 5, 0.18)),
    linear-gradient(0deg, rgba(5, 7, 5, 0.68), rgba(5, 7, 5, 0.12) 52%, rgba(5, 7, 5, 0.52));
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.58fr);
  gap: 34px;
  align-items: center;
}

.hero-card {
  max-width: 840px;
  min-width: 0;
  padding: 34px;
  border: 1px solid rgba(214, 179, 91, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(5, 7, 5, 0.92), rgba(16, 45, 34, 0.78));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px) saturate(120%);
}

.hero-card h1 {
  font-size: 60px;
  color: var(--white);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(214, 179, 91, 0.32);
  border-radius: 999px;
  background: rgba(214, 179, 91, 0.12);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-break {
  display: none;
}

.hero-lead {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.5;
}

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

.hero-proof article {
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.02;
}

.hero-proof span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-deal-card {
  overflow: hidden;
  border: 1px solid rgba(214, 179, 91, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 7, 5, 0.9);
  color: var(--white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.deal-card-image {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}

.deal-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 5, 0.42), transparent 56%);
}

.deal-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.deal-card-body {
  padding: 24px;
}

.deal-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.deal-card-body h2 {
  font-size: 25px;
  line-height: 1.12;
}

.deal-card-body ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.deal-card-body li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.deal-card-body li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.deal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 22px;
  border: 1px solid rgba(214, 179, 91, 0.46);
  border-radius: 999px;
  background: rgba(214, 179, 91, 0.14);
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
}

.summary-section {
  padding: 54px 0 74px;
}

.summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 10px;
}

.summary-copy,
.summary-grid article,
.summary-metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.summary-copy {
  padding: 30px;
}

.summary-copy h2 {
  font-size: 34px;
  line-height: 1.08;
}

.summary-copy p:not(.kicker) {
  margin-top: 18px;
  font-size: 18px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.summary-grid article {
  min-height: 154px;
  padding: 22px;
}

.summary-grid span,
.summary-metrics span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.22;
}

.summary-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.summary-metrics article {
  min-height: 128px;
  padding: 22px;
  background: var(--forest);
  color: var(--white);
}

.summary-metrics strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.summary-metrics span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
}

.hero-signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 1010px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.hero-signals li {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.legal-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.hero-panel {
  display: grid;
  gap: 10px;
}

.hero-panel div {
  min-height: 140px;
  padding: 20px;
  border: 1px solid rgba(214, 179, 91, 0.36);
  border-radius: var(--radius);
  background: rgba(8, 14, 11, 0.72);
  backdrop-filter: blur(14px);
}

.hero-panel strong {
  display: block;
  color: var(--gold);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
}

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

.facts-grid div {
  min-height: 138px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.facts-grid dt {
  margin-bottom: 12px;
  color: var(--jade);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.facts-grid dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.24;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: clamp(58px, 7vw, 118px);
  align-items: center;
}

.about-copy {
  max-width: 820px;
}

.about-copy h2 {
  max-width: 760px;
}

.about-copy > p {
  max-width: 700px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.about-details {
  margin-top: clamp(56px, 7vw, 96px);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  padding: 28px 0;
  border-top: 1px solid rgba(11, 16, 13, 0.14);
  border-bottom: 1px solid rgba(11, 16, 13, 0.14);
}

.about-highlights span {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  padding: 0 clamp(14px, 1.4vw, 22px);
  border-left: 1px solid rgba(11, 16, 13, 0.1);
  background: transparent;
}

.about-highlights span:first-child {
  padding-left: 0;
  border-left: 0;
}

.about-highlights span::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.about-highlights strong {
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.about-highlights small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-consult {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 44px);
  margin-top: clamp(34px, 4vw, 54px);
  padding: 0;
  border-top: 0;
}

.about-consult p {
  max-width: 500px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.42;
}

.about-editorial {
  position: relative;
  display: grid;
  gap: 22px;
  align-self: center;
  overflow: visible;
  border-radius: var(--radius);
  background: transparent;
}

.about-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 24px 62px rgba(11, 16, 13, 0.13);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0) 50%, rgba(5, 7, 5, 0.34) 100%),
    linear-gradient(90deg, rgba(5, 7, 5, 0.18), rgba(5, 7, 5, 0) 46%);
  pointer-events: none;
}

.about-photo img {
  width: 100%;
  height: min(36vw, 420px);
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.92) contrast(0.98);
}

.about-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 7, 5, 0.62);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.about-note {
  display: grid;
  gap: 10px;
  max-width: 640px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.about-note span {
  color: var(--jade);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-note p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.scenario-switch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(48px, 5vw, 78px);
  padding: 14px;
  border: 1px solid rgba(11, 16, 13, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(47, 125, 90, 0.06));
}

.scenario-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: start;
  gap: 8px;
}

.scenario-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 13px 16px;
  border: 1px solid rgba(11, 16, 13, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  transition: background var(--speed), border-color var(--speed), color var(--speed), transform var(--speed);
}

.scenario-tabs button::after {
  content: "→";
  color: currentColor;
}

.scenario-tabs button.active {
  border-color: rgba(214, 179, 91, 0.42);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(11, 16, 13, 0.14);
}

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

.scenario-panels article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  min-height: 168px;
  padding: 28px 30px;
  border: 1px solid rgba(11, 16, 13, 0.08);
  border-radius: var(--radius);
  background: var(--white);
}

.scenario-panels article[hidden] {
  display: none;
}

.scenario-panels span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  margin: 0;
  border: 1px solid rgba(47, 125, 90, 0.18);
  border-radius: 999px;
  background: rgba(47, 125, 90, 0.08);
  color: var(--jade);
  font-size: 13px;
  font-weight: 900;
}

.scenario-panels h3 {
  max-width: 820px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.12;
}

.scenario-panels p {
  max-width: 820px;
  margin-top: 14px;
  font-size: 18px;
}

.location-saleskit-section {
  position: relative;
  padding-top: 48px;
  overflow: hidden;
}

.location-saleskit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(241, 239, 230, 0)),
    radial-gradient(42% 32% at 86% 18%, rgba(64, 139, 156, 0.14), transparent 72%);
  pointer-events: none;
}

.location-saleskit-section .container {
  position: relative;
  z-index: 1;
}

.location-saleskit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(11, 16, 13, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(241, 239, 230, 0.7)),
    var(--white);
  box-shadow:
    0 24px 70px rgba(11, 16, 13, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.location-saleskit-copy h2 {
  max-width: 820px;
}

.location-saleskit-copy > p:not(.kicker) {
  max-width: 740px;
  margin-top: 18px;
  font-size: 19px;
}

.location-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.location-proof-grid article {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(11, 16, 13, 0.1);
  border-radius: calc(var(--radius) - 8px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(241, 239, 230, 0.56));
}

.location-proof-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
}

.location-proof-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.35;
}

.location-map-card {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(20, 77, 88, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 58px rgba(11, 16, 13, 0.14);
}

.location-map-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1100 / 1175;
  object-fit: cover;
}

.location-map-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(8, 35, 39, 0.78);
  color: var(--white);
  font-size: 12px;
  font-weight: 840;
  backdrop-filter: blur(12px);
}

.nearby-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(11, 16, 13, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 54px rgba(11, 16, 13, 0.06);
}

.nearby-showcase-copy h3 {
  max-width: 560px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.05;
}

.nearby-showcase-copy p:not(.kicker) {
  max-width: 560px;
  margin-top: 16px;
  font-size: 18px;
}

.nearby-showcase-media {
  overflow: hidden;
  border: 1px solid rgba(11, 16, 13, 0.1);
  border-radius: calc(var(--radius) - 6px);
  background: var(--white);
}

.nearby-showcase-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 1139;
  object-fit: cover;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.process-section {
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(44% 34% at 22% 35%, rgba(214, 179, 91, 0.12), transparent 70%),
    radial-gradient(38% 32% at 78% 72%, rgba(47, 125, 90, 0.13), transparent 72%);
  pointer-events: none;
}

.process-section .feature-split {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(46px, 5vw, 76px);
  align-items: center;
}

.feature-split.reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.feature-split.reverse .feature-media {
  order: 2;
}

.feature-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.process-section .feature-media {
  align-self: center;
  min-height: clamp(560px, 44vw, 680px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.process-section .feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0) 42%, rgba(5, 7, 5, 0.22) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 30%);
  pointer-events: none;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.process-section .feature-media img {
  position: absolute;
  inset: 0;
  min-height: 0;
  height: 100%;
  object-position: center;
}

.feature-copy > p:not(.kicker) {
  margin-top: 22px;
  font-size: 19px;
}

.process-section .feature-copy {
  padding-top: 0;
}

.process-section .feature-copy h2 {
  max-width: 760px;
}

.process-heading-lock {
  white-space: nowrap;
}

.process-section .feature-copy > p:not(.kicker) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.66);
}

.benefit-list,
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.benefit-list article,
.amenity-grid article {
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.module-stone .amenity-grid article {
  border-color: var(--line);
  background: var(--white);
}

.benefit-list span,
.location-notes span,
.process-grid span,
.editorial-steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
}

.benefit-list h3,
.amenity-grid h3 {
  margin-bottom: 10px;
}

.module-dark .benefit-list h3,
.module-dark .amenity-grid h3 {
  color: var(--white);
}

.about-section .location-notes {
  margin-top: 34px;
  gap: 34px;
}

.about-section .location-notes article {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.editorial-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 30px;
}

.editorial-steps article {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  min-height: 104px;
  padding: 20px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(135%);
  transform: translate3d(0, 0, 0);
  transition:
    transform 280ms var(--ease-luxe),
    border-color 280ms var(--ease-luxe),
    background 280ms var(--ease-luxe),
    box-shadow 280ms var(--ease-luxe);
}

.editorial-steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(180px 120px at 18% 0%, rgba(214, 179, 91, 0.15), transparent 70%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  opacity: 0.7;
  transform: translateX(-72%);
  transition: transform 700ms var(--ease-luxe), opacity 280ms var(--ease-luxe);
}

.editorial-steps article::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -2;
  border-radius: calc(var(--radius) - 1px);
  background: rgba(7, 10, 8, 0.42);
}

.editorial-steps h3 {
  grid-column: 2;
  margin-bottom: 7px;
  color: var(--white);
}

.editorial-steps p {
  grid-column: 2;
  max-width: 560px;
  font-size: 15px;
}

.editorial-steps span {
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid rgba(214, 179, 91, 0.28);
  border-radius: 999px;
  background: rgba(214, 179, 91, 0.1);
  font-size: 13px;
}

.editorial-steps article:hover {
  border-color: rgba(214, 179, 91, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 58px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(214, 179, 91, 0.05);
  transform: translate3d(0, -5px, 0);
}

.editorial-steps article:hover::before {
  opacity: 1;
  transform: translateX(58%);
}

.editorial-steps article:nth-child(2) {
  transition-delay: 35ms;
}

.editorial-steps article:nth-child(3) {
  transition-delay: 70ms;
}

.editorial-steps article:nth-child(4) {
  transition-delay: 105ms;
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(214, 179, 91, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(214, 179, 91, 0.12), rgba(255, 255, 255, 0.045));
}

.process-cta p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
}

.wide-photo {
  position: relative;
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.wide-photo button,
.wide-photo img {
  display: block;
  width: 100%;
}

.wide-photo button {
  padding: 0;
}

.wide-photo img {
  height: 520px;
  object-fit: cover;
}

.wide-photo figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  max-width: 660px;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(5, 7, 5, 0.72);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.wide-photo figcaption span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.wide-photo figcaption strong {
  font-size: 25px;
  line-height: 1.12;
}

.wide-photo figcaption p {
  color: rgba(255, 255, 255, 0.74);
}

.location-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.location-notes article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--stone);
}

.location-notes h3 {
  margin-bottom: 12px;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.selection-layout {
  display: grid;
  grid-template-columns: minmax(220px, 282px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: stretch;
}

.selection-intro {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 24px;
  height: 100%;
  padding: 24px 22px;
  border: 1px solid rgba(11, 16, 13, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(241, 239, 230, 0.52)),
    rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.selection-rail-copy {
  display: grid;
  gap: 10px;
}

.selection-rail-copy .kicker {
  margin-bottom: 0;
}

.selection-rail-copy h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.14;
}

.selection-rail-copy p:not(.kicker) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.selection-checks {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, minmax(0, 1fr));
  align-self: stretch;
  gap: 0;
  height: 100%;
  max-width: none;
  border-top: 1px solid rgba(11, 16, 13, 0.12);
  counter-reset: selection-check;
}

.selection-checks span {
  position: relative;
  display: flex;
  align-items: center;
  counter-increment: selection-check;
  min-height: 0;
  overflow: hidden;
  padding: 16px 0 16px 48px;
  border: 0;
  border-bottom: 1px solid rgba(11, 16, 13, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
  transition:
    transform var(--card-speed),
    border-color var(--card-speed),
    background-color var(--card-speed),
    box-shadow var(--card-speed),
    color var(--card-speed);
}

.selection-checks span::before {
  content: counter(selection-check, decimal-leading-zero);
  position: absolute;
  left: 2px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(47, 125, 90, 0.28);
  border-radius: 999px;
  background: rgba(47, 125, 90, 0.08);
  color: var(--jade);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.selection-checks span::after {
  content: none;
}

@media (hover: hover) and (pointer: fine) {
  .selection-checks span:hover {
    color: var(--jade);
    transform: translate3d(4px, 0, 0);
  }
}

.selection-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.selection-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.selection-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  grid-template-rows: auto;
}

.selection-card-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1920 / 1071;
  padding: 0;
  overflow: hidden;
  background: #050705;
  cursor: pointer;
}

.selection-card-featured .selection-card-media {
  height: 100%;
  min-height: 330px;
  aspect-ratio: auto;
}

.selection-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 600ms ease;
}

.selection-card-media:hover img {
  transform: scale(1.018);
}

.selection-card-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px 22px 22px;
}

.selection-card-featured .selection-card-copy {
  align-content: center;
  padding: 26px;
}

.selection-card-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.selection-card h3 {
  color: var(--white);
  font-size: 24px;
  line-height: 1.12;
}

.selection-card:not(.selection-card-featured) h3 {
  font-size: 20px;
}

.selection-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.48;
}

.project-views-section .wide-photo {
  margin-bottom: 56px;
}

.project-views-section .selection-layout {
  width: min(100% - 48px, 1380px);
  margin-top: 0;
}

.module-cream .selection-checks span {
  border-color: rgba(11, 16, 13, 0.12);
  background: transparent;
  box-shadow: none;
  color: var(--ink);
}

.module-cream .selection-checks span::before {
  border-color: rgba(47, 125, 90, 0.28);
  background: rgba(47, 125, 90, 0.08);
  color: var(--jade);
}

.module-cream .selection-checks span::after {
  content: none;
}

@media (hover: hover) and (pointer: fine) {
  .module-cream .selection-checks span:hover {
    background: transparent;
    box-shadow: none;
    color: var(--jade);
  }
}

.module-cream .selection-card {
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}

.module-cream .selection-card h3 {
  color: var(--ink);
}

.module-cream .selection-card p {
  color: var(--muted);
}

.view-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  width: min(100% - 48px, 1380px);
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 16, 13, 0.12);
}

.view-cta p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  text-align: right;
}

.project-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}

.project-gallery {
  width: min(100% - 48px, 1380px);
  margin-top: 52px;
}

.project-gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.project-gallery-head h2 {
  max-width: 760px;
}

.project-gallery-head p:not(.kicker) {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.project-gallery-controls {
  display: inline-flex;
  gap: 8px;
}

.project-gallery-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
}

.project-gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 14px;
  scrollbar-width: thin;
}

.project-gallery-slide {
  position: relative;
  flex: 0 0 clamp(520px, 72vw, 880px);
  display: grid;
  grid-template-rows: minmax(320px, 520px) auto;
  gap: 12px;
  scroll-snap-align: center;
  margin: 0;
}

.project-gallery-slide.is-pending-plan {
  overflow: hidden;
  border-radius: var(--radius);
}

.project-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    border-color var(--card-speed),
    box-shadow var(--card-speed),
    transform var(--image-speed);
}

.project-gallery-slide.is-square {
  flex-basis: clamp(360px, 42vw, 560px);
}

.project-gallery-slide.is-plan {
  flex-basis: clamp(360px, 46vw, 620px);
}

.project-gallery-slide.is-master-plan {
  flex-basis: clamp(640px, 84vw, 980px);
}

.project-gallery-slide.is-plan img {
  object-fit: contain;
  padding: 12px;
  background: var(--white);
}

.project-gallery-slide.is-master-plan img {
  object-fit: contain;
  padding: 10px;
  background: var(--white);
}

.project-gallery-slide.active img {
  border-color: rgba(214, 179, 91, 0.72);
  box-shadow: 0 20px 52px rgba(11, 16, 13, 0.12);
}

.project-gallery-slide figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.project-gallery-controls button:hover {
  border-color: rgba(47, 125, 90, 0.28);
  box-shadow: var(--tile-shadow-soft-hover);
}

.project-gallery-track:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.project-gallery-track::-webkit-scrollbar {
  height: 8px;
}

.project-gallery-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(11, 16, 13, 0.18);
}

.project-gallery-track::-webkit-scrollbar-track {
  background: rgba(11, 16, 13, 0.06);
}

.apartment-examples {
  width: min(100% - 48px, 1380px);
  margin-top: clamp(54px, 6vw, 92px);
}

.apartment-examples-section,
.project-details-section,
.project-gallery-section {
  padding: clamp(58px, 6vw, 88px) 0;
}

.apartment-examples-section .apartment-examples,
.project-details-section .project-details,
.project-gallery-section .project-gallery {
  margin-top: 0;
}

.apartment-examples-head {
  max-width: 820px;
}

.apartment-examples-head p:not(.kicker) {
  max-width: 760px;
}

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

.apartment-example-card {
  overflow: hidden;
  border: 1px solid rgba(11, 16, 13, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--tile-shadow-soft);
  transition:
    border-color var(--card-speed),
    box-shadow var(--card-speed),
    transform var(--card-speed);
}

.apartment-example-card:hover {
  border-color: rgba(214, 179, 91, 0.5);
  box-shadow: var(--tile-shadow-soft-hover);
  transform: translateY(-3px);
}

.apartment-example-card button {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(11, 16, 13, 0.06);
}

.apartment-example-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--image-speed);
}

.apartment-example-card:hover img {
  transform: scale(1.035);
}

.apartment-example-card div {
  padding: 22px;
}

.apartment-example-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.apartment-example-card h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.08;
}

.apartment-example-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.master-image {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--stone);
  box-shadow: 0 22px 58px rgba(11, 16, 13, 0.12);
  cursor: pointer;
}

.master-image.is-pending-plan {
  cursor: default;
}

.master-image button {
  display: grid;
  place-items: center;
  width: 100%;
}

.compact-master {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
  gap: 32px;
}

.master-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.master-copy p:not(.kicker) {
  margin-top: 22px;
  max-width: 620px;
  font-size: 19px;
}

.master-copy .btn {
  margin-top: 28px;
}

.master-image img {
  width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(11, 16, 13, 0.12));
}

.master-caption {
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.4;
}

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

.format-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.format-card.is-featured {
  border-color: rgba(214, 179, 91, 0.58);
  box-shadow: 0 24px 70px rgba(214, 179, 91, 0.1);
}

.format-card-media {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 12px;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  min-height: 430px;
  padding: 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background: var(--stone);
}

.format-card-media.is-pending-plan {
  cursor: default;
}

.format-card-media-static {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  max-height: 420px;
  min-height: 0;
  overflow: hidden;
}

.format-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(11, 16, 13, 0.16));
  transition: transform 600ms ease;
}

.format-card-media.is-pending-plan:hover img {
  transform: scale(1.035);
}

.format-plan-caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 9px 10px;
  border: 1px solid rgba(214, 179, 91, 0.3);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.is-pending-plan {
  overflow: hidden;
}

.is-pending-plan img {
  filter:
    blur(5px)
    saturate(0.76)
    opacity(0.7)
    drop-shadow(0 14px 24px rgba(11, 16, 13, 0.14));
  transform: scale(1.02);
}

.is-pending-plan::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(241, 239, 230, 0.2), rgba(241, 239, 230, 0.78)),
    radial-gradient(62% 48% at 50% 42%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.module-dark .is-pending-plan::after {
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0.06), rgba(5, 7, 5, 0.72)),
    radial-gradient(62% 48% at 50% 44%, rgba(255, 255, 255, 0.62), rgba(5, 7, 5, 0.12));
}

.pending-plan-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(calc(100% - 44px), 360px);
  padding: 16px 18px;
  border: 1px solid rgba(214, 179, 91, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 20px 54px rgba(11, 16, 13, 0.18);
  backdrop-filter: blur(18px) saturate(135%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pending-plan-badge[hidden] {
  display: none;
}

.pending-plan-badge strong {
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.12;
}

.pending-plan-badge span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.module-dark .pending-plan-badge {
  background: rgba(16, 18, 15, 0.82);
  color: var(--white);
}

.module-dark .pending-plan-badge strong {
  color: var(--white);
}

.module-dark .pending-plan-badge span {
  color: rgba(255, 255, 255, 0.68);
}

.format-card-body {
  display: grid;
  grid-template-rows: 28px minmax(48px, auto) auto minmax(58px, auto) 1fr auto;
  align-content: stretch;
  gap: 16px;
  padding: 26px;
  height: 100%;
}

.format-card h3 {
  color: var(--white);
  align-self: start;
}

.format-card p {
  align-self: start;
  min-height: 112px;
}

.format-price {
  display: grid;
  gap: 5px;
  align-self: start;
  padding-top: 2px;
}

.format-price strong {
  color: var(--gold);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 900;
  line-height: 1;
}

.format-price span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.format-badge {
  justify-self: start;
  margin-bottom: -4px;
  padding: 7px 12px;
  border: 1px solid rgba(214, 179, 91, 0.42);
  border-radius: 999px;
  background: rgba(214, 179, 91, 0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.format-badge-media {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  margin: 0;
  background: rgba(16, 18, 15, 0.82);
  backdrop-filter: blur(14px) saturate(135%);
}

.format-facts {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.format-facts li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.formats-section-light {
  background: linear-gradient(180deg, var(--stone), #fffaf0);
  color: var(--ink);
}

.formats-section-light .section-head h2,
.formats-section-light .quiz-head h2,
.formats-section-light .format-card h3,
.formats-section-light .quiz-step legend {
  color: var(--ink);
}

.formats-section-light .section-head p,
.formats-section-light .format-card p {
  color: var(--muted);
}

.formats-section-light .format-card {
  border-color: rgba(11, 16, 13, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--tile-shadow-soft);
}

.formats-section-light .format-card.is-featured {
  border-color: rgba(214, 179, 91, 0.58);
  box-shadow: 0 26px 66px rgba(214, 179, 91, 0.16);
}

.formats-section-light .format-card-media {
  border-bottom-color: rgba(11, 16, 13, 0.10);
}

.formats-section-light .format-price span {
  color: rgba(11, 16, 13, 0.56);
}

.formats-section-light .format-facts li {
  border-color: rgba(11, 16, 13, 0.12);
  background: rgba(16, 45, 34, 0.06);
  color: rgba(11, 16, 13, 0.68);
}

.formats-section-light .quiz-form {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(214, 179, 91, 0.26);
  box-shadow: var(--tile-shadow-soft);
}

.formats-section-light .quiz-progress div {
  background: rgba(11, 16, 13, 0.12);
}

.formats-section-light .option-grid label,
.formats-section-light .contact-grid label {
  color: rgba(11, 16, 13, 0.70);
}

.formats-section-light .option-grid span {
  border-color: rgba(11, 16, 13, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.formats-section-light .option-grid span::before {
  border-color: rgba(11, 16, 13, 0.24);
  background: rgba(16, 45, 34, 0.05);
}

.formats-section-light .option-grid label:hover span {
  background: rgba(214, 179, 91, 0.11);
}

.formats-section-light .contact-grid input,
.formats-section-light .contact-grid select {
  border-color: rgba(11, 16, 13, 0.14);
  background: var(--white);
  color: var(--ink);
}

.formats-section-light .btn-ghost {
  color: var(--ink);
  border-color: rgba(11, 16, 13, 0.16);
}

.tag {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.term-grid article {
  min-height: 166px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.term-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--jade);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.term-grid strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.term-grid p {
  margin-top: 12px;
}

.process-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 54px;
}

.process-layout .btn {
  margin-top: 28px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.process-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--stone);
}

.process-grid h3 {
  margin-bottom: 14px;
}

.quiz-form {
  max-width: 880px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(214, 179, 91, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.quiz-head {
  margin-top: 72px;
}

.quiz-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 30px;
}

.quiz-progress span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.quiz-progress div {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.quiz-progress b {
  display: block;
  width: 33.333%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  transition: width var(--speed);
}

.quiz-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-step.active {
  display: block;
}

.quiz-step legend {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 26px;
  font-weight: 800;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 740px;
}

.option-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.option-grid label {
  min-height: 0;
  cursor: pointer;
}

.option-grid label,
.contact-grid label,
.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.option-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-grid span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px 14px 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  color: var(--white);
  font-weight: 800;
  line-height: 1.25;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    border-color var(--speed),
    background var(--speed),
    box-shadow var(--speed),
    color var(--speed),
    transform var(--speed);
}

.option-grid span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(5, 7, 5, 0.28);
  transform: translateY(-50%);
  transition:
    border-color var(--speed),
    background var(--speed),
    box-shadow var(--speed);
}

.option-grid span::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: opacity var(--speed), transform var(--speed);
}

.option-grid input:checked + span {
  border-color: var(--gold);
  background: rgba(214, 179, 91, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.22);
  color: var(--gold-2);
}

.option-grid input:checked + span::before {
  border-color: var(--gold);
  background: rgba(214, 179, 91, 0.16);
  box-shadow: 0 0 0 4px rgba(214, 179, 91, 0.08);
}

.option-grid input:checked + span::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.option-grid input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.option-grid label:hover span {
  border-color: rgba(214, 179, 91, 0.46);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-2px);
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: 0;
}

select option {
  color: var(--ink);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.quiz-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}

.quiz-controls [hidden] {
  display: none !important;
}

.quiz-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.comparison-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--jade);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-grid h3 {
  margin-bottom: 12px;
}

.comparison-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-panel h2 {
  max-width: 760px;
}

.comparison-panel p:not(.kicker) {
  max-width: 720px;
  margin-top: 20px;
  font-size: 19px;
}

.comparison-panel .btn {
  margin-top: 28px;
}

.module.comparison-section {
  padding-bottom: clamp(22px, 3vw, 34px);
}

.summary-copy,
.summary-grid article,
.summary-metrics article,
.location-notes article,
.module-stone .amenity-grid article,
.master-image,
.term-grid article,
.process-grid article,
.comparison-grid article,
.faq-list details {
  box-shadow: var(--tile-shadow-soft);
}

.hero-card,
.hero-deal-card,
.hero-proof article,
.hero-signals li,
.hero-panel div,
.module-dark .benefit-list article,
.module-dark .amenity-grid article,
.module-dark .selection-card,
.module-dark .format-card,
.module-dark .quiz-form,
.module-dark .lead-form,
.lead-section .lead-form {
  box-shadow: var(--tile-glow);
}

.hero-card,
.hero-deal-card,
.hero-proof article,
.hero-signals li,
.hero-panel div,
.summary-copy,
.summary-grid article,
.summary-metrics article,
.facts-grid div,
.benefit-list article,
.amenity-grid article,
.location-notes article,
.selection-card,
.master-image,
.format-card,
.term-grid article,
.process-grid article,
.comparison-grid article,
.faq-list details,
.quiz-form,
.lead-form {
  transform: translate3d(0, 0, 0);
  transition:
    transform var(--card-speed),
    box-shadow var(--card-speed),
    border-color var(--card-speed),
    background-color var(--card-speed);
}

.deal-card-image img,
.feature-media img,
.wide-photo img,
.selection-card-media img,
.master-image img,
.format-card-media img {
  transition:
    transform var(--image-speed),
    filter var(--card-speed);
}

.option-grid span {
  transition:
    transform var(--card-speed),
    border-color var(--card-speed),
    background-color var(--card-speed),
    color var(--card-speed),
    box-shadow var(--card-speed);
}

.option-grid input:checked + span {
  box-shadow: 0 16px 36px rgba(214, 179, 91, 0.16);
}

@media (hover: hover) and (pointer: fine) {
  .summary-copy:hover,
  .summary-grid article:hover,
  .summary-metrics article:hover,
  .module-stone .amenity-grid article:hover,
  .term-grid article:hover,
  .process-grid article:hover,
  .comparison-grid article:hover,
  .faq-list details:hover {
    border-color: rgba(47, 125, 90, 0.3);
    box-shadow: var(--tile-shadow-soft-hover);
    transform: translate3d(0, -5px, 0);
  }

  .hero-card:hover,
  .hero-deal-card:hover,
  .hero-proof article:hover,
  .hero-signals li:hover,
  .hero-panel div:hover,
  .module-dark .benefit-list article:hover,
  .module-dark .amenity-grid article:hover,
  .module-dark .selection-card:hover,
  .module-dark .format-card:hover,
  .module-dark .quiz-form:hover,
  .module-dark .lead-form:hover,
  .lead-section .lead-form:hover {
    border-color: rgba(214, 179, 91, 0.38);
    box-shadow: var(--tile-glow-hover);
    transform: translate3d(0, -5px, 0);
  }

  .master-image:hover {
    border-color: rgba(47, 125, 90, 0.28);
    box-shadow: var(--tile-shadow-soft-hover);
    transform: translate3d(0, -5px, 0);
  }

  .option-grid label:hover span {
    border-color: rgba(214, 179, 91, 0.4);
    background: rgba(255, 255, 255, 0.09);
    transform: translate3d(0, -4px, 0);
  }

  .option-grid input:checked + span {
    transform: translate3d(0, -2px, 0);
  }

  .hero-deal-card:hover .deal-card-image img,
  .feature-media:hover img,
  .wide-photo button:hover img,
  .selection-card:hover .selection-card-media img,
  .master-image:not(.is-pending-plan):hover img {
    transform: scale(1.025);
  }

  .master-image.is-pending-plan:hover img,
  .format-card:hover .format-card-media.is-pending-plan img {
    transform: scale(1.035);
  }
}

.comparison-note {
  max-width: 860px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 18px;
}

.module.faq-section {
  padding-top: clamp(26px, 3vw, 38px);
  padding-bottom: clamp(72px, 7vw, 108px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 48%),
    var(--stone);
  border-top: 1px solid rgba(11, 16, 13, 0.06);
}

.faq-layout {
  display: block;
  max-width: 980px;
  margin: 0 auto;
}

.faq-intro {
  max-width: 780px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.faq-intro .kicker {
  justify-content: center;
}

.faq-intro p:not(.kicker) {
  max-width: 640px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 940px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(11, 16, 13, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--tile-shadow-soft);
  backdrop-filter: blur(14px);
}

.faq-list summary {
  cursor: pointer;
  min-height: 72px;
  padding: 21px 62px 21px 24px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.24;
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--gold);
  font-size: 28px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 680px;
  padding: 0 62px 24px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.module-dark .faq-list details {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--tile-glow);
}

.module-dark .faq-list summary {
  color: var(--white);
}

.module-dark .faq-list p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-section {
  min-height: 760px;
  display: flex;
  align-items: center;
}

.lead-bg,
.lead-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lead-bg {
  object-fit: cover;
  filter: saturate(0.78) contrast(0.98);
}

.lead-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.92), rgba(5, 7, 5, 0.72) 48%, rgba(5, 7, 5, 0.36)),
    linear-gradient(0deg, rgba(5, 7, 5, 0.82), rgba(5, 7, 5, 0.18));
}

.lead-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.lead-copy h2 {
  max-width: 760px;
  color: var(--white);
}

.lead-copy p {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.lead-copy .final-fact-strip {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 760px;
  padding: 12px 16px;
  border: 1px solid rgba(214, 179, 91, 0.32);
  border-radius: 999px;
  background: rgba(214, 179, 91, 0.12);
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.lead-copy a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(214, 179, 91, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 7, 5, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form.compact {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.consent {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-error,
.form-success {
  margin: 0;
  padding: 12px 14px;
  border-radius: calc(var(--radius) - 6px);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.form-error[hidden],
.form-success[hidden] {
  display: none !important;
}

.form-error {
  border: 1px solid rgba(255, 128, 102, 0.36);
  background: rgba(255, 128, 102, 0.12);
  color: #ffd2c7;
}

.form-success {
  display: grid;
  gap: 20px;
  place-items: center;
  min-height: 220px;
  border: 1px solid rgba(214, 179, 91, 0.34);
  background: rgba(214, 179, 91, 0.13);
  color: var(--gold-2);
  text-align: center;
}

.form-success p {
  max-width: 720px;
  margin: 0;
  color: var(--gold-2);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.form-success .btn {
  min-width: 120px;
}

.quiz-form.is-success,
.lead-form.is-success {
  align-content: center;
}

.quiz-form.is-success > :not([data-form-success]),
.lead-form.is-success > :not([data-form-success]) {
  display: none !important;
}

.lead-form.compact.is-success {
  min-height: 280px;
}

.footer {
  padding: 58px 0 30px;
  background: var(--black);
  color: var(--white);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 46px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 800;
}

.footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.lead-modal {
  width: min(100% - 32px, 980px);
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.lead-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.modal-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  min-height: 560px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.modal-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 42px;
}

.modal-content h3 {
  font-size: 36px;
}

.modal-content p:not(.kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.gallery-modal {
  width: min(100% - 32px, 1420px);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: rgba(7, 8, 7, 0.96);
  color: var(--white);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.gallery-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(14px);
}

.gallery-lightbox-shell {
  position: relative;
  display: grid;
  min-height: min(820px, calc(100vh - 32px));
  min-height: min(820px, calc(100dvh - 32px));
  padding: 22px;
}

.gallery-lightbox-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  min-width: 0;
  margin: 0;
}

.gallery-lightbox-media {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  height: min(74vh, 760px);
  height: min(74dvh, 760px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(64% 70% at 50% 42%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #070807;
}

.gallery-lightbox-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: calc(var(--radius) - 4px);
}

.gallery-lightbox-media.is-pending-plan img {
  max-width: min(100%, 920px);
}

.gallery-lightbox-figure figcaption {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(16px);
  transition:
    background-color var(--card-speed),
    border-color var(--card-speed),
    transform var(--card-speed);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  border-color: rgba(214, 179, 91, 0.42);
  background: rgba(214, 179, 91, 0.16);
  transform: scale(1.04);
}

.gallery-lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}

.gallery-lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-lightbox-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox-prev {
  left: 30px;
}

.gallery-lightbox-next {
  right: 30px;
}

.gallery-lightbox-counter {
  position: absolute;
  right: 82px;
  bottom: 24px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .gallery-modal {
    width: min(100% - 18px, 1420px);
    max-height: calc(100vh - 18px);
    max-height: calc(100dvh - 18px);
  }

  .gallery-lightbox-shell {
    min-height: calc(100vh - 18px);
    min-height: calc(100dvh - 18px);
    padding: 12px;
  }

  .gallery-lightbox-media {
    height: min(68vh, 620px);
    height: min(68dvh, 620px);
  }

  .gallery-lightbox-media img {
    max-height: none;
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 62px;
    width: 48px;
    height: 48px;
    font-size: 36px;
    transform: none;
  }

  .gallery-lightbox-nav:hover {
    transform: scale(1.04);
  }

  .gallery-lightbox-prev {
    left: 18px;
  }

  .gallery-lightbox-next {
    right: 18px;
  }

  .gallery-lightbox-counter {
    right: 70px;
    bottom: 26px;
  }
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
  transition:
    opacity 640ms var(--ease-out),
    transform 640ms var(--ease-out),
    box-shadow var(--card-speed),
    border-color var(--card-speed),
    background-color var(--card-speed);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

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

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

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

@media (max-width: 1180px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  /* legacy responsive .site-nav rules removed — replaced by .fs-menu overlay */

  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 66px;
  }

  .hero-layout,
  .summary-layout,
  .about-layout,
  .location-saleskit-layout,
  .nearby-showcase,
  .scenario-switch,
  .feature-split,
  .feature-split.reverse,
  .project-details,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-deal-card {
    width: 100%;
    max-width: none;
  }

  .process-section .feature-split {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-section .feature-media {
    min-height: 520px;
  }

  .hero-card h1 {
    font-size: 52px;
  }

  .hero-layout {
    width: 100%;
    max-width: none;
    gap: 16px;
  }

  .hero-deal-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  }

  .deal-card-image img {
    height: 100%;
    min-height: 254px;
  }

  .location-map-card {
    justify-self: center;
    width: min(100%, 680px);
  }

  .feature-split.reverse .feature-media {
    order: initial;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel div {
    min-height: 118px;
  }

  .split-head,
  .selection-layout,
  .master-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .master-image {
    justify-self: start;
  }

  .selection-layout {
    align-items: start;
  }

  .selection-intro,
  .selection-checks {
    height: auto;
  }

  .selection-checks {
    grid-template-rows: none;
  }

  .format-grid,
  .summary-metrics,
  .term-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .summary-copy {
    max-width: none;
  }

  .center-head,
  .hero-signals,
  .quiz-form,
  .comparison-note,
  .faq-list {
    max-width: none;
  }

  .selection-intro,
  .selection-intro h2,
  .selection-intro > p:not(.kicker),
  .selection-checks,
  .about-copy,
  .about-copy h2,
  .about-copy > p,
  .master-copy p:not(.kicker),
  .lead-copy h2,
  .lead-copy p {
    max-width: none;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 21px;
  }

  .container {
    width: calc(100% - 36px);
    margin-left: auto;
    margin-right: auto;
  }

  .module {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 98px;
    padding-bottom: 56px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 7, 5, 0.8), rgba(5, 7, 5, 0.28)),
      linear-gradient(90deg, rgba(5, 7, 5, 0.72), rgba(5, 7, 5, 0.18));
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-card h1 {
    font-size: 42px;
  }

  .hero-deal-card {
    display: block;
    max-width: none;
  }

  .deal-card-image {
    display: none;
  }

  .deal-card-body {
    padding: 20px;
  }

  .deal-card-body h2 {
    font-size: 22px;
  }

  .deal-card-body ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin-top: 16px;
  }

  .deal-link {
    width: auto;
    min-width: 220px;
  }

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

  .hero-proof article:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 76px;
  }

  .hero-signals,
  .hero-panel,
  .summary-grid,
  .summary-metrics,
  .facts-grid,
  .benefit-list,
  .amenity-grid,
  .location-proof-grid,
  .location-notes,
  .editorial-steps,
  .selection-cards,
  .format-grid,
  .term-grid,
  .process-grid,
  .comparison-grid,
  .contact-grid,
  .project-details {
    grid-template-columns: 1fr;
  }

  .facts-grid div,
  .summary-grid article,
  .summary-metrics article,
  .location-notes article,
  .process-grid article,
  .comparison-grid article {
    min-height: auto;
  }

  .about-highlights {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .location-saleskit-section {
    padding-top: 28px;
  }

  .location-saleskit-layout,
  .nearby-showcase {
    padding: 22px;
  }

  .location-proof-grid article {
    min-height: 0;
  }

  .location-saleskit-copy > p:not(.kicker),
  .nearby-showcase-copy p:not(.kicker) {
    font-size: 17px;
  }

  .location-map-card {
    max-width: 560px;
  }

  .feature-media img {
    min-height: 360px;
  }

  .process-section .feature-media {
    min-height: 360px;
  }

  .process-section .feature-copy {
    padding-top: 0;
  }

  .process-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .selection-layout {
    gap: 34px;
  }

  .about-layout {
    gap: 42px;
  }

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

  .scenario-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scenario-panels article {
    min-height: 0;
    padding-top: 10px;
  }

  .selection-intro > p:not(.kicker) {
    font-size: 17px;
  }

  .selection-card-featured {
    grid-template-columns: 1fr;
  }

  .selection-card-featured .selection-card-media {
    min-height: 0;
    aspect-ratio: 1920 / 1071;
  }

  .selection-card-featured .selection-card-copy,
  .selection-card-copy {
    padding: 20px;
  }

  .view-cta {
    align-items: stretch;
    flex-direction: column;
    width: min(100% - 36px, 1380px);
  }

  .view-cta p {
    max-width: none;
    text-align: left;
  }

  .project-gallery {
    width: min(100% - 36px, 1380px);
  }

  .project-gallery-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .project-gallery-controls {
    justify-self: start;
  }

  .project-gallery-track {
    gap: 12px;
  }

  .project-gallery-slide {
    flex-basis: 86vw;
    grid-template-rows: 320px auto;
  }

  .project-gallery-slide.is-square,
  .project-gallery-slide.is-plan {
    flex-basis: 78vw;
  }

  .project-gallery-slide.is-master-plan {
    flex-basis: 86vw;
  }

  .master-image {
    max-width: 400px;
    justify-self: center;
  }

  .master-image img {
    max-height: 300px;
  }

  .apartment-examples {
    width: min(100% - 36px, 1380px);
    margin-top: 48px;
  }

  .apartment-example-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .apartment-example-card {
    display: grid;
    grid-template-columns: minmax(180px, 42%) minmax(0, 1fr);
    align-items: stretch;
  }

  .apartment-example-card button {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .apartment-example-card div {
    padding: 18px;
  }

  .apartment-example-card h3 {
    font-size: 22px;
  }

  .apartment-example-card p {
    font-size: 15px;
  }

  .wide-photo {
    width: min(100% - 28px, 1380px);
  }

  .wide-photo img {
    height: 430px;
  }

  .wide-photo figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .format-card p {
    min-height: 0;
  }

  .format-card-media {
    aspect-ratio: 1 / 1.12;
    min-height: 390px;
  }

  .format-card-media-static img {
    max-height: 100%;
  }

  .format-card-body {
    grid-template-rows: auto;
  }

  .lead-section {
    min-height: 0;
  }

  .modal-shell {
    grid-template-columns: 1fr;
  }

  .modal-image {
    display: none;
  }

  .modal-content {
    padding: 34px 18px 22px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

@media (max-width: 600px) {
  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  .container {
    width: calc(100% - 28px);
    margin-left: auto;
    margin-right: auto;
  }

  .location-saleskit-layout,
  .nearby-showcase {
    padding: 16px;
    border-radius: 24px;
  }

  .location-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .location-proof-grid article {
    padding: 16px;
  }

  .location-proof-grid strong {
    font-size: 22px;
  }

  .location-proof-grid span {
    font-size: 14px;
  }

  .location-map-card figcaption {
    left: 10px;
    bottom: 10px;
    font-size: 11px;
  }

  .nearby-showcase-copy h3 {
    font-size: 28px;
  }

  .project-gallery {
    width: min(100% - 28px, 1380px);
    margin-top: 42px;
  }

  .project-gallery-head {
    gap: 18px;
    margin-bottom: 20px;
  }

  .project-gallery-head p:not(.kicker) {
    font-size: 16px;
  }

  .project-gallery-controls button {
    width: 44px;
    height: 44px;
  }

  .project-gallery-track {
    gap: 10px;
  }

  .project-gallery-slide {
    flex-basis: 84vw;
    grid-template-rows: 280px auto;
  }

  .project-gallery-slide.is-square,
  .project-gallery-slide.is-plan {
    flex-basis: 78vw;
  }

  .project-gallery-slide.is-master-plan {
    flex-basis: 84vw;
  }

  .master-image {
    max-width: min(100%, 340px);
    padding: 12px;
  }

  .master-image img {
    max-height: 240px;
  }

  .apartment-examples {
    width: min(100% - 28px, 1380px);
    margin-top: 44px;
  }

  .apartment-examples-head {
    text-align: left;
  }

  .apartment-example-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 22px;
  }

  .apartment-example-card {
    display: block;
  }

  .apartment-example-card button {
    aspect-ratio: 16 / 10;
    max-height: 240px;
  }

  .apartment-example-card div {
    padding: 16px;
  }

  .apartment-example-card span {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .apartment-example-card h3 {
    font-size: 21px;
  }

  .apartment-example-card p {
    margin-top: 9px;
    font-size: 14px;
  }

  .gallery-lightbox-media {
    height: min(62vh, calc(100dvh - 190px));
    min-height: 0;
  }

  .site-header {
    width: calc(100% - 28px);
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    min-height: 58px;
    padding: 8px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 124px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .header-actions {
    justify-self: end;
    gap: 6px;
  }

  .messenger-links {
    gap: 4px;
  }

  .messenger-link {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .messenger-link svg {
    width: 17px;
    height: 17px;
  }

  .messenger-link-telegram svg {
    width: 16px;
    height: 16px;
  }

  .messenger-link-max svg {
    width: 100%;
    height: 100%;
  }

  .lang-switch {
    padding: 2px;
  }

  .lang-switch :is(a, button) {
    min-width: 31px;
    height: 30px;
    padding: 0 8px;
    font-size: 10px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .site-nav {
    top: 72px;
    width: calc(100% - 16px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mobile-break {
    display: initial;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 46px;
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
    padding: 18px;
  }

  .hero-card > * {
    min-width: 0;
  }

  .hero-card h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .hero-badges {
    margin-bottom: 16px;
  }

  .hero-badges span {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .hero-lead {
    margin-top: 16px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 18px;
  }

  .hero-proof article {
    min-height: 70px;
    padding: 12px;
  }

  .hero-proof article:nth-child(3) {
    grid-column: 1 / -1;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 12px;
  }

  .deal-card-body {
    padding: 18px;
  }

  .deal-card-body h2 {
    font-size: 20px;
  }

  .deal-card-body ul {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .deal-link {
    width: 100%;
    min-width: 0;
  }

  .summary-section {
    padding: 34px 0 64px;
  }

  .summary-copy {
    padding: 22px;
  }

  .summary-copy h2 {
    font-size: 28px;
  }

  .summary-copy p:not(.kicker) {
    font-size: 16px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .split-head {
    gap: 24px;
  }

  .about-copy > p,
  .scenario-panels p {
    font-size: 16px;
  }

  .about-details {
    margin-top: 42px;
  }

  .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
    margin-top: 0;
  }

  .about-highlights span {
    padding: 0 16px;
  }

  .about-highlights span:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .about-highlights strong {
    font-size: 24px;
  }

  .about-consult {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-layout {
    max-width: none;
  }

  .faq-intro {
    max-width: none;
  }

  .faq-list {
    max-width: none;
    margin: 0;
  }

  .faq-list summary {
    min-height: 66px;
    padding: 18px 54px 18px 18px;
    font-size: 16px;
  }

  .faq-list p {
    padding: 0 18px 20px;
  }

  .about-photo img {
    height: 320px;
    min-height: 0;
  }

  .scenario-switch {
    gap: 18px;
    margin-top: 40px;
    padding: 10px;
  }

  .scenario-tabs {
    grid-template-columns: 1fr;
  }

  .scenario-tabs button:hover {
    transform: none;
  }

  .scenario-panels h3 {
    font-size: 23px;
  }

  .scenario-panels article {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 22px;
  }

  .scenario-panels span {
    grid-row: auto;
  }

  .format-grid {
    gap: 14px;
  }

  .selection-checks {
    grid-template-columns: 1fr;
  }

  .selection-checks span {
    min-height: 62px;
    padding: 14px 0 14px 44px;
  }

  .format-card-body {
    padding: 22px;
  }

  .format-card-media {
    padding: 14px;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-signals {
    display: none;
  }

  .hero-panel {
    display: none;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .center-cta .btn,
  .process-layout .btn {
    width: 100%;
  }

  .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .about-highlights span {
    padding: 0 14px;
    border-left: 1px solid rgba(11, 16, 13, 0.1);
  }

  .about-highlights span:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .about-consult {
    padding-right: 86px;
  }

  .process-section .editorial-steps article,
  .process-cta {
    padding-right: 92px;
  }

  .option-grid,
  .option-grid-five {
    grid-template-columns: 1fr;
  }

  .quiz-form,
  .lead-form {
    padding: 18px;
  }

  .quiz-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

}

@media (max-width: 380px) {
  .brand-logo {
    width: 96px;
  }

  .header-actions {
    gap: 4px;
  }

  .lang-switch :is(a, button) {
    min-width: 27px;
    height: 28px;
    padding: 0 6px;
  }

  .messenger-link {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
}

/* =========================================================================
   EDITORIAL LAYER — Premium editorial overrides for Love It Wongamat Beach.
   Generated with UI/UX Pro Max guidelines (real-estate luxury + editorial).
   Only adds new tokens / refines a small set of existing rules.
   ========================================================================= */

:root {
  --display-font: "Cormorant Garamond", "Cormorant", "Times New Roman", Georgia, serif;
  --ed-ink: #14110F;
  --ed-ink-2: #1C1917;
  --ed-cream: #F7F4EC;
  --ed-gold: #C9A14A;
  --ed-gold-2: #E2C079;
  --ed-line-soft: rgba(214, 179, 91, 0.22);
  --ed-radius: 14px;
  --ed-radius-lg: 22px;
  --ease-luxe: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* — Display typography — switch H1/H2 to editorial serif with fluid scale. */
h1,
h2,
.hero-card h1,
.hero-title,
.summary-copy h2,
.deal-card-body h2,
.wide-photo figcaption strong {
  font-family: var(--display-font);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

h1,
.hero-card h1,
.hero-title {
  font-size: 72px;
  font-weight: 500;
}

h2 {
  font-size: 54px;
  font-weight: 500;
}

.hero-title em {
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-2);
  letter-spacing: 0;
}

.summary-copy h2,
.deal-card-body h2 {
  font-size: 32px;
  letter-spacing: 0;
}

h3 {
  /* keep h3 in sans for UI clarity, but tighten */
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0;
}

/* — Kicker refinement: smaller, more refined caps. */
.kicker {
  font-size: 11px;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--ed-gold-2);
}

/* — Hero refinement — calmer background, editorial composition. */
.hero {
  background:
    radial-gradient(80% 60% at 78% 18%, rgba(214, 179, 91, 0.10), transparent 60%),
    linear-gradient(160deg, #0E0C0A 0%, #15110D 38%, #0F2A1F 78%, #0A0907 100%);
}

.hero-card {
  border-color: var(--ed-line-soft);
  background: linear-gradient(135deg, rgba(20, 17, 15, 0.92), rgba(16, 45, 34, 0.62));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
}

.hero-microcopy {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 28px;
  gap: 12px;
}

/* — WhatsApp / Telegram primary buttons — editorial and confident. */
.btn-whatsapp,
.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(214, 179, 91, 0.42);
  background:
    linear-gradient(135deg, rgba(214, 179, 91, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(16, 18, 15, 0.72);
  color: var(--gold-2);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  font-weight: 700;
  letter-spacing: 0;
}

.btn-whatsapp:hover,
.btn-telegram:hover {
  border-color: rgba(214, 179, 91, 0.72);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(214, 179, 91, 0.2);
}

.btn-whatsapp svg,
.btn-telegram svg {
  width: 18px;
  height: 18px;
}

.btn-whatsapp svg path,
.btn-telegram svg path {
  fill: currentColor;
}

/* — Lead messengers row — pair with form. */
.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.lead-microcopy {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

/* legacy single anchor in lead-copy if still rendered */
.lead-copy > a[data-messenger="whatsapp"]:not(.btn) {
  display: none;
}

/* — Sticky CTA: one calm button, compact menu on demand. — */
.sticky-cta {
  position: fixed;
  z-index: 950;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 280ms var(--ease-luxe), transform 280ms var(--ease-luxe);
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.sticky-cta.is-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.sticky-cta-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(214, 179, 91, 0.38);
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24), 0 0 0 8px rgba(20, 17, 15, 0.1);
  cursor: pointer;
  transition: transform 220ms var(--ease-luxe), box-shadow 220ms var(--ease-luxe), filter 220ms var(--ease-luxe);
}

.sticky-cta-toggle:hover,
.sticky-cta.is-open .sticky-cta-toggle {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3), 0 0 0 8px rgba(214, 179, 91, 0.12);
}

.sticky-cta-toggle svg,
.sticky-cta-option svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.sticky-cta-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  display: grid;
  gap: 8px;
  min-width: 188px;
  padding: 8px;
  border: 1px solid rgba(214, 179, 91, 0.24);
  border-radius: 18px;
  background: rgba(16, 15, 13, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 220ms var(--ease-luxe), transform 220ms var(--ease-luxe), visibility 220ms var(--ease-luxe);
}

.sticky-cta.is-open .sticky-cta-menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
}

.sticky-cta-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--ease-luxe), background 180ms var(--ease-luxe), color 180ms var(--ease-luxe);
}

.sticky-cta-option:hover {
  transform: translateY(-1px);
  color: var(--ink);
  background: var(--gold);
}

.sticky-cta-quiz {
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold), var(--gold-2));
}

/* — When modal/nav is open, hide sticky to avoid overlap. */
body.modal-open .sticky-cta,
body.nav-open .sticky-cta {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

@media (max-width: 640px) {
  .sticky-cta {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .sticky-cta-toggle {
    width: 50px;
    height: 50px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25), 0 0 0 6px rgba(20, 17, 15, 0.08);
  }

  .sticky-cta-menu {
    right: -2px;
    min-width: min(210px, calc(100vw - 36px));
    border-radius: 16px;
  }
}

/* — Section rhythm — slightly more breathing for editorial feel. */
.module {
  padding: clamp(72px, 9vw, 132px) 0;
}

.section-head {
  margin-bottom: clamp(32px, 4vw, 64px);
}

/* — Reveal motion — refine timing and add subtle blur clear. */
.reveal-item {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(6px);
  transition:
    opacity 720ms var(--ease-luxe) var(--reveal-delay, 0ms),
    transform 720ms var(--ease-luxe) var(--reveal-delay, 0ms),
    filter 720ms var(--ease-luxe) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .sticky-cta {
    transition: none;
  }
}

/* — Tighter mobile sticky CTA */
@media (max-width: 600px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
    padding: 8px;
    gap: 8px;
  }
  .sticky-cta-btn {
    width: 48px;
    height: 48px;
  }
  .sticky-cta-btn svg {
    width: 22px;
    height: 22px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .lead-actions {
    flex-direction: column;
  }
  .lead-actions .btn {
    width: 100%;
  }
  .faq-list {
    padding-right: 78px;
  }
}

/* — A11y polish — focus visible for sticky CTA */
.sticky-cta-btn:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

/* =========================================================================
   FULLSCREEN MENU OVERLAY
   Triggered from .menu-trigger in the header. Replaces the old drop-down nav.
   ========================================================================= */

.fs-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  background: #0E0C0A;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 380ms var(--ease-luxe), visibility 0ms 380ms;
}

.fs-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 40% at 12% 10%, rgba(214, 179, 91, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(14, 12, 10, 1) 0%, rgba(14, 12, 10, 0.96) 100%);
  pointer-events: none;
}

.fs-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 380ms var(--ease-luxe), visibility 0ms 0ms;
}

.fs-menu-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: clamp(72px, 10vh, 120px) clamp(24px, 5vw, 80px) clamp(36px, 5vh, 64px);
}

.fs-menu-close {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(24px, 4vw, 80px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  transition: border-color var(--speed), background var(--speed), color var(--speed), transform var(--speed);
}

.fs-menu-close svg {
  width: 22px;
  height: 22px;
}

.fs-menu-close:hover {
  border-color: var(--ed-gold-2);
  background: rgba(214, 179, 91, 0.12);
  color: var(--ed-gold-2);
  transform: rotate(90deg);
}

.fs-menu-lang {
  position: absolute;
  top: clamp(20px, 3vh, 36px);
  right: clamp(88px, calc(4vw + 64px), 152px);
  z-index: 2;
}

.fs-menu-kicker {
  margin: 0 0 clamp(28px, 4vh, 48px);
  color: var(--ed-gold-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fs-menu-nav {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.4vh, 18px);
}

.fs-menu-nav a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: clamp(16px, 2.5vw, 32px);
  width: max-content;
  max-width: 100%;
  padding: clamp(6px, 1vh, 12px) 0;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color var(--speed), transform var(--speed);
}

.fs-menu-num {
  flex-shrink: 0;
  color: var(--ed-gold-2);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

.fs-menu-label {
  display: inline-block;
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 76px;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.94);
  transition: color var(--speed), transform var(--speed);
}

.fs-menu-nav a:hover .fs-menu-label,
.fs-menu-nav a:focus-visible .fs-menu-label {
  color: var(--ed-gold-2);
}

.fs-menu-nav a:hover {
  transform: translateX(8px);
}

.fs-menu-foot {
  margin-top: clamp(40px, 6vh, 80px);
  padding-top: clamp(24px, 3vh, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 32px);
}

.fs-menu-foot-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fs-menu-foot .fs-menu-kicker {
  margin: 0;
}

.fs-menu-lang .lang-switch-menu {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  width: fit-content;
}

.fs-menu-lang .lang-switch-menu :is(a, button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--speed), color var(--speed);
}

.fs-menu-lang .lang-switch-menu :is(a, button):hover,
.fs-menu-lang .lang-switch-menu :is(a, button).active {
  background: var(--ed-gold-2);
  color: #0E0C0A;
}

.fs-menu-messengers {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fs-menu-messengers .messenger-link {
  width: auto;
  height: 48px;
  flex: 0 0 auto;
  padding: 0 18px;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fs-menu-messengers .messenger-link svg {
  width: 18px;
  height: 18px;
}

.fs-menu-messengers .messenger-link:hover {
  border-color: var(--ed-gold-2);
  background: rgba(214, 179, 91, 0.10);
  color: var(--ed-gold-2);
  transform: none;
}

.fs-menu-messengers .messenger-link-whatsapp,
.fs-menu-messengers .messenger-link-telegram {
  background: transparent;
}

.fs-menu-messengers .messenger-link span {
  display: inline-block;
}

/* — Body lock when menu is open */
body.fs-menu-open {
  overflow: hidden;
}

/* — Hide sticky CTA when fs-menu open */
body.fs-menu-open .sticky-cta {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* — Header responsive
   Desktop (>= 1024px): inline nav, lang switch, CTA visible
   Tablet/Mobile (< 1024px): only logo + menu trigger; everything else moves into fs-menu
   ============================================================================ */

@media (max-width: 1023px) {
  .site-header-inner {
    grid-template-columns: auto auto;
    min-height: 64px;
    padding: 10px 0;
    gap: 12px;
  }
  .site-nav-desktop {
    display: none;
  }
  .lang-switch-desktop {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .menu-trigger {
    display: inline-flex;
  }
  .brand-logo-img {
    width: 126px;
  }
  .header-right {
    gap: 8px;
  }
}

@media (max-width: 600px) {
  .brand-logo-img {
    width: 112px;
  }
  .menu-trigger-label {
    display: none;
  }
  .menu-trigger {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }
  .menu-trigger-icon {
    width: 16px;
  }
  .menu-trigger-icon span {
    width: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fs-menu,
  .fs-menu-nav a,
  .fs-menu-close {
    transition: none !important;
  }
}

/* =========================================================================
   HEADER — make it static, not floating absolute over hero.
   The header sits at the top of the page and scrolls away with content.
   ========================================================================= */

.site-header {
  position: static;
  top: auto;
  left: auto;
  z-index: 50;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(214, 179, 91, 0.18);
  border-radius: 0;
  background: rgba(20, 17, 15, 0.98);
  box-shadow: none;
  transform: none;
}

.site-header .site-header-inner {
  width: calc(100% - 48px);
  max-width: none;
}

@media (max-width: 600px) {
  .site-header {
    width: 100%;
    margin: 0;
    padding: 0;
    transform: none;
    left: auto;
    top: auto;
  }

  .site-header .site-header-inner {
    width: calc(100% - 28px);
  }
}

/* — Hero editorial — full-bleed image with immediate contact form. */

.hero-editorial {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  padding: clamp(72px, 10vw, 140px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background: #0E0C0A;
}

.hero-editorial::before {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1920 / 1071;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.06) brightness(0.82);
  transform: scale(1.04);
}

.hero-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.82) 0%, rgba(7, 6, 5, 0.68) 36%, rgba(7, 6, 5, 0.3) 72%, rgba(7, 6, 5, 0.18) 100%),
    linear-gradient(180deg, rgba(14, 12, 10, 0.58) 0%, rgba(14, 12, 10, 0.2) 34%, rgba(14, 12, 10, 0.7) 82%, rgba(14, 12, 10, 0.95) 100%),
    radial-gradient(56% 58% at 18% 43%, rgba(0, 0, 0, 0.58), transparent 68%);
}

.hero-editorial-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  column-gap: clamp(36px, 5vw, 76px);
  row-gap: 0;
  align-items: center;
  width: min(100% - 48px, 1180px);
  max-width: 1180px;
  min-width: 0;
}

.hero-editorial .kicker,
.hero-editorial .hero-title,
.hero-editorial .hero-lead,
.hero-anchor {
  grid-column: 1;
}

.hero-editorial .kicker {
  margin-bottom: 18px;
  color: var(--ed-gold-2);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58);
}

.hero-editorial .hero-title {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: clamp(52px, 5.4vw, 78px);
  line-height: 1.04;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.58), 0 16px 46px rgba(0, 0, 0, 0.34);
}

.hero-editorial .hero-title span {
  display: block;
}

.hero-editorial .hero-lead span {
  display: block;
}

.hero-editorial .hero-lead {
  margin-top: clamp(18px, 2vw, 26px);
  max-width: 640px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  font-weight: 450;
  line-height: 1.56;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.62), 0 10px 30px rgba(0, 0, 0, 0.34);
}

.hero-anchor {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.58);
}

.hero-anchor span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(214, 179, 91, 0.42);
  border-radius: 999px;
  background: rgba(20, 17, 15, 0.50);
  box-shadow: inset 0 0 0 1px rgba(214, 179, 91, 0.18), 0 10px 26px rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-anchor span:first-child,
.hero-anchor span:nth-child(2) {
  color: var(--ed-gold-2);
}

.hero-actions-single {
  margin-top: clamp(28px, 3vw, 40px);
  justify-content: flex-start;
  width: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-contact-card {
  grid-column: 2;
  grid-row: 1 / 5;
  align-self: center;
  width: 100%;
  min-width: 0;
  margin-top: 0;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(214, 179, 91, 0.48);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(11, 10, 9, 0.68);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.hero-contact-person {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: center;
}

.hero-contact-person > div {
  min-width: 0;
}

.hero-contact-person img {
  width: 78px;
  height: 86px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid rgba(214, 179, 91, 0.45);
  filter: saturate(0.94) contrast(1.03) brightness(1.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.hero-contact-person span,
.hero-contact-person strong,
.hero-contact-person small {
  display: block;
}

.hero-contact-person span {
  color: var(--ed-gold-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-contact-person strong {
  margin-top: 4px;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.18;
  overflow-wrap: break-word;
}

.hero-contact-person small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.hero-mini-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.hero-mini-form input[type="tel"] {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(214, 179, 91, 0.10);
}

.hero-mini-form input[type="tel"]::placeholder {
  color: rgba(17, 17, 17, 0.52);
}

.hero-mini-form input[type="tel"]:focus {
  border-color: rgba(214, 179, 91, 0.88);
  box-shadow: 0 0 0 4px rgba(214, 179, 91, 0.18);
}

.hero-mini-form .btn {
  min-height: 54px;
  min-width: 0;
  white-space: nowrap;
}

.hero-mini-form .form-error,
.hero-mini-form .form-success {
  grid-column: 1 / -1;
}

.hero-mini-form .form-success {
  min-height: 118px;
}

.hero-mini-form .form-success p {
  font-size: 17px;
}

.hero-mini-form.is-success > :not([data-form-success]) {
  display: none !important;
}

.hero-direct-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-direct-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: normal;
}

.hero-direct-links a:first-child {
  border-color: rgba(47, 207, 106, 0.36);
  background: rgba(47, 207, 106, 0.13);
  color: #dfffe9;
}

.hero-direct-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 179, 91, 0.62);
  background: rgba(214, 179, 91, 0.16);
}

.hero-direct-links-compact {
  display: none;
}

.btn-lg {
  min-height: 56px;
  padding: 16px 32px;
  font-size: 15px;
  letter-spacing: 0;
}

.visual-primer-section {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3vw, 42px) 0 clamp(18px, 2.6vw, 34px);
}

.visual-primer {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: stretch;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(20, 17, 15, 0.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 94% 8%, rgba(214, 179, 91, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 240, 232, 0.82));
  box-shadow: 0 24px 64px rgba(20, 17, 15, 0.08);
}

.visual-primer-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
}

.visual-primer-copy h2 {
  max-width: 520px;
  color: var(--ed-ink);
  font-family: var(--display-font);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.04;
}

.visual-primer-copy p:not(.kicker) {
  max-width: 520px;
  color: rgba(20, 17, 15, 0.64);
  font-size: 17px;
  line-height: 1.55;
}

.visual-primer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-width: 0;
}

.visual-primer-card {
  display: grid;
  grid-template-rows: minmax(150px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(20, 17, 15, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(20, 17, 15, 0.06);
}

.visual-primer-card button {
  display: block;
  width: 100%;
  min-height: 150px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(11, 16, 13, 0.06);
}

.visual-primer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--image-speed);
}

.visual-primer-card:hover img {
  transform: scale(1.035);
}

.visual-primer-card div {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.visual-primer-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.visual-primer-card h3 {
  color: var(--ink);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.1;
}

.hero-price-section {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3.2vw, 44px) 0 clamp(60px, 6vw, 88px);
}

.hero-price-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(20, 17, 15, 0.10);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 12%, rgba(214, 179, 91, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 240, 232, 0.84));
  box-shadow: 0 28px 70px rgba(20, 17, 15, 0.08);
}

.hero-price-card .kicker {
  margin-bottom: 14px;
}

.hero-price-card h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ed-ink);
  font-family: var(--display-font);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-price-card p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(20, 17, 15, 0.66);
  font-size: 18px;
  line-height: 1.58;
}

.hero-price-card aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(214, 179, 91, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 12%, rgba(214, 179, 91, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.90), rgba(247, 244, 237, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 24px 54px rgba(20, 17, 15, 0.08);
}

.hero-price-card aside span {
  color: var(--ed-gold-2);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.hero-price-card aside p {
  margin: 18px 0 24px;
  color: rgba(20, 17, 15, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.hero-price-card aside .btn {
  width: 100%;
}

.price-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.price-matrix article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(20, 17, 15, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(20, 17, 15, 0.06);
}

.price-matrix span {
  color: rgba(20, 17, 15, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-matrix strong {
  color: var(--ed-ink);
  font-size: clamp(21px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.05;
}

.price-matrix small {
  color: rgba(20, 17, 15, 0.58);
  font-size: 14px;
  font-weight: 750;
}

.price-note {
  max-width: none;
  margin: 12px 0 0;
  color: rgba(20, 17, 15, 0.58);
  font-size: 14px;
  font-weight: 700;
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(270px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-top: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(20, 17, 15, 0.10);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 226, 0.86)),
    var(--white);
  box-shadow: 0 22px 58px rgba(20, 17, 15, 0.08);
}

.decision-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.decision-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(26px, 2.35vw, 38px);
  font-weight: 880;
  line-height: 1.04;
}

.decision-copy p:not(.kicker) {
  max-width: 520px;
  margin: 0;
  color: rgba(20, 17, 15, 0.66);
  font-size: 17px;
  line-height: 1.5;
}

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

.decision-grid article {
  display: grid;
  align-content: start;
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(214, 179, 91, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 237, 0.92)),
    var(--white);
  box-shadow: 0 18px 42px rgba(20, 17, 15, 0.06);
}

.decision-grid span {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 45, 34, 0.08);
  color: var(--jade);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-grid h3 {
  margin-top: 16px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
}

.decision-grid p {
  margin-top: 10px;
  color: rgba(20, 17, 15, 0.64);
  font-size: 15px;
  line-height: 1.45;
}

.decision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 2;
}

.trust-panel {
  display: grid;
  gap: 9px;
  max-width: 640px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(214, 179, 91, 0.30);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.trust-panel span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead-copy .trust-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.manager-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 680px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(214, 179, 91, 0.30);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.manager-photo {
  width: 92px;
  height: 104px;
  border: 1px solid rgba(214, 179, 91, 0.34);
  border-radius: 14px;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.92) contrast(1.04) brightness(1.02);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.manager-avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214, 179, 91, 0.96), rgba(47, 125, 90, 0.88));
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.manager-card span {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.manager-card h3 {
  margin-top: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.15;
}

.lead-copy .manager-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  h1,
  .hero-card h1,
  .hero-title {
    font-size: 58px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-editorial .hero-title {
    font-size: clamp(48px, 6vw, 64px);
  }

  .fs-menu-label {
    font-size: 58px;
  }
}

@media (max-width: 860px) {
  h1,
  .hero-card h1,
  .hero-title {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-editorial .hero-title {
    font-size: 46px;
  }

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

  .visual-primer {
    grid-template-columns: 1fr;
  }

  .hero-price-card aside {
    width: 100%;
  }

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

  .decision-panel,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .decision-actions {
    grid-column: 1;
  }

  .fs-menu-label {
    font-size: 42px;
  }
}

@media (max-width: 920px) {
  .hero-editorial-layout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: min(100% - 40px, 720px);
    max-width: calc(100% - 40px);
  }
  .hero-contact-card {
    width: min(100%, 620px);
    max-width: 100%;
    margin-top: 24px;
  }
}

@media (max-width: 600px) {
  .hero-editorial {
    min-height: 0;
    padding: 44px 0 42px;
  }
  .hero-bg img {
    filter: saturate(0.95) contrast(1.06) brightness(0.72);
  }
  .hero-bg-shade {
    background:
      linear-gradient(90deg, rgba(7, 6, 5, 0.86) 0%, rgba(7, 6, 5, 0.72) 55%, rgba(7, 6, 5, 0.44) 100%),
      linear-gradient(180deg, rgba(14, 12, 10, 0.58) 0%, rgba(14, 12, 10, 0.3) 34%, rgba(14, 12, 10, 0.8) 100%);
  }
  h1,
  .hero-card h1,
  .hero-title,
  .hero-editorial .hero-title {
    font-size: 34px;
  }
  h2 {
    font-size: 30px;
  }
  .fs-menu-label {
    font-size: 34px;
  }
  .hero-editorial .hero-lead {
    font-size: 15px;
    max-width: 100%;
    margin-top: 14px;
  }
  .hero-editorial .hero-title {
    font-size: 28px;
    line-height: 1.12;
    text-wrap: auto;
  }
  .hero-editorial-layout {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }
  .hero-actions-single .btn-lg {
    width: 100%;
  }
  .hero-contact-card {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    padding: 12px;
    border-radius: 16px;
  }
  .hero-contact-person {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }
  .hero-contact-person img {
    width: 52px;
    height: 58px;
    border-radius: 12px;
  }
  .hero-contact-person strong {
    font-size: 15px;
    line-height: 1.22;
  }
  .hero-contact-person small {
    display: none;
  }
  .hero-mini-form {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }
  .hero-mini-form input[type="tel"],
  .hero-mini-form .btn {
    width: 100%;
    min-height: 50px;
    white-space: normal;
  }
  .hero-direct-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    margin-top: 10px;
  }
  .hero-direct-links a {
    flex: 1 1 auto;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 36px;
  }
  .hero-anchor {
    gap: 6px;
    margin-top: 14px;
  }
  .hero-anchor span {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 10px;
  }
  .hero-price-section {
    padding: 22px 0 54px;
  }
  .visual-primer-section {
    padding: 18px 0 18px;
  }
  .visual-primer {
    padding: 16px;
    border-radius: 16px;
  }
  .visual-primer-copy h2 {
    font-size: 28px;
  }
  .visual-primer-copy p:not(.kicker) {
    font-size: 15px;
  }
  .visual-primer-grid {
    grid-template-columns: 1fr;
  }
  .visual-primer-card {
    grid-template-columns: minmax(128px, 42%) minmax(0, 1fr);
    grid-template-rows: none;
  }
  .visual-primer-card button {
    height: 100%;
    min-height: 132px;
    aspect-ratio: auto;
  }
  .visual-primer-card div {
    align-content: center;
    padding: 14px;
  }
  .visual-primer-card h3 {
    font-size: 18px;
  }
  .hero-price-card {
    padding: 22px;
    border-radius: 16px;
  }
  .hero-price-card h2 {
    font-size: 32px;
  }
  .hero-price-card p {
    font-size: 16px;
  }
  .mobile-soft-break {
    display: block;
  }
  .price-matrix {
    grid-template-columns: 1fr;
  }
  .price-matrix article {
    min-height: 0;
  }
  .decision-panel {
    padding: 20px;
    border-radius: 16px;
  }
  .decision-actions .btn {
    width: 100%;
  }
  .manager-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }
  .manager-photo,
  .manager-avatar {
    width: 64px;
    height: 64px;
    font-size: 18px;
  }
  .manager-card h3 {
    font-size: 18px;
  }
}
