/* ==========================================================================
   LandRock — 2026 redesign
   ========================================================================== */

:root {
  --bg-dark: #0a120c;
  --bg-dark-2: #101c13;
  --cream: #f4f1e6;
  --cream-2: #ece7d6;
  --ink: #101c12;
  --ink-soft: #4b5747;
  --lime: #c9ff4e;
  --lime-soft: #e4ffab;
  --bloom: #ffc9e3;
  --bloom-soft: #ffe6f0;
  --line-dark: rgba(255,255,255,0.14);
  --line-light: rgba(16,28,18,0.12);
  --radius: 28px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); margin-bottom: 20px; }
h3 { font-size: 1.4rem; }
em { font-style: normal; color: var(--lime); }

.section-tag {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before { content: ''; width: 22px; height: 1px; background: currentColor; }
.section-tag.light { color: var(--lime-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn i { transition: transform 0.35s var(--ease); font-size: 0.8rem; }
.btn:hover i { transform: translateX(5px); }
.btn-lime { background: var(--lime); color: #0a1408; }
.btn-lime:hover { box-shadow: 0 10px 30px rgba(201,255,78,0.35); }
.btn-block { width: 100%; justify-content: center; }
.btn-ghost {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.btn-ghost:hover { opacity: 1; }
.btn-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  width: fit-content;
}
.btn-underline i { font-size: 0.75rem; transition: transform 0.3s var(--ease); }
.btn-underline:hover i { transform: translateX(6px); }

/* ---------- preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
}
.preloader-inner { text-align: center; color: var(--cream); }
.preloader-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.preloader-logo span { color: var(--lime); }
.preloader-count { margin-top: 14px; font-size: 0.85rem; letter-spacing: 0.1em; opacity: 0.6; font-variant-numeric: tabular-nums; }
.preloader-curtain {
  position: absolute; inset: 0; background: var(--bg-dark);
  transform-origin: bottom;
}

/* ---------- progress bar ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--lime); z-index: 8500; transition: width 0.05s linear;
}

/* ---------- noise ---------- */
.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 5;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- side growth rail (fixed, whole-site vine motif) ---------- */
.side-rail {
  position: fixed; top: 12vh; right: -6px; width: 92px; height: 76vh; z-index: 40;
  pointer-events: none; opacity: 0.92;
}
.side-rail svg { width: 100%; height: 100%; overflow: visible; }
.rail-line { fill: none; stroke: var(--lime); stroke-width: 1.6; stroke-linecap: round; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35)); }
.rail-leaf path { fill: var(--lime-soft); filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.rail-flower .flower-petals ellipse { fill: var(--bloom); filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3)); }
.rail-flower .flower-center { fill: var(--lime); }
@media (max-width: 1023px) { .side-rail { display: none; } }

/* ---------- floating petals (ambient bloom particles) ---------- */
.petal-field { position: fixed; inset: 0; z-index: 41; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute; top: -8%; will-change: transform, opacity;
  animation: petalDrift linear infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.petal svg { display: block; }
@keyframes petalDrift {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.75; }
  92%  { opacity: 0.6; }
  100% { transform: translate(var(--drift-x, 60px), 112vh) rotate(var(--drift-rot, 220deg)); opacity: 0; }
}
@media (max-width: 640px) { .petal-field .petal:nth-child(n+9) { display: none; } }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  padding: 16px 0;
  transition: transform 0.5s var(--ease), background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
  color: var(--cream);
}
.site-header.scrolled {
  background: rgba(10,18,12,0.72);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line-dark);
}
.site-header.hide-header { transform: translateY(-115%); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%; background: var(--lime);
  color: #0a1408; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; }
.brand-text em { font-style: normal; font-family: var(--font-body); font-size: 0.62rem; color: rgba(244,241,230,0.6); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.nav-desktop { display: flex; gap: 34px; }
.nav-desktop a { text-decoration: none; font-size: 0.88rem; font-weight: 500; opacity: 0.85; position: relative; }
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--lime);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover { opacity: 1; }
.nav-desktop a:hover::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 24px; }
.header-phone { text-decoration: none; font-weight: 600; font-size: 0.88rem; }
.burger { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(244,241,230,0.25); background: transparent; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.burger span { width: 16px; height: 1.5px; background: var(--cream); transition: 0.3s; }

.mobile-nav {
  position: fixed; inset: 0; background: var(--bg-dark); z-index: 890;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 120px 32px 50px;
  transform: translateY(-100%); transition: transform 0.55s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav nav a { color: var(--cream); text-decoration: none; font-family: var(--font-display); font-size: 2rem; padding: 10px 0; border-bottom: 1px solid var(--line-dark); }
.mobile-nav-footer { display: flex; flex-direction: column; gap: 18px; }
.mobile-nav-footer a { color: var(--lime); text-decoration: none; font-weight: 600; font-size: 1.1rem; }
.social-row { display: flex; gap: 14px; }
.social-row a { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cream); text-decoration: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--bg-dark); color: var(--cream);
}
.hero-compare { position: absolute; inset: 0; z-index: 0; cursor: ew-resize; touch-action: pan-y; }
.compare-layer { position: absolute; inset: 0; overflow: hidden; }
.compare-layer img { width: 100%; height: 100%; object-fit: cover; display: block; }
.compare-before { z-index: 1; }
.compare-after { z-index: 2; clip-path: inset(0 62% 0 0); }
.compare-label {
  position: absolute; bottom: 28px; left: 96px; z-index: 3;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(8,14,9,0.55); backdrop-filter: blur(4px); color: var(--cream);
  padding: 8px 14px; border-radius: 30px; pointer-events: none;
}
.compare-label--after { left: auto; right: 28px; }
.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 38%; width: 2px; background: var(--lime); z-index: 4;
  transform: translateX(-1px); pointer-events: none;
}
.compare-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--lime); color: #0a1408;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35); pointer-events: auto; cursor: ew-resize;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,14,9,0.72) 0%, rgba(8,14,9,0.22) 30%, rgba(8,14,9,0) 52%, rgba(8,14,9,0.4) 100%);
}

