/* ===== CSS Variables — Warm Dark + Beige Contrast ===== */
:root {
  --bg-dark: #2b2623;
  --bg-dark-alt: #322e2a;
  --bg-dark-card: #353130;
  --bg-dark-elevated: #3d3835;
  --bg-footer: #1e1b19;

  --bg-beige: #ece6db;
  --bg-beige-alt: #e4ddd1;
  --bg-warm: #dfd7ca;

  --brown: #c4a26e;
  --brown-light: #d4b88a;
  --brown-dark: #a8864f;
  --brown-muted: rgba(196, 162, 110, 0.15);

  --text-light: #ede9e3;
  --text-light-secondary: rgba(237, 233, 227, 0.65);
  --text-light-muted: rgba(237, 233, 227, 0.4);

  --text-dark: #2b2623;
  --text-dark-secondary: rgba(43, 38, 35, 0.65);
  --text-dark-muted: rgba(43, 38, 35, 0.4);

  --border-dark: rgba(255, 255, 255, 0.08);
  --border-dark-hover: rgba(255, 255, 255, 0.18);
  --border-light: rgba(43, 38, 35, 0.1);

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --gap: 40px;
  --section-py: 80px;
  --transition: 0.3s ease;
  --gradient-h: 100px;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-light);
  background-color: var(--bg-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input { font-family: inherit; }

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ===== Section base ===== */
.section {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/* --- Beige (light) sections --- */
.section--beige {
  background-color: var(--bg-beige);
  color: var(--text-dark);
}

/* --- Section transitions: двойная волна (dark→beige) и арка (beige→dark) ---
   Применяются автоматически через sibling-селекторы.
   Фигура находится ВНУТРИ секции (top: 0), overflow: hidden не мешает.    */

/* Двойная волна: тёмная волна на верхушке светлого блока */
.section:not(.section--beige) + .section--beige::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0,35 C360,64 720,4 1080,35 C1260,50 1380,24 1440,18 L1440,0 L0,0 Z' fill='%232b2623' opacity='0.38'/%3E%3Cpath d='M0,44 C480,7 720,62 1080,28 C1260,10 1380,42 1440,26 L1440,0 L0,0 Z' fill='%232b2623'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  z-index: 0;
  pointer-events: none;
}

/* Арка: бежевый купол на верхушке тёмного блока */
/* Исключение: faq→contact — без перехода */
.faq + .contact::before { display: none; }

.section--beige + .section:not(.section--beige)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cellipse cx='720' cy='0' rx='820' ry='70' fill='%23ece6db'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  z-index: 0;
  pointer-events: none;
}


/* Content above the gradient */
.section > .container,
.section--beige > .container {
  position: relative;
  z-index: 1;
}

.section__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 16px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

/* dark section title inherits --text-light */
/* beige section title */
.section--beige .section__title {
  color: var(--text-dark);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.btn--primary {
  background-color: var(--brown);
  color: var(--bg-dark);
}
.btn--primary:hover {
  background-color: var(--brown-light);
}

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

.btn--outline-brown {
  border: 1px solid var(--brown);
  color: var(--brown);
  background: transparent;
}
.btn--outline-brown:hover {
  background-color: var(--brown);
  color: var(--bg-dark);
}

.btn--outline-light {
  border: 1px solid rgba(255,255,255,0.24);
  color: var(--text-light);
  background: transparent;
}
.btn--outline-light:hover {
  border-color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.08);
}

/* In beige sections, outline buttons keep same style — brown on light works */

.btn--lg {
  padding: 18px 44px;
  font-size: 0.9375rem;
}
.btn--sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}
.btn--full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.header__top {
  background-color: var(--bg-beige);
  border-bottom: 1px solid rgba(43, 38, 35, 0.08);
  padding: 8px 0;
  max-height: 60px;
  overflow: hidden;
  transition:
    max-height var(--transition),
    padding var(--transition),
    border-color var(--transition),
    opacity var(--transition);
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(43, 38, 35, 0.62);
}

.header__address-icon {
  color: var(--brown-dark);
  flex-shrink: 0;
}

.header__address-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1.2;
  white-space: nowrap;
}

.header__address-label {
  font-weight: 600;
  color: rgba(43, 38, 35, 0.82);
}

.header__top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__email {
  font-size: 0.75rem;
  color: rgba(43, 38, 35, 0.62);
  transition: color var(--transition);
}
.header__email:hover { color: var(--brown-dark); }

.header__socials {
  display: flex;
  gap: 12px;
}

.header__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  min-height: 16px;
  color: rgba(43, 38, 35, 0.62);
  transition: color var(--transition);
}
.header__social:hover { color: var(--brown-dark); }

.header__social--max {
  min-width: 30px;
}

.header__social-mark {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  text-transform: uppercase;
  line-height: 1;
}

.header__main {
  background-color: var(--bg-dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: all var(--transition);
}

.header--scrolled .header__top {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
  opacity: 0;
}

.header--scrolled .header__main {
  background-color: rgba(43, 38, 35, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  position: relative;
  padding: 2px 0;
  transition: transform var(--transition);
}

.header__logo:hover {
  transform: translateY(-1px);
}

.header__logo-icon {
  width: clamp(78px, 6vw, 104px);
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.12));
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  margin-left: -2px;
}

.header__logo-mark {
  font-family: var(--font-heading);
  font-size: 1.88rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--brown);
  line-height: 0.95;
  background: linear-gradient(180deg, #f2dfb7 0%, #d6b071 38%, #b7864a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  filter: drop-shadow(0 1px 0 rgba(255, 244, 214, 0.08));
}

.header__logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 225, 194, 0.74);
  margin-top: 4px;
  padding-left: 0.14em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__menu {
  display: flex;
  gap: 32px;
}

.header__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light-secondary);
  transition: color var(--transition);
  position: relative;
}
.header__link:hover {
  color: var(--brown-light);
}
.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--brown);
  transition: width var(--transition);
}
.header__link:hover::after { width: 100%; }

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header__live-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.header__live-link:hover {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.header__live-dot,
.construction__live-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #f25555;
  box-shadow: 0 0 0 0 rgba(242, 85, 85, 0.44);
  animation: livePulse 1.8s ease-out infinite;
}

.header__phone {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color var(--transition);
}
.header__phone:hover { color: var(--brown-light); }

