/* AKKOL ESTATE — style.css — New Build */

/* ── TOKENS ── */
:root {
  /* Colors */
  --stone:       #F5F0E8;
  --stone-dark:  #EDE7D9;
  --stone-deep:  #D4CBBA;
  --forest:      #1C2E1A;
  --forest-mid:  #243620;
  --forest-dark: #0f1a0e;
  --bronze:      #A8845C;
  --bronze-dim:  rgba(168,132,92,0.25);
  --bronze-glow: rgba(168,132,92,0.12);
  --text-primary:   #1a1a18;
  --text-secondary: #4a4a42;
  --text-muted:     #8a8a7a;
  --text-light:     #FAF5E9;

  /* Layout */
  --container:  1200px;
  --gutter:     1.5rem;
  --gutter-lg:  3rem;
  --section-v:  clamp(5rem, 10vw, 8rem);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, sans-serif;
  background: var(--stone);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--gutter-lg); }
}

/* ── SECTION SPACING ── */
section { padding: var(--section-v) 0; }

/* ── SHARED TYPOGRAPHY ── */
.label {
  font-family: Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
.label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--bronze);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .label {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    gap: 0.65rem;
  }
  .label::before { width: 20px; }
}

h2.section-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-top: 0.4rem;
}

h2.section-title.light { color: var(--text-light); }

.section-sub {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 520px;
}

.section-sub.light { color: rgba(250,245,233,0.6); }

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════
   NAV
════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter-lg);
  transition: background 0.4s, border-color 0.4s;
}

#main-nav.scrolled {
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stone-deep);
}

/* On mobile: always opaque */
@media (max-width: 767px) {
  #main-nav {
    padding: 0 var(--gutter);
    background: rgba(245,240,232,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--stone-deep);
  }
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  transition: color 0.3s;
}

/* Desktop hero-mode: logo goes light */
@media (min-width: 768px) {
  #main-nav.hero-mode .nav-logo { color: var(--text-light); }
}

.nav-cta-link {
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bronze);
  border: 1px solid var(--bronze-dim);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-cta-link:hover { background: var(--bronze-glow); }

@media (max-width: 540px) {
  .nav-cta-link { font-size: 0.72rem; padding: 0.38rem 0.75rem; white-space: nowrap; }
}

/* Desktop hero-mode: cta goes light */
@media (min-width: 768px) {
  #main-nav.hero-mode .nav-cta-link {
    color: rgba(250,245,233,0.85);
    border-color: rgba(250,245,233,0.25);
  }
}

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(12,22,11,0.55) 0%,
      rgba(12,22,11,0.4) 35%,
      rgba(12,22,11,0.55) 60%,
      rgba(12,22,11,0.92) 100%
    ),
    radial-gradient(ellipse at center, rgba(12,22,11,0) 30%, rgba(12,22,11,0.4) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 100%;
  max-width: 880px;
  padding: 0 var(--gutter-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 767px) {
  .hero-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    flex: 1;
    justify-content: center;
    padding: 88px var(--gutter) 2rem;
    gap: 0.25rem;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.9);
  border: 1px solid rgba(250,245,233,0.45);
  padding: 0.5rem 1.4rem 0.5rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(12,22,11,0.18);
}

.hero-pill-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #b4d7b4;
  font-weight: 600;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fb36f;
  box-shadow: 0 0 0 3px rgba(111,179,111,0.28);
  animation: hero-pill-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-pill-divider {
  width: 1px;
  height: 11px;
  background: rgba(250,245,233,0.3);
}

@keyframes hero-pill-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(111,179,111,0.28); }
  50%      { box-shadow: 0 0 0 6px rgba(111,179,111,0.06); }
}

@media (max-width: 480px) {
  .hero-pill {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    gap: 0.6rem;
    padding: 0.45rem 1rem 0.45rem 0.75rem;
  }
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: -0.005em;
}

.hero-sub {
  font-family: Inter, sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  font-weight: 400;
  color: rgba(250,245,233,0.78);
  margin-top: 1.5rem;
  max-width: 640px;
  line-height: 1.65;
}

.hero-anchor {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.55);
}
.hero-anchor::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(168,132,92,0.65);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0 1.75rem;
  background: var(--bronze);
  color: var(--text-light);
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: #8C6A45; }
.btn-primary:active { transform: scale(0.99); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(250,245,233,0.68);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(250,245,233,0.18);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover {
  color: var(--text-light);
  border-bottom-color: var(--bronze);
}

/* ── HERO INFOBAR ── */
.hero-infobar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  background: rgba(10,18,9,0.45);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border-top: 1px solid rgba(168,132,92,0.18);
}

.infobar-item {
  flex: 1;
  padding: 1.4rem 2.25rem;
  border-right: 1px solid rgba(245,240,232,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.infobar-item:last-of-type { border-right: none; }

.infobar-label {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(168,132,92,0.8);
}

.infobar-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: -0.005em;
}

@media (max-width: 767px) {
  .hero-infobar { flex-direction: column; }
  .infobar-item {
    border-right: none;
    border-bottom: 1px solid rgba(245,240,232,0.06);
    padding: 1.1rem 1.5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
  }
  .infobar-item:last-of-type { border-bottom: none; }
  .infobar-value { font-size: 0.95rem; text-align: right; }
}

/* ── HERO SCROLL HINT ── */
.hero-scroll-hint {
  position: absolute;
  bottom: calc(1.4rem + 76px);
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.hero-scroll-hint:hover { opacity: 1; }
.hero-scroll-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(250,245,233,0) 0%, rgba(250,245,233,0.6) 30%, rgba(250,245,233,0.6) 100%);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(168,132,92,0) 0%, var(--bronze) 100%);
  animation: scroll-drip 2.4s cubic-bezier(0.65,0,0.35,1) infinite;
}
@keyframes scroll-drip {
  0%   { top: -40%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}
@media (max-width: 767px) {
  .hero-scroll-hint { display: none; }
}

/* ════════════════════════════════════
   SNAPSHOT — Масштаб и инфраструктура
════════════════════════════════════ */
#snapshot {
  background: var(--stone);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: var(--section-v);
}

.snapshot-intro { margin-bottom: 3rem; }

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.snap-card {
  background: var(--stone-dark);
  border: 1px solid var(--stone-deep);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.snap-card:hover { transform: translateY(-2px); }
.snap-card.dark {
  background: var(--forest);
  border-color: transparent;
}

.snap-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: block;
}
.snap-card.dark .snap-num { color: var(--text-light); }

.snap-unit {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(0.9rem, 1.5vw, 1.25rem);
  color: var(--bronze);
  margin-left: 0.2em;
}

.snap-label {
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 0.875rem;
  display: block;
}
.snap-card.dark .snap-label { color: rgba(250,245,233,0.45); }

@media (max-width: 767px) {
  .snapshot-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
}

/* ════════════════════════════════════
   RARITY — Почему этот актив редкий
════════════════════════════════════ */
#rarity {
  background: var(--forest);
  padding: var(--section-v) 0;
  overflow: hidden;
}

.rarity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter-lg);
}

@media (max-width: 767px) {
  .rarity-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 var(--gutter);
  }
}

.rarity-copy .label { color: rgba(168,132,92,0.8); }

.rarity-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.rarity-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rarity-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(250,245,233,0.07);
}
.rarity-point:last-child { border-bottom: none; padding-bottom: 0; }

.rarity-point-num {
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: 0.1em;
  min-width: 1.5rem;
  padding-top: 0.1rem;
}

.rarity-point-text {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  color: rgba(250,245,233,0.7);
  line-height: 1.55;
}