.hero > .container { position: relative; z-index: 6; pointer-events: none; }
.hero-content { max-width: 620px; padding: 96px 0 64px; text-align: left; }
.hero-eyebrow { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime-soft); margin-bottom: 22px; font-weight: 600; }
.hero-title { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 500; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: inline-block; transform: translateY(110%); }
.hero-sub { max-width: 520px; margin: 24px 0 36px; font-size: 1.05rem; color: rgba(244,241,230,0.82); }
.hero-cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-cta a { pointer-events: auto; }
.hero-cta .btn-ghost { color: var(--cream); }
@media (max-width: 640px) {
  .hero-content { padding-bottom: 48px; }
  .compare-grip { width: 44px; height: 44px; }
  .compare-label { font-size: 0.62rem; padding: 6px 11px; }
}

/* ---------- about ---------- */
.about { background: var(--cream); padding: 150px 0 120px; }
.about-wrapper { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image {
  border-radius: var(--radius); overflow: hidden; min-height: 520px; position: relative;
  background: var(--cream-2);
  clip-path: inset(0 0 100% 0);
}
.about-image.revealed { }
.about-slideshow { width: 100%; height: 100%; position: absolute; inset: 0; }
.about-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.about-slide.active { opacity: 1; }
.about-badge {
  position: absolute; left: -30px; bottom: -30px; background: var(--ink); color: var(--cream);
  border-radius: 22px; padding: 22px 26px; max-width: 210px; box-shadow: 0 20px 50px rgba(10,18,12,0.25);
}
.about-badge-num { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--lime); }
.about-badge-txt { font-size: 0.78rem; color: rgba(244,241,230,0.75); line-height: 1.4; }
.about-text p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 18px; max-width: 520px; }
.about-text h2 { max-width: 480px; }

.about-vine { position: absolute; top: 0; right: -64px; bottom: 0; width: 130px; height: 100%; pointer-events: none; z-index: 1; }
.about-vine .vine-line { fill: none; stroke: var(--lime); stroke-width: 2; stroke-linecap: round; }
.about-vine .vine-leaf { fill: var(--lime-soft); opacity: 0; transform-origin: center; transform-box: fill-box; }