.header__callback {
  font-size: 0.8125rem;
  color: var(--brown);
  border-bottom: 1px dashed var(--brown);
  padding-bottom: 1px;
  transition: all var(--transition);
}
.header__callback:hover {
  color: var(--brown-light);
  border-color: transparent;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 85, 85, 0.44);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(242, 85, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 85, 85, 0);
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: #2f2925;
  background-image: url('../assets/images/main.jpg');
  background-position: 62% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 15, 13, 0.84) 0%,
    rgba(18, 15, 13, 0.62) 30%,
    rgba(18, 15, 13, 0.24) 56%,
    rgba(18, 15, 13, 0.08) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 150px;
  width: 100%;
}

.hero__content .container {
  position: relative;
}

.hero__content .container::before {
  content: '';
  position: absolute;
  left: -48px;
  top: -56px;
  width: min(760px, 60vw);
  height: 560px;
  background:
      radial-gradient(circle at 42% 34%, rgba(18, 15, 13, 0.48) 0%, rgba(18, 15, 13, 0.3) 24%, rgba(18, 15, 13, 0) 62%),
      linear-gradient(90deg, rgba(18, 15, 13, 0.56) 0%, rgba(18, 15, 13, 0.34) 58%, rgba(18, 15, 13, 0) 100%);
  border-radius: 40px;
  filter: blur(8px);
  pointer-events: none;
}

.hero__content .container > * {
  position: relative;
  z-index: 1;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 430px);
  gap: 36px;
  align-items: center;
}

.hero__main {
  max-width: 700px;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ddb26f;
  margin-bottom: 24px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.62);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.05;
  color: #fffdf8;
  margin-bottom: 48px;
  max-width: 620px;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.58);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero__price-label,
.hero__detail-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  margin-bottom: 6px;
}

.hero__price-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brown-light);
}

.hero__detail-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fffdf8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-lead-card {
  position: relative;
  justify-self: end;
  width: 100%;
  padding: 22px 22px 20px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at right bottom, rgba(196, 162, 110, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(49, 42, 38, 0.9) 0%, rgba(36, 31, 29, 0.92) 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.hero-lead-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-lead-card > * {
  position: relative;
  z-index: 1;
}

.hero-lead-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-lead-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(196, 162, 110, 0.16);
  border: 1px solid rgba(212, 184, 138, 0.18);
  color: var(--brown-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-lead-card__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light-muted);
  font-size: 0.8125rem;
}

.hero-lead-card__status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--brown-light);
}

.hero-lead-card__presentation {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  padding-right: 0;
}

.hero-lead-card__presentation-book {
  position: relative;
  isolation: isolate;
  width: min(100%, 252px);
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(251, 245, 236, 0.96) 0%, rgba(220, 200, 165, 0.94) 100%);
  color: var(--text-dark);
  box-shadow: 0 18px 42px rgba(8, 6, 5, 0.28);
  transform: rotate(5deg);
}

.hero-lead-card__presentation-book::before,
.hero-lead-card__presentation-book::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  z-index: -1;
}

.hero-lead-card__presentation-book::before {
  transform: translate(-10px, 11px) rotate(-4deg);
  background: rgba(255,255,255,0.18);
}

.hero-lead-card__presentation-book::after {
  transform: translate(-18px, 18px) rotate(-7deg);
  background: rgba(255,255,255,0.08);
}