.rarity-point-text strong {
  color: var(--text-light);
  font-weight: 500;
  display: block;
  margin-bottom: 0.15rem;
}

.rarity-visual {
  position: relative;
}

.rarity-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--forest-dark);
}

.rarity-tabs {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  background: rgba(12,22,11,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(250,245,233,0.12);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}

.rarity-tab {
  border: none;
  background: transparent;
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.55);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.rarity-tab:hover { color: rgba(250,245,233,0.9); }
.rarity-tab.is-active {
  background: var(--bronze);
  color: var(--text-light);
}

.rarity-slides {
  position: absolute;
  inset: 0;
}

.rarity-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.rarity-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rarity-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rarity-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,22,11,0.4) 0%,
    rgba(12,22,11,0) 30%,
    rgba(12,22,11,0) 70%,
    rgba(12,22,11,0.6) 100%
  );
  pointer-events: none;
}

.rarity-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.85);
  background: rgba(12,22,11,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 0.95rem;
  border-radius: 4px;
}

.rarity-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250,245,233,0.25);
  background: rgba(12,22,11,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(250,245,233,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.rarity-nav:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--text-light);
}
.rarity-prev { left: 1rem; }
.rarity-next { right: 1rem; }

.rarity-counter {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(250,245,233,0.9);
  background: rgba(12,22,11,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}
.rarity-counter-current { color: var(--bronze); }
.rarity-counter-sep,
.rarity-counter-total {
  color: rgba(250,245,233,0.55);
  font-size: 0.85em;
}

@media (max-width: 767px) {
  .rarity-tabs { top: 1rem; }
  .rarity-tab { font-size: 0.66rem; padding: 0.4rem 0.85rem; }
  .rarity-nav { width: 38px; height: 38px; }
  .rarity-prev { left: 0.75rem; }
  .rarity-next { right: 0.75rem; }
  .rarity-caption { font-size: 0.62rem; bottom: 1rem; left: 1rem; }
  .rarity-counter { bottom: 1rem; right: 1rem; font-size: 0.85rem; }
}

/* ════════════════════════════════════
   NATURE — Природа и территория
════════════════════════════════════ */
#nature {
  background: var(--stone-dark);
  padding: var(--section-v) 0;
}

.nature-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter-lg);
}
@media (max-width: 767px) {
  .nature-header { padding: 0 var(--gutter); }
}

.nature-poetry {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--bronze);
  margin-top: 0.5rem;
  letter-spacing: 0.005em;
}

/* ── NATURE HEADER GRID ── */
.nature-header-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: stretch;
}
@media (max-width: 900px) {
  .nature-header-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

.nature-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nature-intro .section-sub { max-width: 460px; }

/* ── SPECIES CAROUSEL ── */
.species-carousel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.species-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.species-tab {
  border: 1px solid var(--stone-deep);
  background: transparent;
  color: var(--text-secondary);
  font-family: Inter, sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.species-tab:hover {
  color: var(--text-primary);
  border-color: var(--bronze);
}
.species-tab.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--text-light);
}

.species-stage {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--forest-dark);
  aspect-ratio: 5 / 4;
  min-height: 360px;
}

.species-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.species-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.species-slide-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,22,11,0.15) 0%, rgba(12,22,11,0.35) 35%, rgba(12,22,11,0.88) 100%),
    linear-gradient(90deg, rgba(12,22,11,0.35) 0%, rgba(12,22,11,0) 50%);
}

.species-slide-body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.9rem 1.85rem;
  gap: 0.75rem;
  color: var(--text-light);
}

.species-slide-meta {
  font-family: Inter, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.55);
}
.species-slide-num {
  color: var(--bronze);
  font-weight: 600;
}

.species-slide-title {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-light);
}

.species-slide-desc {
  font-family: Inter, sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(250,245,233,0.78);
  max-width: 460px;
}

.species-slide-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.species-slide-list li {
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(250,245,233,0.85);
  border: 1px solid rgba(250,245,233,0.22);
  background: rgba(250,245,233,0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* Closing slide — quote-style */
.species-slide-closing .species-slide-mask {
  background:
    linear-gradient(180deg, rgba(12,22,11,0.55) 0%, rgba(12,22,11,0.6) 35%, rgba(12,22,11,0.94) 100%),
    linear-gradient(90deg, rgba(12,22,11,0.4) 0%, rgba(12,22,11,0.1) 50%);
}
.species-slide-closing .species-slide-title {
  font-style: italic;
  max-width: 380px;
}
.species-slide-quote {
  position: absolute;
  top: 0.6rem;
  right: 1.4rem;
  font-family: 'DM Serif Display', serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(168,132,92,0.28);
  pointer-events: none;
  user-select: none;
}
.species-slide-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 0.5rem;
}
.species-slide-stat::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--bronze);
}

.species-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.25rem 0.25rem 0;
}

.species-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--stone-deep);
  background: transparent;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.species-arrow:hover {
  color: var(--text-light);
  background: var(--forest);
  border-color: var(--forest);
}

.species-progress {
  flex: 1;
  height: 2px;
  background: var(--stone-deep);
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}
.species-progress-bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 25%;
  background: var(--bronze);
  transition: left 0.6s cubic-bezier(0.22,1,0.36,1), width 0.6s cubic-bezier(0.22,1,0.36,1);
}

@media (max-width: 767px) {
  .species-stage { aspect-ratio: 4 / 5; min-height: 420px; }
  .species-slide-body { padding: 1.4rem 1.5rem 1.5rem; }
  .species-slide-title { font-size: 1.4rem; }
  .species-tab { font-size: 0.66rem; padding: 0.45rem 0.85rem; letter-spacing: 0.12em; }
}

.nature-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter-lg);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .nature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 240px);
    gap: 0.85rem;
    padding: 0 var(--gutter);
  }
}

.nature-photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 0;
  background: var(--forest-dark);
}
.nature-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.nature-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,22,11,0) 35%, rgba(12,22,11,0.18) 60%, rgba(12,22,11,0.8) 100%);
  pointer-events: none;
}
.nature-photo:hover img { transform: scale(1.05); }

.nature-photo.tall { grid-column: 1; grid-row: 1 / 3; }
.nature-photo.wide:nth-of-type(2) { grid-column: 2; grid-row: 1; }
.nature-photo.wide:nth-of-type(3) { grid-column: 2; grid-row: 2; }

.nature-caption {
  position: absolute;
  bottom: 1.4rem;
  left: 1.6rem;
  right: 1.6rem;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  background: none;
  backdrop-filter: none;
  padding: 0;
  border-radius: 0;
}
.nature-caption-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--bronze);
  flex-shrink: 0;
}
.nature-caption-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-light);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .nature-photo.tall,
  .nature-photo.wide:nth-of-type(2),
  .nature-photo.wide:nth-of-type(3) { grid-column: 1; grid-row: auto; }
  .nature-caption { bottom: 1.1rem; left: 1.2rem; right: 1.2rem; }
}

.nature-callout {
  grid-column: 2;
  grid-row: 2;
  background: var(--forest);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
}
.nature-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 2.25rem;
  width: 32px;
  height: 2px;
  background: var(--bronze);
}
.nature-callout-mark {
  position: absolute;
  top: 0.4rem;
  right: 1.6rem;
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(168,132,92,0.15);
  pointer-events: none;
  user-select: none;
}

.nature-callout-headline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  color: var(--text-light);
  line-height: 1.25;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}

.nature-callout-body {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  color: rgba(250,245,233,0.7);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.nature-callout-foot {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.4rem;
}
.nature-callout-foot::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .nature-callout {
    grid-column: 1;
    grid-row: auto;
    padding: 1.75rem;
  }
  .nature-callout::before { left: 1.75rem; }
  .nature-callout-mark { font-size: 4rem; right: 1.25rem; }
}