@media (max-width: 900px) {
  .about-wrapper { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .about-text p, .about-text h2 { margin-left: auto; margin-right: auto; }
  .about-badge { left: 50%; transform: translateX(-50%); bottom: -24px; }
  .about-image { min-height: 340px; }
  .about-vine { display: none; }
}

/* ---------- offer (ландшафт / декор) ---------- */
.offer { padding: 150px 0; background: var(--cream); }
.offer-head { max-width: 640px; margin-bottom: 56px; }
.offer-head p { color: var(--ink-soft); margin-top: 16px; }

.offer-index { display: block; font-size: 0.75rem; letter-spacing: 0.15em; font-weight: 700; color: var(--ink-soft); margin-bottom: 10px; }

.offer-landscape {
  position: relative; min-height: 520px; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; margin-bottom: 90px; color: var(--cream);
}
.offer-landscape-media { position: absolute; inset: 0; overflow: hidden; }
.offer-landscape-media img { position: absolute; top: -8%; left: 0; width: 100%; height: 116%; object-fit: cover; }
.offer-landscape::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(8,14,9,0.82) 0%, rgba(8,14,9,0.55) 40%, rgba(8,14,9,0.05) 75%);
}
.offer-landscape-body { position: relative; z-index: 2; padding: 50px; max-width: 480px; }
.offer-landscape-body h3 { font-size: 2rem; margin-bottom: 14px; }
.offer-landscape-body p { color: rgba(244,241,230,0.85); margin-bottom: 22px; }
.offer-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.offer-tags li { font-size: 0.78rem; font-weight: 600; padding: 8px 16px; border-radius: 30px; border: 1px solid var(--line-dark); color: var(--cream); background: rgba(244,241,230,0.08); }
.offer-landscape .offer-index { color: var(--lime-soft); }

.offer-decor-head { max-width: 640px; margin-bottom: 36px; }
.offer-decor-head p { color: var(--ink-soft); margin-top: 14px; max-width: 560px; }
.offer-decor-steps { display: flex; align-items: center; gap: 28px; margin-bottom: 30px; }
.offer-step { flex: 1; }
.offer-step-media { border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--cream-2); }
.offer-step-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-step h4 { font-size: 1.15rem; margin: 16px 0 6px; }
.offer-step p { color: var(--ink-soft); font-size: 0.9rem; }
.offer-step-arrow {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--lime);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}

@media (max-width: 900px) {
  .offer-landscape { min-height: 420px; }
  .offer-landscape-body { padding: 32px 24px; max-width: 100%; }
  .offer-tags { justify-content: flex-start; }
  .offer-decor-head { text-align: center; margin-left: auto; margin-right: auto; }
  .offer-decor-head p { margin-left: auto; margin-right: auto; }
  .offer-decor-steps { flex-direction: column; }
  .offer-step-arrow { transform: rotate(90deg); }
  .offer-decor > a.btn-underline { margin: 0 auto; }
}

/* ---------- services ---------- */
.services { padding: 150px 0 0; overflow: hidden; }
.services-head { text-align: center; margin-bottom: 60px; }
.services-head .section-tag { justify-content: center; }
.services-pin { height: 100vh; display: flex; align-items: center; overflow: hidden; }
.services-track { display: flex; gap: 28px; padding: 0 8vw; will-change: transform; }
.service-card {
  flex-shrink: 0; width: min(74vw, 420px); background: white; border-radius: 26px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(16,28,18,0.06); border: 1px solid var(--line-light);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(16,28,18,0.12); }
.service-img { width: 100%; height: 280px; position: relative; overflow: hidden; background: var(--cream-2); }
.service-slideshow { width: 100%; height: 100%; position: relative; }
.service-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; }
.service-slide.active { opacity: 1; }
.service-num { position: absolute; top: 18px; left: 18px; z-index: 2; background: rgba(10,18,12,0.55); color: var(--lime-soft); font-family: var(--font-display); font-size: 0.75rem; padding: 6px 12px; border-radius: 30px; backdrop-filter: blur(4px); }
.service-content { padding: 26px 28px 30px; }
.service-content h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-content p { font-size: 0.88rem; color: var(--ink-soft); }
@media (max-width: 768px) {
  .services { padding-top: 90px; }
  .services-pin { height: auto; overflow-x: auto; padding: 10px 0 30px; }
  .services-track { transform: none !important; padding: 0 20px; }
}