.hero-lead-card__presentation-chip {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(43, 38, 35, 0.08);
  color: rgba(43, 38, 35, 0.66);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lead-card__presentation-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-lead-card__presentation-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.hero-lead-card__presentation-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.hero-lead-card__presentation-mark {
  font-family: var(--font-heading);
  font-size: 1.26rem;
  letter-spacing: 0.08em;
}

.hero-lead-card__presentation-sub {
  color: rgba(43, 38, 35, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-lead-card__presentation-title {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1.42rem;
  line-height: 0.94;
}

.hero-lead-card__presentation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-lead-card__presentation-meta span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(43, 38, 35, 0.08);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead-card__title {
  margin-bottom: 16px;
  color: #fffdf8;
  font-family: var(--font-heading);
  font-size: clamp(1.74rem, 1.8vw, 2.16rem);
  font-weight: 500;
  line-height: 1;
}

.hero-lead-card__badge--inline {
  margin-left: 10px;
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  vertical-align: middle;
  transform: translateY(-0.14em);
  box-shadow: 0 12px 24px rgba(196, 162, 110, 0.16);
}

.hero-lead-card__text {
  margin-bottom: 12px;
  color: var(--text-light-secondary);
  font-size: 0.94rem;
  line-height: 1.55;
}

.hero-lead-card__list {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.hero-lead-card__list li {
  position: relative;
  padding-left: 22px;
  color: #f3eee6;
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-lead-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 0 0 5px rgba(196, 162, 110, 0.14);
}

.hero-lead-card__group {
  margin-bottom: 12px;
}

.hero-lead-card__form {
  margin-top: 6px;
}

.hero-lead-card__field-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brown-light);
  z-index: 1;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.hero-lead-card__input {
  min-height: 56px;
  padding: 14px 18px 14px 62px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  font-size: 0.95rem;
  line-height: 1.3;
}

.hero-lead-card__input::placeholder {
  color: rgba(237, 233, 227, 0.48);
}

.hero-lead-card__input:focus {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212, 184, 138, 0.54);
}

.hero-lead-card__submit {
  min-height: 54px;
  margin-top: 4px;
  border-radius: 16px;
  box-shadow: 0 20px 32px rgba(196, 162, 110, 0.18);
}

.hero-lead-card__consent {
  margin-top: 10px;
  font-size: 0.7rem;
  line-height: 1.45;
}

.hero-lead-card__note {
  margin-top: 12px;
  color: var(--text-light-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.hero__presentation-btn {
  background: linear-gradient(135deg, rgba(255, 248, 237, 0.22) 0%, rgba(212, 184, 138, 0.18) 100%);
  border: 1px solid rgba(242, 223, 183, 0.58);
  color: #fffaf2;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero__presentation-btn:hover {
  background: linear-gradient(135deg, rgba(255, 248, 237, 0.3) 0%, rgba(212, 184, 138, 0.26) 100%);
  border-color: rgba(255, 244, 214, 0.82);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero__presentation-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 248, 237, 0.96) 0%, rgba(233, 213, 178, 0.92) 100%);
  color: var(--brown-dark);
  box-shadow: 0 8px 20px rgba(20, 17, 15, 0.16);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  writing-mode: vertical-lr;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

@media (max-width: 1180px) {
  .hero__content {
    padding-bottom: 136px;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__main {
    max-width: 760px;
  }

  .hero-lead-card {
    justify-self: start;
    max-width: 520px;
  }
}

@media (max-width: 840px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 156px;
    padding-bottom: 118px;
  }

  .hero__content .container::before {
    left: -26px;
    top: -40px;
    width: min(640px, 94vw);
    height: 420px;
  }

  .hero__title {
    font-size: clamp(3.2rem, 10vw, 4.4rem);
    margin-bottom: 34px;
  }

  .hero__meta {
    gap: 28px 34px;
    margin-bottom: 34px;
    padding: 24px 0;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero__content {
    padding-top: 138px;
    padding-bottom: 88px;
  }

  .hero__content .container::before {
    left: -12px;
    top: -26px;
    width: calc(100% + 24px);
    height: 340px;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
    letter-spacing: 0.18em;
  }

  .hero__title {
    margin-bottom: 28px;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero-lead-card {
    justify-self: stretch;
    padding: 20px 18px 18px;
    border-radius: 26px;
  }

  .hero-lead-card::before {
    border-radius: 25px;
  }

  .hero-lead-card__head {
    margin-bottom: 14px;
  }

  .hero-lead-card__presentation {
    justify-content: center;
    padding-right: 0;
    margin-bottom: 18px;
  }

  .hero-lead-card__presentation-book {
    width: 214px;
    transform: rotate(4deg);
  }

  .hero-lead-card__title {
    font-size: 1.82rem;
  }

  .hero-lead-card__badge--inline {
    margin-left: 8px;
    padding: 8px 13px;
    font-size: 0.66rem;
  }

  .hero-lead-card__text,
  .hero-lead-card__list li {
    font-size: 0.86rem;
  }

  .hero-lead-card__submit {
    min-height: 52px;
  }
}

/* ===== About (dark section) ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 0;
}

.about__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light-secondary);
  margin-bottom: 20px;
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: var(--brown-light);
  font-weight: 600;
  transition: transform var(--transition), color var(--transition);
}

.about__link::after {
  content: '→';
  font-size: 1rem;
}

.about__link:hover {
  transform: translateX(3px);
  color: var(--text-light);
}

.about__video {
  min-height: 405px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-footer);
}

.about__video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
  transition: opacity var(--transition);
}

.about__video-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.about__video-poster-overlay {
  position: absolute;
  inset: 0;
}

.about__video-poster-overlay {
  background:
    linear-gradient(180deg, rgba(30, 27, 24, 0.12) 0%, rgba(30, 27, 24, 0.72) 100%),
    linear-gradient(135deg, rgba(30, 27, 24, 0.2), rgba(47, 41, 37, 0.55));
}

.about__video-start {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.about__video-play {
  transition: transform var(--transition);
}

.about__video-start:hover .about__video-play {
  transform: scale(1.1);
}

.about__video-label {
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  color: var(--text-light-muted);
  letter-spacing: 0.05em;
}

.about__video-el {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #000;
}

.about__video-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(24, 22, 20, 0.72);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}

.about__video--started .about__video-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.about__video-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color var(--transition), transform var(--transition);
}

.about__video-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.04);
}

.about__video-mute {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color var(--transition), transform var(--transition);
}

.about__video-mute:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.04);
}

.about__video-fullscreen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color var(--transition), transform var(--transition);
}

.about__video-fullscreen:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.04);
}

.about__video-toggle-icon--pause {
  display: none;
}

.about__video--playing .about__video-toggle-icon--play {
  display: none;
}

.about__video--playing .about__video-toggle-icon--pause {
  display: block;
}

.about__video-mute-icon--off {
  display: none;
}

.about__video--muted .about__video-mute-icon--on {
  display: none;
}

.about__video--muted .about__video-mute-icon--off {
  display: block;
}

.about__video-fullscreen-icon--exit {
  display: none;
}

.about__video--fullscreen .about__video-fullscreen-icon--enter {
  display: none;
}

.about__video--fullscreen .about__video-fullscreen-icon--exit {
  display: block;
}

.about__video-progress {
  min-width: 0;
  flex: 1 1 auto;
  accent-color: var(--brown);
}

.about__video-progress:hover {
  cursor: pointer;
}

.about__video:fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: #000;
}

.about__video:fullscreen .about__video-el {
  width: auto;
  max-width: 100vw;
  max-height: 100vh;
  height: 100vh;
}

.about__video:fullscreen .about__video-controls {
  left: 24px;
  right: 24px;
  bottom: 24px;
}

/* ===== Advantages ===== */
.advantages .section__title {
  margin-bottom: 56px;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.advantages__card {
  padding: 36px 28px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  transition: all var(--transition);
  background: var(--bg-dark-alt);
}

.advantages__card:hover {
  border-color: var(--brown);
  background: var(--bg-dark-elevated);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.advantages__icon {
  color: var(--brown);
  margin-bottom: 20px;
}

.advantages__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text-light);
}

.advantages__text {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

/* ===== Price Dynamics (beige section) ===== */
.price-dynamics__card {
  background: #faf8f5;
  border-radius: 20px;
  border: 1px solid rgba(43, 38, 35, 0.06);
  padding: 48px 56px 32px;
}

.price-dynamics__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.price-dynamics__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.price-dynamics__subtitle {
  font-size: 0.9375rem;
  color: var(--text-dark-secondary);
  margin-top: 4px;
}

.price-dynamics__legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-dark-secondary);
  white-space: nowrap;
  padding-top: 8px;
}

.price-dynamics__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brown);
}

.price-dynamics__chart {
  width: 100%;
}

.price-dynamics__svg {
  width: 100%;
  height: auto;
  display: block;
}

.price-dynamics__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(43, 38, 35, 0.08);
}

.price-dynamics__cta-copy {
  max-width: 620px;
}

.price-dynamics__cta-title {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.price-dynamics__cta-text {
  font-size: 0.9375rem;
  color: var(--text-dark-secondary);
  line-height: 1.7;
}

.price-dynamics__cta-btn {
  flex-shrink: 0;
}

.price-dynamics__disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  margin-top: 16px;
}

@media (max-width: 960px) {
  .price-dynamics__header,
  .price-dynamics__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-dynamics__card {
    padding: 40px 36px 28px;
  }
}

@media (max-width: 720px) {
  .price-dynamics__card {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }

  .price-dynamics__title {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

  .price-dynamics__cta {
    margin-top: 24px;
    padding-top: 24px;
    gap: 16px;
  }

  .price-dynamics__cta-title {
    font-size: 1.375rem;
  }

  .price-dynamics__cta-btn {
    width: 100%;
  }
}

/* ===== Plans (beige section) ===== */
.plans__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}

.plans__tab {
  padding: 16px 32px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}

.plans__tab:hover {
  color: var(--text-dark);
}

.plans__tab--active {
  color: var(--brown-dark);
  border-bottom-color: var(--brown-dark);
}

.plans__panel { display: none; }
.plans__panel--active { display: block; }

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plans__card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}