.nature-callout-stat {
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  color: var(--bronze);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ════════════════════════════════════
   READINESS — Готовность к развитию
════════════════════════════════════ */
#readiness {
  background: var(--stone);
  padding: var(--section-v) 0;
}

.readiness-header {
  max-width: 760px;
  margin: 0 0 3rem;
}
.readiness-header .section-sub { max-width: 540px; }

/* ── INFRASTRUCTURE GRID ── */
.readiness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone-deep);
  border: 1px solid var(--stone-deep);
  border-radius: 18px;
  overflow: hidden;
}

.ready-card {
  background: var(--stone-dark);
  padding: 1.75rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: background 0.25s, transform 0.25s cubic-bezier(0.22,1,0.36,1);
  min-height: 220px;
}
.ready-card:hover {
  background: #ECE5D5;
}

.ready-card-cat {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.ready-card-cat::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
}

.ready-card-key {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 2.6vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.ready-card-unit {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.42em;
  color: var(--bronze);
  letter-spacing: 0;
  font-weight: 400;
}

.ready-card-label {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-top: auto;
  padding-top: 0.5rem;
}

.ready-card-detail {
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* dark variant (last card) */
.ready-card-dark {
  background: var(--forest);
}
.ready-card-dark:hover { background: var(--forest-mid); }
.ready-card-dark .ready-card-cat { color: rgba(168,132,92,0.9); }
.ready-card-dark .ready-card-cat::before { background: rgba(168,132,92,0.9); }
.ready-card-dark .ready-card-key { color: var(--text-light); }
.ready-card-dark .ready-card-label { color: var(--text-light); }
.ready-card-dark .ready-card-detail { color: rgba(250,245,233,0.55); }

@media (max-width: 900px) {
  .readiness-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .readiness-grid { grid-template-columns: 1fr; }
  .ready-card { min-height: 0; padding: 1.5rem 1.4rem 1.4rem; }
}

/* ── REELS GALLERY ── */
.reels-block {
  margin-top: 4rem;
}

.reels-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.reels-head-copy { max-width: 520px; }

.reels-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-top: 0.4rem;
}

.reels-sub {
  font-family: Inter, sans-serif;
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  line-height: 1.65;
}

.reels-follow {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  text-decoration: none;
  padding-bottom: 0.25rem;
}

.reels-follow-handle {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.reels-follow-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze-dim);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}
.reels-follow:hover .reels-follow-cta { border-bottom-color: var(--bronze); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--forest-dark);
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.reel-card:hover { transform: translateY(-3px); }

.reel-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reel-card:hover .reel-thumb { transform: scale(1.06); }

.reel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,22,11,0.15) 0%,
    rgba(12,22,11,0) 40%,
    rgba(12,22,11,0.85) 100%
  );
}

.reel-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(245,240,232,0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  transition: background 0.25s, transform 0.25s;
}
.reel-card:hover .reel-play {
  background: var(--bronze);
  color: var(--text-light);
  transform: translate(-50%, -50%) scale(1.05);
}

.reel-meta {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--text-light);
}

.reel-meta-title {
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.reel-meta-sub {
  font-family: Inter, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.65);
}

@media (max-width: 900px) {
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
  .reel-card:nth-child(n+4) { display: none; }
}
@media (max-width: 600px) {
  .reels-block {
    margin-top: 3rem;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
  }
  .reels-header {
    align-items: flex-start;
    gap: 1rem;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .reels-follow { align-items: flex-start; }
  .reels-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 72%;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    padding-left: var(--gutter);
    padding-right: var(--gutter);  /* modern Safari/Chrome handle this correctly */
    scroll-padding-left: var(--gutter);
    scrollbar-width: none;
  }
  .reels-grid::-webkit-scrollbar { display: none; }
  .reel-card { scroll-snap-align: start; }
  .reel-card:nth-child(n+4) { display: block; }
}

/* ════════════════════════════════════
   VIDEO
════════════════════════════════════ */
#video {
  background: var(--stone);
  padding: var(--section-v) clamp(1rem, 2.5vw, 2rem);
}

/* ── VIDEO WRAP — owns the aspect-ratio; children fill it absolutely ── */
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: var(--forest-dark);
}

/* Placeholder fills the wrap; removed from flow so wrap height never depends on it */
.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  isolation: isolate;
  cursor: pointer;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.22,1,0.36,1), filter 0.4s;
  filter: saturate(0.85);
}
.video-frame:hover .video-bg {
  transform: scale(1.04);
  filter: saturate(1);
}

.video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,22,11,0.5) 0%, rgba(12,22,11,0.1) 30%, rgba(12,22,11,0.1) 60%, rgba(12,22,11,0.9) 100%),
    linear-gradient(90deg, rgba(12,22,11,0.4) 0%, rgba(12,22,11,0) 50%);
  pointer-events: none;
}

.video-corner {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.video-corner-tl { top: 1.75rem; left: 1.75rem; }
.video-corner-tr { top: 1.75rem; right: 1.75rem; align-items: flex-end; }

.video-label {
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.video-label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--bronze);
}

.video-meta {
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.6);
  padding-left: 2.5rem;
}

.video-counter {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: rgba(250,245,233,0.55);
  border-left: 1px solid rgba(250,245,233,0.2);
  padding-left: 0.85rem;
}

.video-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.video-play {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: none;
  background: rgba(245,240,232,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), background 0.3s, color 0.3s;
}
.video-play:hover {
  background: var(--bronze);
  color: var(--text-light);
  transform: scale(1.05);
}
.video-play-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(250,245,233,0.35);
  animation: video-ring-pulse 2.8s cubic-bezier(0.4,0,0.2,1) infinite;
  pointer-events: none;
}
@keyframes video-ring-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.video-caption {
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.7);
}

.video-foot {
  position: absolute;
  z-index: 2;
  left: 1.75rem;
  right: 1.75rem;
  bottom: 1.75rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: end;
}

.video-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text-light);
  max-width: 460px;
  font-style: normal;
  text-align: left;
  padding: 0;
}

.video-chapters {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin: 0;
  padding: 1.1rem 1.25rem;
  background: rgba(12,22,11,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(250,245,233,0.1);
  border-radius: 12px;
}
.video-chapters li {
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  color: rgba(250,245,233,0.78);
  letter-spacing: -0.005em;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.video-chapters span {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--bronze);
  letter-spacing: 0.02em;
  min-width: 2.8rem;
}

/* Embed: hidden until play; becomes absolute overlay — wrap height unchanged */
#video-embed {
  display: none;
  position: absolute;
  inset: 0;
  background: #0c160b;
}
#video-embed.is-active {
  display: block;
  z-index: 10;
}
#video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

@media (max-width: 900px) {
  .video-foot { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  /* 16:9 on mobile too — consistent with the video; poster looks fine landscape */
  .video-wrap { border-radius: 16px; }
  .video-corner-tl, .video-corner-tr { top: 1.1rem; }
  .video-corner-tl { left: 1.1rem; }
  .video-corner-tr { right: 1.1rem; }
  .video-meta { padding-left: 1.85rem; font-size: 0.62rem; }
  .video-play { width: 72px; height: 72px; }
  .video-foot { left: 1.1rem; right: 1.1rem; bottom: 1.1rem; }
  .video-title { display: none; }
  .video-caption { display: none; }
  .video-chapters { display: none; }
}

/* ════════════════════════════════════
   SCENARIOS — Возможные сценарии использования
════════════════════════════════════ */
#scenarios {
  background: var(--forest);
  padding: var(--section-v) 0;
  overflow: hidden;
  position: relative;
}