/* ---------- seasons ---------- */
.seasons { padding: 150px 0; background: var(--cream); text-align: center; }
.seasons h2 { max-width: 640px; margin: 0 auto 60px; }
.seasons .section-tag { justify-content: center; }
.seasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: left; }
.season-card { border-radius: 24px; overflow: hidden; background: white; border: 1px solid var(--line-light); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.season-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(16,28,18,0.1); }
.season-img { height: 220px; position: relative; overflow: hidden; }
.season-slideshow { width: 100%; height: 100%; position: relative; }
.season-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.15); transition: opacity 1s ease, transform 0.6s var(--ease); }
.season-slide.active { opacity: 1; }
.season-card:hover .season-slide.active { transform: scale(1.28); }
.season-img::after { content: ''; position: absolute; inset: 0; opacity: 0.28; mix-blend-mode: multiply; z-index: 1; }
.season-spring .season-img::after { background: linear-gradient(160deg, #ffd6e8, #b6e39a); }
.season-summer .season-img::after { background: linear-gradient(160deg, #ffe17a, #ff9a5c); }
.season-autumn .season-img::after { background: linear-gradient(160deg, #ff8a4c, #a04d1f); }
.season-winter .season-img::after { background: linear-gradient(160deg, #bfe4ff, #6b8fae); }
.season-info { padding: 20px; }
.season-info h3 { font-size: 1.15rem; margin-bottom: 6px; }
.season-info p { font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 900px) { .seasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .seasons-grid { grid-template-columns: 1fr; } }

/* ---------- portfolio ---------- */
.portfolio { padding: 150px 0; background: var(--cream); }
.portfolio h2 { max-width: 500px; margin: 0 0 60px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; }
.portfolio-item { grid-column: span 2; display: flex; flex-direction: column; }
.portfolio-item--lg { grid-column: span 4; }
.portfolio-image { position: relative; border-radius: 22px; overflow: hidden; background: var(--cream-2); aspect-ratio: 4 / 5; }
.portfolio-item--lg .portfolio-image { aspect-ratio: 16 / 11; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.6s var(--ease); }
.portfolio-image:hover img { transform: scale(1.06); }
.reveal-mask { position: absolute; inset: 0; background: var(--ink); z-index: 2; transform-origin: top; }
.portfolio-caption { padding-top: 20px; }
.portfolio-caption h3 { margin-bottom: 10px; font-size: 1.25rem; }
.portfolio-caption p { color: var(--ink-soft); margin-bottom: 16px; font-size: 0.92rem; }
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-item, .portfolio-item--lg { grid-column: span 1; text-align: center; }
  .portfolio-item--lg .portfolio-image, .portfolio-item .portfolio-image { aspect-ratio: 4 / 3; }
  .portfolio-caption p { margin-left: auto; margin-right: auto; max-width: 400px; }
  .btn-underline { margin: 0 auto; }
}

/* ---------- subscription ---------- */
.subscription { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; color: var(--cream); }
.subscription-slideshow { position: absolute; inset: 0; z-index: 0; }
.subscription-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease; }
.subscription-slide.active { opacity: 1; }
.subscription-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,14,9,0.55), rgba(8,14,9,0.85)); z-index: 1; }
.subscription-content { position: relative; z-index: 2; text-align: center; padding: 110px 24px; }
.subscription-content h2 { max-width: 600px; margin: 0 auto 20px; }
.sub-desc { max-width: 560px; margin: 0 auto 40px; color: rgba(244,241,230,0.82); }
.sub-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 42px; }
.sub-features div { display: flex; align-items: center; gap: 8px; background: rgba(244,241,230,0.1); border: 1px solid var(--line-dark); padding: 10px 18px; border-radius: 40px; font-size: 0.82rem; }
.sub-features i { color: var(--lime); }

/* ---------- contact ---------- */
.contact { padding: 150px 0; background: var(--cream); overflow: hidden; }
.contact-blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.contact-blobs span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35; }
.contact-blobs span:nth-child(1) { width: 420px; height: 420px; background: var(--lime); top: -120px; right: -100px; animation: blobMove 16s ease-in-out infinite; }
.contact-blobs span:nth-child(2) { width: 320px; height: 320px; background: #9fd9ff; bottom: -100px; left: -80px; animation: blobMove 20s ease-in-out infinite reverse; }
@keyframes blobMove { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,-30px); } }
.contact-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-copy p { color: var(--ink-soft); margin-bottom: 28px; max-width: 420px; }
.contact-phone-big { display: inline-block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.3rem); text-decoration: none; color: var(--ink); margin-bottom: 26px; border-bottom: 2px solid var(--lime); padding-bottom: 4px; }
.social-icons-big { display: flex; gap: 14px; }
.social-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: white; font-size: 1.1rem; transition: transform 0.3s var(--ease); }
.social-icon:hover { transform: translateY(-5px); }
.social-icon-telegram { background: #0088cc; }
.social-icon-wa { background: #25D366; }
.social-icon-insta { background: radial-gradient(circle at 30% 110%, #ffdb70, #e4405f, #833ab4, #fd1d1d); }
.social-icon-max { background: #fff; border: 1px solid var(--line-light); }
.social-icon-max img { width: 20px; }

.contact-form { background: white; border: 1px solid var(--line-light); border-radius: var(--radius); padding: 44px; box-shadow: 0 30px 70px rgba(16,28,18,0.08); position: relative; }
.field { position: relative; margin-bottom: 20px; }
.field input, .field textarea {
  width: 100%; border: none; border-bottom: 1.5px solid var(--line-light); background: transparent;
  padding: 14px 4px 10px; font-size: 1rem; font-family: var(--font-body); resize: none; outline: none;
  transition: border-color 0.3s;
}
.field textarea { min-height: 70px; }
.field input:focus, .field textarea:focus { border-color: var(--ink); }
.field label {
  position: absolute; left: 4px; top: 14px; color: var(--ink-soft); font-size: 1rem; pointer-events: none;
  transition: 0.25s var(--ease); transform-origin: left;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-16px) scale(0.75); color: var(--ink);
}
.form-success {
  display: none; align-items: center; gap: 10px; margin-top: 18px; padding: 14px 18px;
  background: var(--lime-soft); border-radius: 14px; font-size: 0.85rem; font-weight: 600; color: #22400b;
}
.form-success.show { display: flex; }
.form-success i { background: var(--ink); color: var(--lime); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; }
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .contact-copy p, .social-icons-big { margin-left: auto; margin-right: auto; justify-content: center; }
  .contact-form { padding: 32px 24px; }
}

/* ---------- footer ---------- */
.footer { background: var(--bg-dark); color: rgba(244,241,230,0.75); padding-top: 60px; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 0 0 50px; }
.footer-brand .brand-mark { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; max-width: 220px; opacity: 0.7; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; font-size: 0.88rem; opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--lime); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; opacity: 1; }
.footer-social a img { width: 18px; }
.footer-wordmark {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 12vw, 9rem); line-height: 0.85; letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1px rgba(244,241,230,0.18);
  text-align: center; padding-bottom: 40px; user-select: none;
}
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 24px 0; text-align: center; font-size: 0.78rem; opacity: 0.5; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } .footer-brand { grid-column: span 1; } .footer-brand p { margin: 0 auto; } .footer-social { justify-content: center; } }