.plans__card:hover {
  box-shadow: 0 16px 48px rgba(43, 38, 35, 0.1);
  transform: translateY(-4px);
}

.plans__card-img {
  aspect-ratio: 4/3;
  background-color: var(--bg-beige-alt);
}

.plans__card-image {
  width: 100%;
  height: 100%;
  display: block;
  padding: 18px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(247, 243, 235, 0.96), rgba(255, 255, 255, 0.98));
}

.plans__card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-dark-muted);
  text-align: center;
  line-height: 1.6;
}

.plans__card-placeholder small {
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.plans__card-body {
  padding: 24px;
}

.plans__card-type {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.plans__card-area {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.plans__card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.plans__card-price {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.plans__card-mortgage {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  margin-top: 2px;
}

.plans__footer {
  text-align: center;
  margin-top: 48px;
}

/* ===== Gallery Section (dark) ===== */
.gallery-section__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-dark);
}

.gallery-section__tab {
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}

.gallery-section__tab:hover { color: var(--text-light); }
.gallery-section__tab--active { color: var(--brown); border-bottom-color: var(--brown); }

.gallery-section__panel { display: none; }
.gallery-section__panel--active { display: block; }

.gallery-section__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.gallery-section__item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}

.gallery-section__item:hover { transform: scale(1.01); }

.gallery-section__item--large {
  grid-row: span 2;
}

.gallery-section__placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background-color: var(--bg-dark-alt);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-light-muted);
  border-radius: 8px;
}

.gallery-section__item--large .gallery-section__placeholder {
  min-height: 416px;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox--active { display: flex; }

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, 0.94);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  font-size: 2rem;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 3rem;
  color: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

.lightbox__content {
  position: relative;
  max-width: 80vw;
  max-height: 80vh;
}

.lightbox__placeholder {
  width: 800px;
  height: 500px;
  max-width: 80vw;
  max-height: 80vh;
  background-color: var(--bg-dark-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-light-muted);
}

/* ===== Stories (beige) ===== */
.stories__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 24px;
}

.stories__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 0;
  text-align: left;
}

.stories__preview {
  position: relative;
  aspect-ratio: 9/14;
  border-radius: 18px;
  background: linear-gradient(180deg, #c8b49b 0%, #8f7863 100%);
  border: 1px solid rgba(168, 134, 79, 0.28);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transition: all var(--transition);
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(43, 38, 35, 0.1);
}

.stories__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 17, 15, 0.6) 0%, rgba(20, 17, 15, 0.14) 58%, rgba(20, 17, 15, 0.08) 100%);
  pointer-events: none;
}

.stories__item:hover .stories__preview {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(168, 134, 79, 0.24);
  border-color: rgba(168, 134, 79, 0.5);
}

.stories__preview--placeholder {
  background: linear-gradient(180deg, #d8cec1 0%, #b39d86 100%);
}

.stories__preview--dark {
  background: #050505;
  border-color: rgba(20, 17, 15, 0.12);
}

.stories__preview-video,
.stories__preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stories__placeholder {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff7ec;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.stories__play {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 248, 237, 0.88);
  color: var(--brown-dark);
  box-shadow: 0 8px 18px rgba(20, 17, 15, 0.18);
}

.stories__name {
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.35;
  padding: 0 2px;
}

@media (max-width: 720px) {
  .stories__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* ===== Story Viewer ===== */
.story-viewer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.story-viewer--active { display: flex; }

.story-viewer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, 0.96);
}

.story-viewer__container {
  position: relative;
  width: 375px;
  height: 667px;
  max-height: 90vh;
  background: var(--bg-footer);
  border-radius: 16px;
  overflow: hidden;
}

.story-viewer__progress {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  z-index: 10;
}

.story-viewer__progress-bar {
  height: 100%;
  background: var(--brown);
  border-radius: 2px;
  width: 0;
  transition: width 0.1s linear;
}

.story-viewer__actions {
  position: absolute;
  top: 24px;
  right: 16px;
  z-index: 10;
  display: flex;
  gap: 8px;
}

.story-viewer__icon-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 248, 237, 0.9);
  color: var(--bg-dark);
  box-shadow: 0 8px 18px rgba(20, 17, 15, 0.18);
  transition: transform var(--transition), background-color var(--transition), color var(--transition), opacity var(--transition);
}

.story-viewer__icon-btn:hover {
  transform: translateY(-1px);
  background: #fff;
}

.story-viewer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-viewer__icon--hidden {
  display: none;
}

.story-viewer__close {
  font-size: 1.5rem;
  line-height: 1;
}

.story-viewer__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 2.5rem;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.story-viewer__nav:hover { opacity: 1; }
.story-viewer__nav--prev { left: -60px; }
.story-viewer__nav--next { right: -60px; }

.story-viewer__content { width: 100%; height: 100%; position: relative; }
.story-viewer__video { width: 100%; height: 100%; object-fit: cover; }

.story-viewer__title {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  z-index: 5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

@media (max-width: 720px) {
  .story-viewer__actions {
    top: 20px;
    right: 12px;
    gap: 6px;
  }

  .story-viewer__icon-btn {
    width: 34px;
    height: 34px;
  }
}

/* ===== Location ===== */
.location__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 60px;
  align-items: start;
}