#scenarios::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(168,132,92,0.08), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(168,132,92,0.06), transparent 50%);
  pointer-events: none;
}

#scenarios > .container { position: relative; z-index: 1; }

.scenarios-header { margin-bottom: 3rem; max-width: 760px; }

/* ── BENTO GRID ── */
.scenarios-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}

.sc-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  text-decoration: none;
  color: var(--text-light);
  isolation: isolate;
  background-color: var(--forest-dark);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
  display: block;
}
.sc-card:hover { transform: translateY(-3px); }

/* layout */
.sc-feature {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}
.sc-tall {
  grid-column: 5 / 7;
  grid-row: 1 / 3;
}
.sc-card:nth-of-type(3),
.sc-card:nth-of-type(4),
.sc-card:nth-of-type(5) {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .scenarios-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 320px;
    gap: 0.85rem;
  }
  .sc-feature,
  .sc-tall,
  .sc-card:nth-of-type(3),
  .sc-card:nth-of-type(4),
  .sc-card:nth-of-type(5) {
    grid-column: span 1;
    grid-row: auto;
  }
  .sc-feature { grid-column: 1 / -1; grid-row: span 1; min-height: 380px; }
}

@media (max-width: 540px) {
  .scenarios-bento { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 0.75rem; }
  .sc-card { min-height: 300px; }
  .sc-feature { grid-column: 1 / -1; min-height: 380px; }
  .sc-tall { min-height: 320px; }
}

/* ── CARD INTERNALS ── */
.sc-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,22,11,0.2) 0%,
    rgba(12,22,11,0.35) 40%,
    rgba(12,22,11,0.92) 100%
  );
  transition: background 0.4s;
}
.sc-card:hover .sc-shade {
  background: linear-gradient(
    180deg,
    rgba(12,22,11,0.3) 0%,
    rgba(12,22,11,0.55) 40%,
    rgba(12,22,11,0.95) 100%
  );
}

.sc-num {
  position: absolute;
  top: 1.25rem;
  left: 1.4rem;
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: rgba(250,245,233,0.7);
  letter-spacing: 0.05em;
  z-index: 2;
}

.sc-tag {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(168,132,92,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
}

.sc-body {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sc-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-light);
}
.sc-feature .sc-title {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.05;
}

.sc-desc {
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  color: rgba(250,245,233,0.7);
  line-height: 1.55;
  max-width: 460px;
}
.sc-feature .sc-desc {
  font-size: 0.92rem;
  max-width: 520px;
}

.sc-stat {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 0.45rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(250,245,233,0.14);
}

.sc-stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--bronze);
  font-style: italic;
  letter-spacing: -0.005em;
}
.sc-feature .sc-stat-val { font-size: 1.25rem; }

.sc-stat-lbl {
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.5);
}

.sc-arrow {
  position: absolute;
  top: 1.2rem;
  right: 1.25rem;
  z-index: 2;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(250,245,233,0.22);
  background: rgba(12,22,11,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(250,245,233,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.sc-feature .sc-arrow {
  top: auto;
  bottom: 1.5rem;
  right: 1.4rem;
}
.sc-card:hover .sc-arrow {
  background: var(--bronze);
  border-color: var(--bronze);
  transform: translate(2px, -2px);
}
.sc-feature:has(.sc-tag) .sc-arrow,
.sc-feature .sc-arrow {
  /* keep feature arrow at bottom-right even with tag at top-right */
}

.scenarios-foot {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: rgba(250,245,233,0.78);
  text-align: center;
  margin-top: 3rem;
  letter-spacing: 0.005em;
  line-height: 1.5;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(250,245,233,0.12);
}

@media (max-width: 540px) {
  .sc-body { left: 1.2rem; right: 1.2rem; bottom: 1.25rem; }
  .sc-num { left: 1.2rem; top: 1.1rem; }
  .sc-arrow { right: 1.1rem; top: 1.05rem; width: 30px; height: 30px; }
  .sc-feature .sc-arrow { bottom: 1.25rem; right: 1.2rem; top: auto; }
}

/* ════════════════════════════════════
   INCLUDED — Что входит в комплекс
════════════════════════════════════ */
#included {
  background: var(--stone-dark);
  padding: var(--section-v) 0;
}

.included-head {
  max-width: 720px;
  margin-bottom: 3rem;
}
.included-head .section-sub { max-width: 540px; }

/* ── CATEGORIES ── */
.included-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.inc-cat {
  background: var(--stone);
  border: 1px solid var(--stone-deep);
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.inc-cat-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--stone-deep);
  position: relative;
}

.inc-cat-num {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.inc-cat-name {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.inc-cat-count {
  position: absolute;
  top: 0;
  right: 0;
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.inc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.inc-item {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(212,203,186,0.55);
  transition: padding-left 0.25s;
}
.inc-item:last-child { border-bottom: none; }
.inc-item:hover { padding-left: 0.25rem; }

.inc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--stone-dark);
  border: 1px solid var(--stone-deep);
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.inc-icon svg {
  width: 20px;
  height: 20px;
}
.inc-item:hover .inc-icon {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--text-light);
}

.inc-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  padding-top: 0.05rem;
}

.inc-name {
  font-family: Inter, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.inc-detail {
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .included-categories { grid-template-columns: 1fr; gap: 0.85rem; }
}
@media (max-width: 767px) {
  /* Stack included section: head → foot stats → categories */
  #included .container {
    display: flex;
    flex-direction: column;
  }
  .included-head { order: 0; }
  .included-foot { order: 1; margin-top: 0; margin-bottom: 1.25rem; }
  .included-categories { order: 2; }
}

/* ── FOOT SUMMARY STRIP ── */
.included-foot {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone-deep);
  border: 1px solid var(--stone-deep);
  border-radius: 14px;
  overflow: hidden;
}

.included-foot-stat {
  background: var(--forest);
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.included-foot-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.included-foot-unit {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.45em;
  color: var(--bronze);
  margin-left: 0.2em;
}

.included-foot-lbl {
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  color: rgba(250,245,233,0.55);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .included-foot {
    grid-template-columns: repeat(2, 1fr);
  }
  .included-foot-stat { padding: 1.25rem 1.2rem; }
  .included-foot-num { font-size: 2rem; }
  .included-foot-lbl { font-size: 0.74rem; }
}

/* ════════════════════════════════════
   FORMATS — Форматы приобретения (subscription tiers)
════════════════════════════════════ */
#formats {
  background: var(--stone);
  padding: var(--section-v) 0;
}

.formats-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}
.formats-head .section-sub { max-width: 540px; }

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.fmt-card {
  position: relative;
  background: var(--stone-dark);
  border: 1px solid var(--stone-deep);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s;
}
.fmt-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px rgba(28,46,26,0.35);
}

/* Featured card (Tier B) */
.fmt-card-featured {
  background: var(--forest);
  border-color: var(--forest);
  transform: translateY(-12px);
  box-shadow: 0 32px 70px -40px rgba(28,46,26,0.6);
  z-index: 2;
}
.fmt-card-featured:hover {
  transform: translateY(-14px);
  box-shadow: 0 36px 80px -40px rgba(28,46,26,0.7);
}

.fmt-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--bronze);
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
}

/* ── PHOTO HEADER ── */
.fmt-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--forest-dark);
}
.fmt-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.fmt-card:hover .fmt-photo img { transform: scale(1.04); }
.fmt-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,22,11,0) 50%,
    rgba(12,22,11,0.7) 100%
  );
}
.fmt-photo-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  background: rgba(12,22,11,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  font-weight: 500;
}

/* ── BODY ── */
.fmt-body {
  padding: 1.75rem 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1;
}