/* ---------- widgets / modals ---------- */
.fab {
  position: fixed; left: 26px; bottom: 26px; z-index: 800; width: 58px; height: 58px; border-radius: 50%;
  background: var(--ink); color: var(--lime); border: none; font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px rgba(16,28,18,0.25);
  transition: transform 0.3s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.widget-modal, .season-modal {
  position: fixed; bottom: 96px; left: 26px; width: min(320px, calc(100vw - 52px)); background: white;
  border-radius: 22px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); z-index: 850; overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(0.97); pointer-events: none; transition: 0.3s var(--ease);
}
.season-modal { left: auto; right: 26px; bottom: 26px; }
.widget-modal.active, .season-modal.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.widget-header, .season-header { background: var(--ink); color: var(--cream); padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 0.9rem; }
.widget-header i, .season-header i { cursor: pointer; opacity: 0.7; }
.widget-body, .season-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.widget-body input, .widget-body textarea, .season-body input, .season-body textarea {
  width: 100%; border: 1px solid var(--line-light); border-radius: 14px; padding: 11px 14px; font-family: var(--font-body); font-size: 0.9rem; outline: none;
}
.widget-body textarea, .season-body textarea { resize: none; }
.modal-error { min-height: 16px; font-size: 0.78rem; color: #b3261e; }

.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 1500;
  background: var(--ink); color: var(--cream); padding: 12px 22px; border-radius: 40px;
  font-size: 0.85rem; font-weight: 500; white-space: nowrap;
  transform: translate(-50%, 20px); opacity: 0; pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  box-shadow: 0 14px 30px rgba(16,28,18,0.25);
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(8,14,9,0.94);
  align-items: center; justify-content: center; cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 88%; max-height: 88%; border-radius: 14px; }
.close-lightbox { position: absolute; top: 26px; right: 34px; color: var(--cream); font-size: 2.4rem; cursor: pointer; }

.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 800; width: 56px; height: 56px; border-radius: 50%;
  background: white; border: 1px solid var(--line-light); cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px); transition: 0.3s var(--ease); color: var(--ink);
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.to-top circle { fill: none; stroke: var(--lime); stroke-width: 2; stroke-dasharray: 100; stroke-dashoffset: 100; pathLength: 100; }
.to-top i { position: relative; z-index: 1; font-size: 0.85rem; }

/* ---------- reveal utility ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* ---------- responsive header switch ---------- */
@media (max-width: 980px) {
  .nav-desktop, .header-phone { display: none; }
  .burger { display: flex; }
}