.location__map {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  background:
    radial-gradient(circle at 20% 78%, rgba(196, 162, 110, 0.08), transparent 18%),
    radial-gradient(circle at 76% 20%, rgba(196, 162, 110, 0.06), transparent 16%),
    linear-gradient(135deg, rgba(61, 56, 53, 0.98), rgba(43, 38, 35, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, auto, 78px 78px, 78px 78px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.location__map-placeholder {
  position: absolute;
  top: 34px;
  left: 34px;
  max-width: 290px;
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(30, 27, 25, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light-secondary);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.location__map-placeholder span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}

.location__map-placeholder p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.location__map-surface {
  position: absolute;
  inset: 0;
}

.location__map::before,
.location__map::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.location__map::before {
  background:
    linear-gradient(62deg, transparent 46%, rgba(196, 162, 110, 0.22) 46%, rgba(196, 162, 110, 0.22) 48%, transparent 48%),
    linear-gradient(28deg, transparent 52%, rgba(255, 255, 255, 0.05) 52%, rgba(255, 255, 255, 0.05) 59%, transparent 59%);
  opacity: 0.62;
}

.location__map::after {
  inset: 32px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.location__pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(30, 27, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light-secondary);
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.location__pin::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: 0 0 0 5px rgba(196, 162, 110, 0.12);
}

.location__pin--1 { top: 108px; left: 28px; }
.location__pin--2 { top: 452px; left: 56%; transform: translateX(-50%); }
.location__pin--3 { top: 198px; right: 42px; }
.location__pin--4 { bottom: 140px; left: 82px; }
.location__pin--5 { bottom: 58px; right: 56px; }

.location__marker {
  position: absolute;
  left: 54%;
  top: 54%;
  transform: translate(-50%, -50%);
  padding: 20px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(61, 56, 53, 0.98), rgba(43, 38, 35, 0.96));
  border: 1px solid rgba(196, 162, 110, 0.35);
  color: var(--text-light);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.location__marker::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 30px;
  height: 30px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 8px;
}

.location__map-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 230px;
  min-height: 230px;
  padding: 28px 24px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(61, 56, 53, 0.96), rgba(30, 27, 25, 0.98));
  border: 1px solid rgba(196, 162, 110, 0.22);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.location__map-badge svg {
  align-self: flex-start;
  color: var(--brown);
}

.location__map-badge span {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location__content {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.location__group {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-dark);
}

.location__group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.location__group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.location__group-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 6px;
}

.location__group-note {
  font-size: 1.0625rem;
  color: var(--text-light-secondary);
}

.location__group-modes {
  display: flex;
  gap: 12px;
}

.location__mode {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 56, 53, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--brown);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.location__table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: baseline;
}

.location__row-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-light);
}

.location__row-values {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 44px;
  gap: 16px;
  justify-content: end;
  text-align: right;
}

.location__row-values span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-light);
}

.location__row-values--single {
  grid-auto-columns: 44px;
}

@media (max-width: 1100px) {
  .location__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .location__map {
    min-height: 540px;
  }
}

@media (max-width: 720px) {
  .location__map {
    min-height: 500px;
    border-radius: 26px;
  }

  .location__map-placeholder {
    top: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
    padding: 18px 18px 16px;
  }

  .location__map-placeholder p {
    font-size: 0.875rem;
  }

  .location__map-badge {
    left: 18px;
    bottom: 18px;
    width: 182px;
    min-height: 182px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .location__map-badge span {
    font-size: 0.8125rem;
  }

  .location__pin {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

  .location__pin--1 { top: 118px; left: 16px; }
  .location__pin--2 { top: auto; bottom: 112px; left: 58%; }
  .location__pin--3 { top: 198px; right: 18px; }
  .location__pin--4 { bottom: 124px; left: 20px; }
  .location__pin--5 { right: 18px; bottom: 24px; }

  .location__marker {
    padding: 16px 20px;
    font-size: 0.9375rem;
  }

  .location__group-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .location__group-title {
    font-size: 1.5rem;
  }

  .location__group-note,
  .location__row-title,
  .location__row-values span {
    font-size: 0.9375rem;
  }

  .location__row {
    gap: 12px;
  }

  .location__row-values {
    grid-auto-columns: 32px;
    gap: 10px;
  }
}

/* ===== CTA Sections ===== */
.lead-cta {
  background:
    radial-gradient(circle at 88% 14%, rgba(196, 162, 110, 0.18), transparent 24%),
    linear-gradient(180deg, #26211f 0%, #1f1b19 100%);
}

.lead-cta__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 40px;
  padding: 48px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at bottom left, rgba(196, 162, 110, 0.1), transparent 34%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.lead-cta__shell::after {
  content: '';
  position: absolute;
  inset: auto -120px -140px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 110, 0.18) 0%, rgba(196, 162, 110, 0) 68%);
  pointer-events: none;
}

.lead-cta__content,
.lead-cta__form-card {
  position: relative;
  z-index: 1;
}

.lead-cta__eyebrow,
.visit-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lead-cta__eyebrow {
  color: var(--brown-light);
}

.lead-cta__eyebrow::before,
.visit-cta__eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.lead-cta__title,
.visit-cta__title {
  font-family: var(--font-heading);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.lead-cta__title {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  color: var(--text-light);
  margin-bottom: 18px;
}

.lead-cta__title-accent {
  color: var(--brown-light);
}

.lead-cta__text {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light-secondary);
}

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

.lead-cta__benefit {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-cta__benefit-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.lead-cta__benefit-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 8px;
}

.lead-cta__benefit-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-light-secondary);
}

.lead-cta__form-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lead-cta__form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(196, 162, 110, 0.14);
  color: var(--brown-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lead-cta__form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 12px;
}

.lead-cta__form-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light-secondary);
  margin-bottom: 22px;
}

.lead-cta__submit {
  margin-top: 4px;
}

.lead-cta__trust {
  margin-top: 14px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-light-muted);
}

.visit-cta__card {
  position: relative;
  overflow: hidden;
  padding: 46px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fbf8f3 0%, #efe5d6 100%);
  border: 1px solid rgba(43, 38, 35, 0.08);
  box-shadow: 0 28px 64px rgba(113, 83, 51, 0.09);
}

.visit-cta__card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -110px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 110, 0.2) 0%, rgba(196, 162, 110, 0) 68%);
  pointer-events: none;
}

.visit-cta__card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43, 38, 35, 0.14), transparent);
}

.visit-cta__top,
.visit-cta__form {
  position: relative;
  z-index: 1;
}

.visit-cta__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: start;
}

.visit-cta__eyebrow {
  color: var(--brown-dark);
}

.visit-cta__title {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.visit-cta__text {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark-secondary);
}

.visit-cta__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.visit-cta__chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(43, 38, 35, 0.08);
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 500;
}

.visit-cta__modes {
  display: grid;
  gap: 14px;
}

.visit-cta__mode {
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(43, 38, 35, 0.08);
}

.visit-cta__mode-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-dark);
}

.visit-cta__mode-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.visit-cta__mode-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-dark-secondary);
}

.visit-cta__form {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(43, 38, 35, 0.08);
}