.fmt-head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fmt-name {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}
.fmt-card-featured .fmt-name { color: var(--text-light); }

.fmt-tagline {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.fmt-card-featured .fmt-tagline { color: rgba(250,245,233,0.55); }

.fmt-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.5rem;
}

.fmt-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.fmt-price {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.fmt-card-featured .fmt-price { color: var(--text-light); }

.fmt-price-unit {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--bronze);
}

.fmt-price-note {
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.fmt-card-featured .fmt-price-note { color: rgba(168,132,92,0.85); }

.fmt-divider {
  height: 1px;
  background: var(--stone-deep);
  margin: 0.25rem 0;
}
.fmt-card-featured .fmt-divider { background: rgba(250,245,233,0.12); }

.fmt-feat-head {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.fmt-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
}

.fmt-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
}
.fmt-card-featured .fmt-features li { color: rgba(250,245,233,0.78); }

.fmt-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--bronze-glow);
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.fmt-check svg { width: 12px; height: 12px; }
.fmt-card-featured .fmt-check {
  background: rgba(168,132,92,0.2);
  color: var(--bronze);
}

.fmt-feature-out {
  color: var(--text-muted) !important;
  text-decoration: line-through;
  text-decoration-color: rgba(138,138,122,0.4);
}
.fmt-card-featured .fmt-feature-out {
  color: rgba(250,245,233,0.32) !important;
}
.fmt-check-out {
  background: transparent;
  border: 1px solid rgba(138,138,122,0.35);
  color: rgba(138,138,122,0.7);
}
.fmt-card-featured .fmt-check-out {
  border-color: rgba(250,245,233,0.18);
  color: rgba(250,245,233,0.4);
}

.fmt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 48px;
  background: var(--forest);
  color: var(--text-light);
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 10px;
  margin-top: auto;
  padding: 0 1rem;
  transition: background 0.2s, transform 0.15s;
}
.fmt-cta:hover { background: var(--forest-mid); }
.fmt-cta:active { transform: scale(0.99); }

.fmt-cta-featured {
  background: var(--bronze);
  color: var(--text-light);
}
.fmt-cta-featured:hover { background: #8C6A45; }

.fmt-foot-note {
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: -0.15rem;
}
.fmt-card-featured .fmt-foot-note { color: rgba(250,245,233,0.45); }

/* ── TRUST STRIP ── */
.formats-trust {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: var(--stone-dark);
  border: 1px solid var(--stone-deep);
  border-radius: 12px;
}

.formats-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  color: var(--text-secondary);
  letter-spacing: 0.005em;
}
.formats-trust-item svg {
  color: var(--bronze);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .formats-grid { grid-template-columns: 1fr; gap: 1rem; }
  .fmt-card-featured { transform: none; }
  .fmt-card-featured:hover { transform: translateY(-2px); }
}
@media (max-width: 767px) {
  .fmt-body { padding: 1.5rem 1.5rem 1.6rem; gap: 1rem; }
  .formats-trust {
    flex-direction: column;
    gap: 0.875rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
  }
}

/* ════════════════════════════════════
   OWNERSHIP — Юридическая структура
════════════════════════════════════ */
#ownership {
  background: var(--stone-dark);
  padding: var(--section-v) 0;
}

.own-head {
  max-width: 720px;
  margin-bottom: 3rem;
}
.own-head .section-sub { max-width: 560px; }

/* ── PARCELS GRID ── */
.own-parcels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.own-parcel {
  background: var(--stone);
  border: 1px solid var(--stone-deep);
  border-radius: 16px;
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.own-parcel-num {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.own-parcel-name {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.own-parcel-area {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--bronze);
  letter-spacing: -0.005em;
  margin-top: -0.4rem;
}

.own-parcel-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.35rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--stone-deep);
}
.own-parcel-meta li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: Inter, sans-serif;
}
.own-parcel-meta span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.own-parcel-meta strong {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.own-parcel-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.85rem;
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #5a8f5a;
}
.own-parcel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fb36f;
  box-shadow: 0 0 0 3px rgba(111,179,111,0.18);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .own-parcels { grid-template-columns: 1fr; }
}

/* ── DEAL PROCESS ── */
.own-process {
  background: var(--forest);
  border-radius: 20px;
  padding: clamp(2rem, 3.5vw, 3.25rem);
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.own-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(168,132,92,0.08), transparent 45%);
  pointer-events: none;
}

.own-process > * { position: relative; z-index: 1; }

.own-process-head { max-width: 560px; margin-bottom: 2.5rem; }
.own-process-head .label { color: rgba(168,132,92,0.85); }

.own-process-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.3vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-light);
  margin-top: 0.4rem;
}

.own-process-sub {
  font-family: Inter, sans-serif;
  font-size: 0.92rem;
  color: rgba(250,245,233,0.6);
  margin-top: 0.85rem;
  line-height: 1.65;
}

.own-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  counter-reset: step;
}

.own-step {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,245,233,0.14);
}

.own-step-num {
  position: absolute;
  top: -0.95rem;
  left: 0;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--bronze);
  background: var(--forest);
  padding-right: 0.6rem;
  letter-spacing: 0.05em;
}

.own-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.own-step-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--text-light);
}

.own-step-desc {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: rgba(250,245,233,0.65);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .own-steps { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── ASSURANCES ── */
.own-assurances {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.own-assurance {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--stone);
  border: 1px solid var(--stone-deep);
  border-radius: 12px;
}

.own-assurance-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bronze-glow);
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.own-assurance-icon svg { width: 20px; height: 20px; }

.own-assurance-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.own-assurance-text strong {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
.own-assurance-text small {
  font-family: Inter, sans-serif;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .own-assurances { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .own-assurances { grid-template-columns: 1fr; }
}

/* ── CTA ROW ── */
.own-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--stone);
  border: 1px solid var(--stone-deep);
  border-radius: 16px;
  flex-wrap: wrap;
}

.own-cta-copy { flex: 1; min-width: 240px; }

.own-cta-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.own-cta-sub {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.55;
  max-width: 460px;
}

.own-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0 1.75rem;
  background: var(--forest);
  color: var(--text-light);
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 10px;
  transition: background 0.2s;
  white-space: nowrap;
}
.own-cta-btn:hover { background: var(--forest-mid); }

@media (max-width: 767px) {
  .own-cta { padding: 1.75rem; }
  .own-cta-btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════
   LOCATION
════════════════════════════════════ */
#location {
  background: var(--stone);
  padding: var(--section-v) 0;
}

.loc-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}
.loc-head .section-sub { max-width: 540px; }

/* ── STATS STRIP ── */
.loc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--stone-deep);
  border: 1px solid var(--stone-deep);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.loc-stat {
  background: var(--stone-dark);
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.loc-stat-val {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.loc-stat-unit {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 0.5em;
  color: var(--bronze);
  margin-left: 0.18em;
  font-weight: 400;
}
.loc-stat-lbl {
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 767px) {
  .loc-stats { grid-template-columns: repeat(2, 1fr); }
  .loc-stat { padding: 1.2rem 1.25rem; }
}

/* ── MAP BLOCK ── */
.loc-map-block {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--stone-deep);
  background: var(--stone-dark);
  margin-bottom: 3rem;
  min-height: 540px;
  isolation: isolate;
  z-index: 0;
}

#map {
  width: 100%;
  height: 540px;
}

/* Estate floating card on map */
.loc-map-card {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 600;
  width: 320px;
  max-width: calc(100% - 3rem);
  background: var(--stone);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(28,46,26,0.35);
  border: 1px solid var(--stone-deep);
}