.visit-cta__form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.visit-cta__submit {
  min-width: 260px;
  min-height: 56px;
}

.visit-cta__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
}

.visit-cta__footer .form__consent {
  margin-top: 0;
}

.visit-cta__note {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-dark-secondary);
  text-align: right;
}

@media (max-width: 1180px) {
  .lead-cta__shell,
  .visit-cta__top {
    grid-template-columns: 1fr;
  }

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

  .visit-cta__form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .visit-cta__submit {
    width: 100%;
    grid-column: 1 / -1;
  }

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

  .visit-cta__note {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .lead-cta__shell,
  .visit-cta__card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .lead-cta__benefits,
  .visit-cta__form-grid {
    grid-template-columns: 1fr;
  }

  .lead-cta__form-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .lead-cta__benefit,
  .visit-cta__mode {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .lead-cta__form-title {
    font-size: 1.75rem;
  }

  .lead-cta__benefit-title,
  .visit-cta__mode-title {
    font-size: 1.25rem;
  }

  .visit-cta__chips {
    gap: 8px;
  }

  .visit-cta__chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ===== Purchase (beige) ===== */
.purchase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.purchase__card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all var(--transition);
  text-align: center;
}

.purchase__card:hover {
  box-shadow: 0 16px 48px rgba(43, 38, 35, 0.1);
  transform: translateY(-4px);
}

.purchase__card-icon {
  color: var(--brown-dark);
  margin-bottom: 24px;
}

.purchase__card-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.purchase__card-rate {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.purchase__card-text {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ===== Calculator (dark) ===== */
.calculator__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.calculator__group {
  margin-bottom: 32px;
}

.calculator__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light-secondary);
  margin-bottom: 10px;
}

.calculator__input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.calculator__input {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.125rem;
  font-weight: 600;
  background: var(--bg-dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  color: var(--text-light);
  outline: none;
  transition: border-color var(--transition);
}

.calculator__input:focus {
  border-color: var(--brown);
}

.calculator__unit {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  flex-shrink: 0;
  min-width: 28px;
}

.calculator__range {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, var(--brown) 0%, var(--brown) 50%, var(--border-dark) 50%);
  border-radius: 2px;
  outline: none;
}

.calculator__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brown);
  cursor: pointer;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.calculator__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brown);
  cursor: pointer;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.calculator__result-card {
  background: var(--bg-dark-elevated);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 48px;
  color: var(--text-light);
}

.calculator__result-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light-muted);
  margin-bottom: 8px;
}

.calculator__result-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--brown-light);
  margin-bottom: 32px;
}

.calculator__result-details { margin-bottom: 32px; }

.calculator__result-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.9375rem;
}

.calculator__result-row span:first-child {
  color: var(--text-light-muted);
}

/* ===== Construction (beige) ===== */
.construction__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.construction__heading {
  min-width: 0;
}

.construction__title {
  margin-bottom: 18px;
}

.construction__title-accent {
  color: var(--brown);
}

.construction__date {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  margin-top: 0;
  margin-bottom: 0;
}

.construction__live-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 320px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(43, 38, 35, 0.08);
  color: var(--text-dark);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.construction__live-link:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 134, 79, 0.26);
  box-shadow: 0 18px 36px rgba(113, 83, 51, 0.08);
}

.construction__live-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.construction__live-copy {
  display: grid;
  gap: 4px;
}

.construction__live-label-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.construction__live-label {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-dark);
}

.construction__live-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-dark-secondary);
}

.construction__live-icon {
  margin-left: auto;
  color: var(--brown-dark);
}

.construction__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.construction__item {
  position: relative;
  aspect-ratio: 1 / 0.86;
  border-radius: 0;
  overflow: hidden;
  background: #d8d0c4;
  box-shadow: 0 16px 44px rgba(43, 38, 35, 0.1);
}

.construction__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.construction__item:hover .construction__image {
  transform: scale(1.04);
}

.construction__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 9, 0.04) 10%, rgba(12, 10, 9, 0.52) 100%);
}

.construction__item-month {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

.construction__footer {
  text-align: center;
  margin-top: 34px;
}

@media (max-width: 1100px) {
  .construction__head {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

@media (max-width: 720px) {
  .construction__head {
    gap: 18px;
    margin-bottom: 24px;
  }

  .construction__live-link {
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
  }

  .construction__live-badge {
    min-width: 56px;
    min-height: 56px;
    border-radius: 16px;
    font-size: 0.75rem;
  }

  .construction__live-label {
    font-size: 1.15rem;
  }

  .construction__grid {
    gap: 18px;
  }

  .construction__item {
    aspect-ratio: 1 / 0.95;
  }

  .construction__item-month {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 1.55rem;
  }
}

/* ===== Designs (dark) ===== */
.designs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.designs__card {
  background: var(--bg-dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}

.designs__card:hover {
  border-color: var(--border-dark-hover);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}

.designs__card-img {
  aspect-ratio: 16/10;
  background: var(--bg-dark-elevated);
}

.designs__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-light-muted);
}

.designs__card-body { padding: 24px; }

.designs__card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-light);
}

.designs__card-text {
  font-size: 0.875rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.designs__card-actions {
  display: flex;
  gap: 8px;
}

/* ===== FAQ (beige) ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-light);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--brown-dark); }

.faq__icon {
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--brown-dark);
  transition: transform var(--transition);
}

.faq__item--active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__item--active .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-dark-secondary);
}

/* ===== Socials Promo ===== */
.socials-promo {
  position: relative;
}

.socials-promo::before,
.socials-promo::after {
  content: '';
  position: absolute;
  left: 40px;
  right: 40px;
  height: 1px;
  background: rgba(43, 38, 35, 0.08);
}

.socials-promo::before {
  top: 0;
}

.socials-promo::after {
  bottom: 0;
}

.socials-promo__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.1fr);
  gap: 72px;
  align-items: start;
}

.socials-promo__title {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #76584b;
}

.socials-promo__right {
  display: grid;
  gap: 28px;
  padding-top: 8px;
}

.socials-promo__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: center;
  padding: 8px 0;
  transition: transform var(--transition);
}

.socials-promo__item:hover {
  transform: translateX(8px);
}

.socials-promo__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6e5246;
  color: #f4ece4;
  box-shadow: 0 16px 32px rgba(110, 82, 70, 0.14);
}

.socials-promo__icon--max {
  background: linear-gradient(135deg, #5f463c 0%, #2f2927 100%);
}

.socials-promo__icon-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
}

.socials-promo__content {
  display: grid;
  gap: 6px;
}

.socials-promo__name {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  line-height: 1.05;
  color: var(--text-dark);
}

.socials-promo__text {
  max-width: 520px;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: rgba(118, 88, 75, 0.92);
}

/* ===== Contact (dark) ===== */
.contact {
  background: var(--bg-dark);
  color: var(--text-light);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact__text {
  font-size: 1rem;
  color: var(--text-light-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact__info {
  display: grid;
  gap: 14px;
}

.contact__phones {
  display: grid;
  gap: 8px;
}

.contact__phone {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0;
  transition: color var(--transition);
  line-height: 1.05;
}
.contact__phone:hover { color: var(--brown-light); }

.contact__phone--secondary {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.contact__email {
  width: fit-content;
  font-size: 0.9375rem;
  color: var(--brown);
  border-bottom: 1px solid rgba(196, 162, 110, 0.3);
  padding-bottom: 2px;
  transition: all var(--transition);
}

.contact__email:hover {
  color: var(--brown-light);
  border-color: var(--brown-light);
}

.contact__address {
  font-size: 0.9375rem;
  color: var(--text-light-secondary);
  margin-bottom: 0;
}

.contact__schedule {
  font-size: 0.9375rem;
  color: var(--text-light-secondary);
}

.contact__messengers {
  display: flex;
  gap: 16px;
}

.contact__messengers a {
  font-size: 0.875rem;
  color: var(--brown);
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.contact__messengers a:hover {
  border-color: var(--brown);
  color: var(--brown-light);
}

@media (max-width: 1100px) {
  .socials-promo__inner,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 720px) {
  .socials-promo::before,
  .socials-promo::after {
    left: 20px;
    right: 20px;
  }

  .socials-promo__title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .socials-promo__item {
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: start;
  }

  .socials-promo__icon {
    width: 72px;
    height: 72px;
  }

  .socials-promo__icon svg {
    width: 32px;
    height: 32px;
  }

  .socials-promo__name {
    font-size: 1.5rem;
  }

  .socials-promo__text {
    font-size: 0.9375rem;
  }
}

/* ===== Forms ===== */
.form__group {
  margin-bottom: 16px;
  position: relative;
}

/* Dark section form inputs */
.form__input {
  width: 100%;
  padding: 16px 20px;
  font-size: 0.9375rem;
  background: var(--bg-dark-alt);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  color: var(--text-light);
  transition: all var(--transition);
  outline: none;
}

.form__input::placeholder { color: var(--text-light-muted); }

.form__input:focus {
  border-color: var(--brown);
  background: var(--bg-dark-elevated);
}

/* Beige section form inputs (in plans section etc.) */
.section--beige .form__input {
  background: #fff;
  border-color: var(--border-light);
  color: var(--text-dark);
}

.section--beige .form__input::placeholder { color: var(--text-dark-muted); }

.section--beige .form__input:focus {
  border-color: var(--brown-dark);
  background: #fff;
}

/* Modal form inputs — always light */
.modal .form__input {
  background: var(--bg-beige);
  border-color: var(--border-light);
  color: var(--text-dark);
}
.modal .form__input::placeholder { color: var(--text-dark-muted); }
.modal .form__input:focus {
  border-color: var(--brown-dark);
  background: #fff;
}

.form__error {
  display: none;
  font-size: 0.75rem;
  color: #cf6b5e;
  margin-top: 6px;
  padding-left: 4px;
}

.form__group--error .form__error { display: block; }
.form__group--error .form__input { border-color: #cf6b5e; }

.form__consent {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  margin-top: 16px;
  line-height: 1.5;
}

.form__consent a {
  color: var(--brown);
  text-decoration: underline;
}

.section--beige .form__consent {
  color: var(--text-dark-muted);
}

.section--beige .form__consent a {
  color: var(--brown-dark);
}

/* Modal consent */
.modal .form__consent {
  color: var(--text-dark-muted);
}
.modal .form__consent a {
  color: var(--brown-dark);
}

.form--success {
  text-align: center;
  pointer-events: none;
}
.form--success::before {
  content: 'Заявка отправлена!';
  display: block;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.form--success::after {
  content: 'Мы свяжемся с вами в ближайшее время';
  display: block;
  font-size: 0.9375rem;
  color: var(--text-light-muted);
}
.form--success > * { display: none !important; }

.hero-lead-card .hero-lead-card__group {
  margin-bottom: 12px;
}

.hero-lead-card .hero-lead-card__field-icon {
  left: 18px;
  width: 18px;
  height: 18px;
}

.hero-lead-card .hero-lead-card__input {
  min-height: 56px;
  padding: 14px 18px 14px 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  font-size: 0.95rem;
  line-height: 1.3;
}

.hero-lead-card .hero-lead-card__input::placeholder {
  color: rgba(237, 233, 227, 0.48);
}

.hero-lead-card .hero-lead-card__input:focus {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212, 184, 138, 0.54);
}

.hero-lead-card .hero-lead-card__submit {
  min-height: 54px;
  margin-top: 4px;
  border-radius: 16px;
  box-shadow: 0 20px 32px rgba(196, 162, 110, 0.18);
}

.hero-lead-card .hero-lead-card__consent {
  margin-top: 10px;
  font-size: 0.7rem;
  line-height: 1.45;
}

.hero-lead-card .hero-lead-card__note {
  margin-top: 12px;
  font-size: 0.76rem;
  line-height: 1.55;
}

/* ===== Floating Video Widget ===== */
body.cookie-consent-visible .video-widget {
  bottom: 112px;
}

.video-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 220;
  width: min(320px, calc(100vw - 32px));
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, left 0.35s ease, top 0.35s ease, width 0.35s ease;
}

.video-widget--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.video-widget__shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(41, 35, 31, 0.94) 0%, rgba(28, 24, 22, 0.97) 100%);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.video-widget--dragging {
  transition: none;
}

.video-widget--dragging .video-widget__shell {
  cursor: grabbing;
}

.video-widget__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(23, 20, 18, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.video-widget__close:hover {
  background: rgba(196, 162, 110, 0.22);
  border-color: rgba(196, 162, 110, 0.4);
  transform: rotate(90deg);
}

.video-widget__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at center, rgba(196, 162, 110, 0.2) 0%, rgba(32, 27, 24, 0.9) 58%, rgba(20, 18, 16, 1) 100%);
}

.video-widget__player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #171412;
}

.video-widget__body {
  padding: 14px 16px 16px;
}

.video-widget__eyebrow {
  margin-bottom: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 162, 110, 0.9);
}

.video-widget__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.02;
  color: var(--white);
}