.loc-map-card-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--forest-dark);
}
.loc-map-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.loc-map-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,22,11,0) 50%, rgba(12,22,11,0.45) 100%);
}

.loc-map-card-pin {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(12,22,11,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.loc-map-card-pin-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 3px rgba(168,132,92,0.3);
}

.loc-map-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.loc-map-card-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.loc-map-card-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.loc-map-card-coords {
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.loc-map-card-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--stone-deep);
}
.loc-map-card-meta li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: Inter, sans-serif;
}
.loc-map-card-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.loc-map-card-meta strong {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  text-align: right;
}

@media (max-width: 767px) {
  /* Let card flow below the map — remove overflow:hidden so card isn't clipped */
  .loc-map-block {
    min-height: 0;
    overflow: visible;
    border-radius: 0;
    border: none;
    background: transparent;
  }
  /* Apply clipping directly to the map so tiles are still clipped */
  #map {
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
  }
  .loc-map-card {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 1rem 0 0;
    border-radius: 16px;
    box-shadow: 0 8px 24px -12px rgba(28,46,26,0.2);
  }
  /* Hide photo on mobile — card body info is enough */
  .loc-map-card-photo { display: none; }
  .akkol-pin-card { display: none !important; }
}

/* ── INFO GRID (route + comparison) ── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.loc-block-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.loc-block-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.9vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.loc-route,
.loc-compare {
  background: var(--stone-dark);
  border: 1px solid var(--stone-deep);
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.85rem;
}

/* Route steps */
.loc-route-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.loc-route-step {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed rgba(212,203,186,0.65);
}
.loc-route-step:first-child { padding-top: 0; }
.loc-route-step:last-child { border-bottom: none; padding-bottom: 0; }

.loc-route-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--bronze);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 0.1rem;
}

.loc-route-body {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-family: Inter, sans-serif;
  flex: 1;
}

.loc-route-from {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}
.loc-route-arrow {
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
}
.loc-route-arrow svg { width: 24px; height: 8px; }
.loc-route-to {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}
.loc-route-meta {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
}

/* Comparison bars */
.loc-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.loc-compare-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 0.65rem 0.85rem;
  font-family: Inter, sans-serif;
}

.loc-compare-flag {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--stone);
  border: 1px solid var(--stone-deep);
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-compare-flag svg { width: 12px; height: 12px; }

.loc-compare-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.loc-compare-bar {
  grid-column: 2 / 3;
  grid-row: 2;
  height: 4px;
  background: var(--stone-deep);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  margin-top: -0.3rem;
}
.loc-compare-bar > span {
  display: block;
  height: 100%;
  background: var(--bronze);
  border-radius: 999px;
  transition: width 0.8s cubic-bezier(0.22,1,0.36,1);
}

.loc-compare-val {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--bronze);
  grid-row: 1;
  grid-column: 3;
}

.loc-compare-row-mark .loc-compare-name { color: var(--forest); font-weight: 600; }
.loc-compare-row-mark .loc-compare-flag {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--text-light);
}
.loc-compare-row-mark .loc-compare-bar > span {
  background: linear-gradient(90deg, var(--forest), #2b4a26);
}

.loc-compare-row-muted .loc-compare-name { color: var(--text-muted); }
.loc-compare-row-muted .loc-compare-bar > span {
  background: rgba(168,132,92,0.45);
}

.loc-compare-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stone-deep);
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.loc-compare-note strong {
  color: var(--text-primary);
  font-weight: 600;
}

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

/* ── BOTTOM CTA ── */
.loc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.85rem 2.5rem;
  background: var(--forest);
  color: var(--text-light);
  border-radius: 16px;
  flex-wrap: wrap;
}

.loc-cta-copy { flex: 1; min-width: 240px; }

.loc-cta-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-light);
}

.loc-cta-sub {
  font-family: Inter, sans-serif;
  font-size: 0.88rem;
  color: rgba(250,245,233,0.65);
  margin-top: 0.45rem;
  line-height: 1.55;
  max-width: 460px;
}

.loc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0 1.75rem;
  background: var(--bronze);
  color: var(--text-light);
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 10px;
  transition: background 0.2s;
  white-space: nowrap;
}
.loc-cta-btn:hover { background: #8C6A45; }

@media (max-width: 767px) {
  .loc-cta { padding: 1.5rem 1.75rem; }
  .loc-cta-btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
#contact {
  background: var(--forest);
  padding: var(--section-v) 0;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(168,132,92,0.1), transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(168,132,92,0.06), transparent 50%);
  pointer-events: none;
}
#contact > .container { position: relative; z-index: 1; }

/* ── HERO BAND ── */
.ct-hero {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.ct-hero .label {
  justify-content: center;
}
.ct-hero .label::before { display: none; }
.ct-hero-sub {
  font-family: Inter, sans-serif;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: rgba(250,245,233,0.7);
  line-height: 1.75;
  margin: 1.25rem auto 0;
  max-width: 600px;
}

/* ── CHANNEL CARDS ── */
.ct-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.ct-channel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.85rem 1.85rem 1.7rem;
  background: rgba(250,245,233,0.05);
  border: 1px solid rgba(250,245,233,0.1);
  border-radius: 18px;
  color: var(--text-light);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), background 0.3s, border-color 0.3s;
}
.ct-channel:hover {
  transform: translateY(-3px);
  background: rgba(250,245,233,0.08);
  border-color: rgba(168,132,92,0.4);
}

.ct-channel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.ct-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168,132,92,0.18);
  color: var(--bronze);
  transition: background 0.3s, color 0.3s;
}
.ct-channel-icon svg { width: 22px; height: 22px; }

.ct-channel-wa .ct-channel-icon {
  background: rgba(37,211,102,0.18);
  color: #25D366;
}
.ct-channel-ig .ct-channel-icon {
  background: rgba(228,64,95,0.15);
  color: #E4405F;
}

.ct-channel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.5);
  border: 1px solid rgba(250,245,233,0.12);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}
.ct-channel-badge-fast {
  color: #b4d7b4;
  border-color: rgba(111,179,111,0.35);
  background: rgba(111,179,111,0.1);
}
.ct-channel-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6fb36f;
  box-shadow: 0 0 0 3px rgba(111,179,111,0.3);
  animation: ct-pulse 2.4s ease-in-out infinite;
}
@keyframes ct-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(111,179,111,0.3); }
  50%      { box-shadow: 0 0 0 6px rgba(111,179,111,0.08); }
}

.ct-channel-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 1.8vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-light);
}

.ct-channel-meta {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bronze);
  letter-spacing: 0.005em;
  margin-top: -0.3rem;
}

.ct-channel-desc {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: rgba(250,245,233,0.6);
  line-height: 1.6;
  flex: 1;
}

.ct-channel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250,245,233,0.1);
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bronze);
  transition: gap 0.25s;
}
.ct-channel:hover .ct-channel-cta { gap: 0.75rem; }

@media (max-width: 900px) {
  .ct-channels { grid-template-columns: 1fr; }
}

/* ── OR DIVIDER ── */
.ct-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 auto 3rem;
  max-width: 540px;
}
.ct-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(250,245,233,0.12);
}
.ct-divider-text {
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.5);
  white-space: nowrap;
}

/* ── AGENT + FORM GRID ── */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; }
}

.ct-agent {
  background: rgba(250,245,233,0.04);
  border: 1px solid rgba(250,245,233,0.1);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ct-agent-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze) 0%, #8C6A45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  border: 3px solid rgba(250,245,233,0.1);
  box-shadow: 0 8px 24px -10px rgba(168,132,92,0.6);
}

.ct-agent-body { display: flex; flex-direction: column; gap: 0.6rem; }

.ct-agent-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}

.ct-agent-name {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-light);
}

.ct-agent-role {
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  color: rgba(250,245,233,0.5);
  letter-spacing: 0.04em;
  margin-top: -0.3rem;
}

.ct-agent-bio {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  color: rgba(250,245,233,0.65);
  line-height: 1.65;
  margin-top: 0.4rem;
}

.ct-agent-helps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0.6rem 0 0;
  padding-top: 1rem;
  border-top: 1px dashed rgba(250,245,233,0.12);
}
.ct-agent-helps li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  color: rgba(250,245,233,0.7);
  line-height: 1.5;
}
.ct-agent-helps li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bronze);
  margin-top: 0.55em;
  flex-shrink: 0;
}

.ct-agent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.ct-agent-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: rgba(250,245,233,0.06);
  border: 1px solid rgba(250,245,233,0.1);
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--bronze);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ct-agent-link:hover {
  background: rgba(168,132,92,0.15);
  border-color: rgba(168,132,92,0.4);
  color: var(--text-light);
}

/* ── FORM ── */
.ct-form {
  background: rgba(250,245,233,0.04);
  border: 1px solid rgba(250,245,233,0.1);
  border-radius: 18px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.ct-form-head { margin-bottom: 1.5rem; }
.ct-form-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  display: inline-block;
  margin-bottom: 0.5rem;
}
.ct-form-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-light);
}
.ct-form-sub {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: rgba(250,245,233,0.55);
  line-height: 1.6;
  margin-top: 0.6rem;
}

.form-label-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(250,245,233,0.3);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.ct-form-foot {
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  color: rgba(250,245,233,0.4);
  line-height: 1.55;
  margin-top: 1rem;
  text-align: center;
}

#form-success strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

/* ── TRUST STRIP ── */
.ct-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(250,245,233,0.08);
}

.ct-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.ct-trust-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(168,132,92,0.15);
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ct-trust-icon svg { width: 16px; height: 16px; }

.ct-trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: Inter, sans-serif;
  min-width: 0;
}
.ct-trust-text strong {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.ct-trust-text small {
  font-size: 0.72rem;
  color: rgba(250,245,233,0.5);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .ct-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .ct-trust { grid-template-columns: 1fr; }
  .ct-agent, .ct-form { padding: 1.5rem; }
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
  background: var(--forest-dark);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(250,245,233,0.06);
}

.ft-top {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,245,233,0.06);
}

.ft-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ft-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
}

.ft-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(250,245,233,0.55);
  line-height: 1.5;
  letter-spacing: 0.005em;
  max-width: 380px;
}

.ft-stats {
  display: flex;
  gap: 2rem;
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(250,245,233,0.06);
}
.ft-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.ft-stat strong {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-light);
}
.ft-stat span {
  font-family: Inter, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.4);
}

.ft-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ft-col-title {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.1rem;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.ft-links li,
.ft-links a {
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  color: rgba(250,245,233,0.55);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.ft-links a:hover { color: var(--text-light); }

.ft-links-plain li { color: rgba(250,245,233,0.55); }

.ft-coords {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--bronze) !important;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  flex-wrap: wrap;
}
.ft-copy,
.ft-fine {
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  color: rgba(250,245,233,0.3);
  letter-spacing: 0.04em;
}
.ft-fine { max-width: 540px; text-align: right; }

@media (max-width: 900px) {
  .ft-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .ft-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ft-stats { gap: 1.5rem; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
  .ft-fine { text-align: left; }
}
@media (max-width: 540px) {
  .ft-cols { grid-template-columns: 1fr; }
  footer { padding: 3rem 0 1.5rem; }
}

/* ── FORM ── */
.form-field { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,245,233,0.38);
  margin-bottom: 0.625rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250,245,233,0.18);
  color: var(--text-light);
  padding: 0.875rem 0;
  font-family: Inter, sans-serif;
  font-size: 0.925rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(250,245,233,0.25); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-bottom-color: var(--bronze); }

.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(250,245,233,0.3)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.form-select option { background: var(--forest); color: var(--text-light); }

.form-submit {
  width: 100%;
  min-height: 52px;
  background: var(--bronze);
  color: var(--text-light);
  font-family: Inter, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: #8C6A45; }

#form-success {
  display: none;
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  color: rgba(250,245,233,0.65);
  margin-top: 1rem;
  text-align: center;
  padding: 1rem;
  border: 1px solid rgba(168,132,92,0.3);
  border-radius: 8px;
}

/* ════════════════════════════════════
   FOOTER (replaced — see CONTACT section)
════════════════════════════════════ */

/* ── MAP MARKERS ── */
.akkol-pin {
  position: relative;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(28,46,26,0.35));
}
.akkol-pin-base {
  position: absolute;
  top: 48px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 22px;
  height: 22px;
  background: var(--forest);
  border: 2px solid var(--stone);
  border-radius: 3px;
  z-index: 3;
}
.akkol-pin-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--bronze);
  border-radius: 1px;
}
.akkol-pin-stem {
  position: absolute;
  top: 36px; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 18px;
  background: linear-gradient(to bottom, rgba(168,132,92,0) 0%, var(--bronze) 100%);
  z-index: 1;
}
.akkol-pin-card {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--stone);
  border: 1px solid var(--stone-deep);
  border-radius: 6px;
  padding: 0.4rem 0.85rem 0.45rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
  box-shadow: 0 4px 12px rgba(28,46,26,0.15);
  z-index: 2;
}
.akkol-pin-eyebrow {
  font-family: Inter, sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.akkol-pin-name {
  font-family: 'DM Serif Display', serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--forest);
  line-height: 1;
}

.akkol-ref-pin {
  pointer-events: none;
  position: relative;
}
.akkol-ref-dot {
  position: absolute;
  top: 0; left: 50%;
  width: 9px; height: 9px;
  margin-left: -4.5px;
  border-radius: 50%;
  background: var(--forest);
  border: 1.5px solid var(--stone);
  box-shadow: 0 2px 5px rgba(0,0,0,0.18);
}
.akkol-ref-label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Inter, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  background: rgba(245,240,232,0.92);
  padding: 0.15rem 0.55rem;
  border-radius: 3px;
  white-space: nowrap;
  border: 1px solid rgba(212,203,186,0.7);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.akkol-ref-pin--above .akkol-ref-dot {
  top: auto;
  bottom: 0;
}
.akkol-ref-pin--above .akkol-ref-label {
  top: auto;
  bottom: 13px;
}

.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 4px 14px rgba(28,46,26,0.18) !important;
  margin: 1.25rem !important;
}
.leaflet-control-zoom a {
  background: rgba(245,240,232,0.95) !important;
  border: 1px solid rgba(212,203,186,0.6) !important;
  color: var(--forest) !important;
  font-family: Inter, sans-serif !important;
  font-size: 16px !important;
  line-height: 28px !important;
}
.leaflet-control-zoom a:hover {
  background: var(--bronze) !important;
  color: var(--text-light) !important;
  border-color: var(--bronze) !important;
}
.leaflet-control-attribution {
  font-family: Inter, sans-serif !important;
  font-size: 10px !important;
  background: rgba(245,240,232,0.85) !important;
  color: var(--text-muted) !important;
}

/* ════════════════════════════════════
   WHATSAPP BUTTON
════════════════════════════════════ */
.wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
}
.wa-btn.visible {
  opacity: 1;
  pointer-events: all;
}
.wa-btn:hover { transform: scale(1.06); box-shadow: 0 6px 28px rgba(0,0,0,0.28); }

@media (max-width: 767px) {
  .wa-btn { bottom: 20px; right: 16px; }
}