.video-widget__actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.video-widget__action {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(196, 162, 110, 0.28);
  border-radius: 14px;
  background: rgba(196, 162, 110, 0.14);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  touch-action: manipulation;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.video-widget__action:hover {
  background: rgba(196, 162, 110, 0.22);
  border-color: rgba(196, 162, 110, 0.42);
  transform: translateY(-1px);
}

.video-widget__action--active {
  background: rgba(196, 162, 110, 0.26);
  border-color: rgba(196, 162, 110, 0.5);
  color: #fff7eb;
}

.video-widget__action-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.video-widget--expanded {
  width: min(560px, calc(100vw - 32px));
}

.video-widget--expanded .video-widget__media {
  aspect-ratio: 16 / 10;
}

@media (max-width: 767px) {
  .video-widget {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .video-widget__shell {
    border-radius: 20px;
  }

  .video-widget__body {
    padding: 12px 14px 14px;
  }

  .video-widget__title {
    font-size: 1.2rem;
  }

  .video-widget__actions {
    grid-template-columns: 1fr;
  }
}

/* ===== Cookie Consent ===== */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 230;
  width: min(860px, calc(100vw - 32px));
  padding: 0;
  background: rgba(12, 12, 12, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translate(-50%, calc(100% + 16px));
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-consent--visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cookie-consent__inner {
  min-height: 60px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.cookie-consent__link {
  color: var(--brown-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 162, 110, 0.42);
  transition: color var(--transition), border-color var(--transition);
}

.cookie-consent__link:hover {
  color: #e0bf86;
  border-color: rgba(224, 191, 134, 0.55);
}

.cookie-consent__button {
  flex: 0 0 auto;
  min-width: 148px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  color: #121212;
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.cookie-consent__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
  body.cookie-consent-visible .video-widget {
    bottom: 154px;
  }

  .cookie-consent__inner {
    min-height: auto;
    padding: 14px 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
  }
}

@media (max-width: 767px) {
  body.cookie-consent-visible .video-widget {
    bottom: 184px;
  }

  .cookie-consent {
    width: calc(100vw - 24px);
    bottom: 12px;
    border-radius: 20px;
  }

  .cookie-consent__text {
    font-size: 0.92rem;
  }
}

/* ===== Floating Buttons ===== */
.floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.floating__btn:hover {
  transform: scale(1.1);
}

.floating__btn--phone {
  background: var(--brown);
  color: var(--bg-dark);
}

.floating__btn--wa {
  background: #25d366;
  color: #fff;
}

.floating__btn--tg {
  background: #2aabee;
  color: #fff;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--bg-footer);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}

/* Wave transition from contact to footer */
.footer::before {
  content: '';
  position: absolute;
  top: -79px;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath d='M0,55 C200,80 400,15 720,35 C1040,55 1250,10 1440,40 L1440,80 L0,80 Z' fill='%231e1b19'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8px;
}

.footer__logo-icon {
  width: clamp(164px, 14vw, 224px);
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.16));
}

.footer__logo-mark {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--brown);
  display: block;
  line-height: 1;
}

.footer__logo-sub {
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-top: 8px;
}

.footer__heading {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--brown); }

.footer__contacts {
  display: grid;
  margin-bottom: 10px;
}

.footer__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}

.footer__text--address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.52);
  line-height: 1.5;
}

.footer__address-icon {
  color: var(--brown);
  margin-top: 1px;
  flex-shrink: 0;
}

.footer__address-text {
  display: flex;
  flex-direction: column;
}

.footer__address-label {
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}

.footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer__socials a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__socials a:hover { color: var(--brown); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .contact__phone {
    font-size: 1.75rem;
  }

  .contact__phone--secondary {
    font-size: 0.9375rem;
  }

  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
    display: grid;
    gap: 16px;
  }
}

/* ===== Modals ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal--active { display: flex; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, 0.7);
  backdrop-filter: blur(6px);
}

.modal__container {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 12px;
  padding: 48px;
  color: var(--text-dark);
  animation: modalIn 0.3s ease;
}
.modal__container--wide { max-width: 640px; }

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

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  color: var(--text-dark-muted);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}
.modal__close:hover { color: var(--text-dark); }

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.modal__text {
  font-size: 0.9375rem;
  color: var(--text-dark-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal__gallery-placeholder {
  width: 100%;
  height: 300px;
  background: var(--bg-beige);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--text-dark-muted);
  margin-bottom: 24px;
}

/* ===== Body lock ===== */
body.no-scroll { overflow: hidden; }

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery images */
.gallery-section__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.gallery-section__item--large img {
  min-height: 416px;
}
.gallery-section__item:not(.gallery-section__item--large) img {
  min-height: 200px;
}

/* Lightbox image */
.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.lightbox__counter {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  margin-top: 12px;
  font-family: var(--font-heading);
}

/* Gallery grid for more items */
@media (min-width: 768px) {
  .gallery-section__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
  .gallery-section__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-section__item--large img {
    min-height: 300px;
  }
}

/* About video poster image */
.about__video-poster-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Dropdown menu */
.header__dropdown {
  position: relative;
}
.header__dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  font-family: inherit;
}
.header__dropdown-arrow {
  transition: transform 0.2s ease;
}
.header__dropdown:hover .header__dropdown-arrow,
.header__dropdown.header__dropdown--open .header__dropdown-arrow {
  transform: rotate(180deg);
}
.header__submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.header__submenu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.header__dropdown:hover .header__submenu,
.header__dropdown.header__dropdown--open .header__submenu {
  opacity: 1;
  visibility: visible;
}
.header__submenu-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-light-secondary);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.header__submenu-link:hover {
  background: rgba(196, 162, 110, 0.1);
  color: var(--brown-light);
}

/* CTA button in header */
.header__callback--cta {
  background: var(--brown);
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: 10px 20px !important;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header__callback--cta:hover {
  background: var(--brown-light);
  color: #fff !important;
  border-color: transparent;
  transform: scale(1.03);
}

/* Menu alignment & weight fix */
.header__menu {
  align-items: center;
}
.header__link {
  font-weight: 500;
}
.header__dropdown-toggle {
  font-size: 0.875rem;
}
.header__menu > li {
  display: flex;
  align-items: center;
}