/* ════════════════════════════════════
   MOBILE UTILITY + GLOBAL POLISH
════════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --gutter: 1.1rem;
    --gutter-lg: 1.1rem;
    --section-v: clamp(3.25rem, 8vw, 4.5rem);
  }

  /* Type tightening */
  h2.section-title { font-size: clamp(1.7rem, 6.5vw, 2.25rem); }
  .section-sub { font-size: 0.92rem; line-height: 1.65; }
  .label { font-size: 0.74rem; letter-spacing: 0.16em; gap: 0.55rem; margin-bottom: 1rem; }
  .label::before { width: 18px; }

  /* HERO — tighten pill + actions + anchor */
  .hero-pill {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.3rem;
    text-align: center;
    padding: 0.4rem 0.85rem;
  }
  .hero-pill-divider { display: none; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); letter-spacing: -0.02em; }
  .hero-sub { font-size: 0.95rem; margin-top: 1.1rem; }
  .hero-anchor { font-size: 0.62rem; letter-spacing: 0.16em; margin-top: 1rem; gap: 0.5rem; }
  .hero-anchor::before { width: 16px; }
  .hero-actions { gap: 1.1rem; margin-top: 1.85rem; }
  .btn-primary { padding: 0 1.4rem; min-height: 46px; font-size: 0.82rem; }
  .btn-ghost { font-size: 0.74rem; }

  /* HERO infobar reads as label/value rows already, but trim */
  .infobar-label { font-size: 0.58rem; }
  .infobar-value { font-size: 0.92rem; }

  /* SNAPSHOT */
  .snap-card { padding: 1.35rem 1.2rem; }
  .snapshot-intro { margin-bottom: 2rem; }

  /* RARITY — tighter */
  .rarity-headline { font-size: 1.7rem; margin-bottom: 1.5rem; }
  .rarity-point { gap: 0.85rem; padding-bottom: 0.85rem; }
  .rarity-point-text { font-size: 0.85rem; }

  /* NATURE — tighter */
  .nature-poetry { font-size: 1.05rem; }
  .species-tab { font-size: 0.62rem; padding: 0.4rem 0.7rem; }
  .species-tabs { gap: 4px; }

  /* READINESS cards */
  .readiness-grid { border-radius: 14px; }
  .ready-card { min-height: 0; padding: 1.35rem 1.25rem 1.25rem; }
  .ready-card-key { font-size: 1.9rem; }
  .reels-block { margin-top: 2.5rem; }
  .reels-header { gap: 0.85rem; margin-bottom: 1.25rem; }
  .reels-title { font-size: 1.35rem; }

  /* SCENARIOS bento */
  .scenarios-header { margin-bottom: 2rem; }
  .scenarios-foot { margin-top: 2rem; font-size: 0.88rem; }
  .sc-title { font-size: 1.2rem; }
  .sc-feature .sc-title { font-size: 1.55rem; }
  .sc-desc { font-size: 0.78rem; }
  .sc-feature .sc-desc { font-size: 0.85rem; }

  /* INCLUDED */
  .included-head { margin-bottom: 2rem; }
  .inc-cat { padding: 1.4rem 1.4rem 1.2rem; gap: 1.1rem; }
  .inc-cat-name { font-size: 1.25rem; }
  .inc-cat-count { font-size: 0.66rem; }
  .inc-name { font-size: 0.88rem; }
  .inc-detail { font-size: 0.74rem; }
  .included-foot { margin-top: 2rem; }
  .included-foot-stat { padding: 1.1rem 1.1rem; }
  .included-foot-num { font-size: 1.4rem; }
  .included-foot-lbl { font-size: 0.62rem; line-height: 1.35; }

  /* FORMATS */
  .formats-head { margin-bottom: 2rem; }
  .fmt-photo-tag { font-size: 0.6rem; padding: 0.3rem 0.6rem; }
  .fmt-name { font-size: 1.35rem; }
  .fmt-price { font-size: 2.3rem; }
  .fmt-features li { font-size: 0.82rem; }
  .formats-trust { margin-top: 2rem; }
  .formats-trust-item { font-size: 0.78rem; }

  /* OWNERSHIP */
  .own-head { margin-bottom: 2rem; }
  .own-parcels { margin-bottom: 2.5rem; }
  .own-parcel { padding: 1.35rem 1.35rem 1.25rem; gap: 0.85rem; }
  .own-parcel-name { font-size: 1.2rem; }
  .own-process { padding: 1.75rem 1.4rem; border-radius: 16px; }
  .own-process-head { margin-bottom: 1.75rem; }
  .own-process-title { font-size: 1.45rem; }
  .own-step { padding-top: 1.25rem; }
  .own-step-title { font-size: 1.05rem; }
  .own-step-desc { font-size: 0.8rem; }
  .own-cta { padding: 1.5rem 1.5rem; gap: 1.25rem; }

  /* LOCATION */
  .loc-head { margin-bottom: 2rem; }
  .loc-stat-val { font-size: 1.5rem; }
  .loc-stat-lbl { font-size: 0.62rem; letter-spacing: 0.1em; }
  .loc-map-block { margin-bottom: 2rem; min-height: 0; }
  #map { height: 320px; }
  .loc-route, .loc-compare { padding: 1.4rem 1.4rem 1.5rem; }
  .loc-block-title { font-size: 1.25rem; margin-bottom: 1.1rem; }
  .loc-route-num { font-size: 0.85rem; }
  .loc-route-from, .loc-route-to { font-size: 0.82rem; }
  .loc-route-meta { font-size: 0.68rem; }
  .loc-compare-name { font-size: 0.82rem; }
  .loc-compare-val { font-size: 0.92rem; }
  .loc-compare-note { font-size: 0.8rem; }
  .loc-cta { padding: 1.5rem 1.5rem; }

  /* CONTACT */
  .ct-hero { margin-bottom: 2.5rem; }
  .ct-hero-sub { font-size: 0.9rem; }
  .ct-channels { margin-bottom: 2.5rem; gap: 0.85rem; }
  .ct-channel { padding: 1.5rem 1.5rem 1.4rem; border-radius: 14px; }
  .ct-channel-title { font-size: 1.3rem; }
  .ct-channel-icon { width: 38px; height: 38px; }
  .ct-channel-icon svg { width: 18px; height: 18px; }
  .ct-divider { margin-bottom: 2rem; }
  .ct-divider-text { font-size: 0.62rem; letter-spacing: 0.14em; }
  .ct-grid { gap: 1rem; margin-bottom: 2.5rem; }
  .ct-agent { padding: 1.5rem; gap: 1.1rem; }
  .ct-agent-photo { width: 72px; height: 72px; font-size: 1.5rem; }
  .ct-agent-name { font-size: 1.4rem; }
  .ct-agent-bio { font-size: 0.83rem; }
  .ct-form { padding: 1.5rem; }
  .ct-form-title { font-size: 1.3rem; }
  .ct-trust { padding-top: 2rem; gap: 0.85rem; }

  /* FOOTER */
  .ft-stats { flex-wrap: wrap; gap: 1.25rem; }
  .ft-stat strong { font-size: 1.4rem; }
  .ft-tagline { font-size: 0.95rem; }
}

/* Very narrow phones */
@media (max-width: 380px) {
  h2.section-title { font-size: 1.55rem; }
  .hero-title { font-size: 2rem; }
  .hero-pill { font-size: 0.55rem; letter-spacing: 0.14em; }
  .snap-num { font-size: 2rem; }
  .ready-card-key, .loc-stat-val { font-size: 1.4rem; }
}

/* Universal overflow guard — never let any one element punch out and create body scroll */
img, svg, video, canvas, iframe {
  max-width: 100%;
}
