/* ============================================================
   Adal Milk — landing styles
   Палитра: молочно-белый / сливочный / небесно-голубой / глубокий синий
   ============================================================ */

:root {
  --milk: #fdfcfa;
  --cream: #fdf6ec;
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --night: #0f2a4a;
  --night-2: #0a1e38;
  --ink: #1e3a5f;
  --ink-soft: #46617f;

  --surface: var(--milk);
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-soft: 0 10px 30px -8px rgba(15, 42, 74, .12);
  --shadow-big: 0 30px 60px -20px rgba(15, 42, 74, .25);
  --header-h: 64px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--milk);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-weight: 700;
  border-radius: 999px;
  padding: .7em 1.5em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  cursor: pointer;
  border: 0;
  font-size: 1rem;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, var(--sky-600) 55%, var(--sky-700));
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(2, 132, 199, .55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -10px rgba(2, 132, 199, .6); }

.btn-ghost {
  background: rgba(255, 255, 255, .65);
  color: var(--sky-800);
  border: 1px solid rgba(2, 132, 199, .25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.btn-light {
  background: #fff;
  color: var(--sky-700);
  box-shadow: var(--shadow-soft);
  margin-top: .8rem;
  font-size: .95rem;
}
.btn-light:hover { transform: translateY(-2px); }

.btn-lg { padding: .85em 1.8em; font-size: 1.05rem; }

/* ---------- Шапка ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(253, 252, 250, .72);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(2, 132, 199, .08);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -12px rgba(15, 42, 74, .18); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo { display: flex; align-items: center; gap: .55rem; font-size: 1.25rem; letter-spacing: -.02em; }
.logo-text b { color: var(--sky-600); }
.logo-mark { display: grid; place-items: center; filter: drop-shadow(0 3px 6px rgba(2,132,199,.25)); }

.main-nav {
  display: none;
  gap: 1.4rem;
  margin-left: auto;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-soft);
}
.main-nav a { position: relative; padding: .3em 0; transition: color .2s; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--sky-600);
  border-radius: 2px;
  transition: right .3s var(--ease);
}
.main-nav a:hover { color: var(--sky-700); }
.main-nav a:hover::after { right: 0; }

.btn-header {
  display: none;
  background: var(--night);
  color: #fff;
  font-size: .9rem;
  padding: .55em 1.2em;
  box-shadow: 0 8px 20px -8px rgba(15, 42, 74, .5);
}
.btn-header:hover { background: var(--sky-700); transform: translateY(-2px); }

.nav-toggle {
  margin-left: auto;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (min-width: 860px) {
  .main-nav { display: flex; }
  .btn-header { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* мобильное меню */
@media (max-width: 859.98px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(253, 252, 250, .96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(2, 132, 199, .12);
    padding: .5rem 1.4rem 1rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s, visibility .3s;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: .8em 0; font-size: 1.05rem; border-bottom: 1px dashed rgba(2,132,199,.15); }
  .main-nav a:last-child { border-bottom: 0; }
}

/* ============================================================
   HERO + 3D-сцена
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 3rem) 0 7rem;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1000px 600px at 85% -10%, rgba(186, 230, 253, .8), transparent 60%),
    radial-gradient(800px 500px at -10% 40%, rgba(253, 246, 236, .9), transparent 60%),
    linear-gradient(180deg, var(--sky-50), var(--milk));
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
}
.glow-1 { width: 420px; height: 420px; background: #bae6fd; top: -120px; right: -80px; animation: glowDrift 14s ease-in-out infinite alternate; }
.glow-2 { width: 340px; height: 340px; background: #fde8c8; bottom: 10%; left: -120px; animation: glowDrift 18s ease-in-out infinite alternate-reverse; }
@keyframes glowDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.12); }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
  z-index: 2;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 2rem; }
}

.hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sky-700);
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(2, 132, 199, .2);
  border-radius: 999px;
  padding: .45em 1.1em;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-soft);
}

.hero-title {
  margin: 1.1rem 0 1rem;
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 800;
  color: var(--night);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, #38bdf8, var(--sky-600) 60%, var(--sky-800));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 34em;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.8rem;
}
.hero-badges li {
  font-size: .88rem;
  font-weight: 600;
  color: var(--sky-800);
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(2, 132, 199, .15);
  border-radius: 999px;
  padding: .4em 1em;
  backdrop-filter: blur(6px);
}

/* ---------- 3D-сцена ---------- */
.hero-scene {
  perspective: 1100px;
  perspective-origin: 50% 40%;
  display: grid;
  place-items: center;
  min-height: 380px;
}
@media (min-width: 900px) { .hero-scene { min-height: 520px; } }

.scene-pivot {
  position: relative;
  width: min(380px, 82vw);
  aspect-ratio: 380 / 500;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.layer {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--depth, 0) * 1px));
  pointer-events: none;
}
.layer-back  { --depth: -120; }
.layer-mid   { --depth: 0; }

/* облака */
.cloud {
  position: absolute;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 20px -8px rgba(15, 42, 74, .15);
}
.cloud::before, .cloud::after {
  content: "";
  position: absolute;
  bottom: 40%;
  border-radius: 50%;
  background: inherit;
}
.cloud::before { width: 34px; height: 34px; left: 18%; }
.cloud::after  { width: 24px; height: 24px; right: 22%; }
.cloud-1 { width: 110px; top: 6%; left: -6%; animation: cloudFloat 9s ease-in-out infinite alternate; }
.cloud-2 { width: 80px; top: 20%; right: -4%; animation: cloudFloat 12s ease-in-out infinite alternate-reverse; }
@keyframes cloudFloat {
  from { transform: translate(0, 0); }
  to   { transform: translate(18px, -10px); }
}

/* кольца подиума под бутылкой */
.podium-ring {
  position: absolute;
  left: 50%;
  border-radius: 50%;
}
.ring-1 {
  bottom: 2%;
  width: 66%; aspect-ratio: 3 / 1;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(2, 132, 199, .22), rgba(2, 132, 199, .05) 70%, transparent);
}
.ring-2 {
  bottom: -2%;
  width: 96%; aspect-ratio: 3.4 / 1;
  transform: translateX(-50%);
  border: 2px dashed rgba(2, 132, 199, .25);
  animation: ringSpin 24s linear infinite;
}
@keyframes ringSpin { to { transform: translateX(-50%) rotate(360deg); } }

/* ---------- CSS 3D бутылка молока ---------- */
.bottle {
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: 44%;
  transform: translateX(-50%);
  transform-style: preserve-3d;
  animation: bottleBob 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 30px rgba(15, 42, 74, .18));
}
@keyframes bottleBob {
  0%, 100% { transform: translateX(-50%) translateY(0) rotateZ(-1deg); }
  50%      { transform: translateX(-50%) translateY(-14px) rotateZ(1.2deg); }
}

.bottle-cap {
  width: 46%;
  margin: 0 auto;
  height: 22px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #7dd3fc, var(--sky-600) 70%, var(--sky-800));
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, .6), inset 0 -3px 5px rgba(7, 89, 133, .5);
  position: relative;
  z-index: 3;
}
.bottle-cap i {
  position: absolute;
  inset: 4px 6px auto 6px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .55);
}

.bottle-neck {
  width: 40%;
  margin: -2px auto 0;
  height: 26px;
  background: linear-gradient(90deg, #dbeefc, #ffffff 30%, #f3fbff 55%, #cfe8fa);
  border-radius: 0 0 2px 2px;
  position: relative;
  z-index: 2;
}

.bottle-shoulders {
  width: 82%;
  margin: -1px auto 0;
  height: 34px;
  background: linear-gradient(90deg, #d6ecfb, #ffffff 32%, #f4fbff 58%, #c9e6f9);
  clip-path: polygon(28% 0, 72% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 2;
}

.bottle-body {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 20px 20px 34px 34px;
  background: linear-gradient(90deg, #cfe7f8, #ffffff 30%, #f6fcff 55%, #eaf6fd 75%, #bcdff5);
  box-shadow:
    inset 10px 0 18px -10px rgba(2, 132, 199, .25),
    inset -12px 0 20px -10px rgba(2, 132, 199, .35),
    inset 0 -14px 22px -12px rgba(2, 132, 199, .3);
  overflow: hidden;
}

/* молоко внутри */
.milk-fill {
  position: absolute;
  inset: 26% 5% 4% 5%;
  border-radius: 14px 14px 28px 28px;
  background: linear-gradient(90deg, #f2f8fc, #ffffff 40%, #fdfefe 60%, #e8f3fa);
  box-shadow: inset 0 -10px 18px -10px rgba(2, 132, 199, .18);
}
.milk-surface {
  position: absolute;
  top: -7px; left: 0; right: 0;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 45%, #ffffff 55%, #dceefa);
  box-shadow: inset 0 -3px 6px rgba(2, 132, 199, .2);
  animation: milkWobble 5s ease-in-out infinite;
}
@keyframes milkWobble {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  25%      { transform: rotate(1.6deg) translateY(-2px); }
  75%      { transform: rotate(-1.6deg) translateY(2px); }
}

/* блики стекла */
.bottle-shine {
  position: absolute;
  top: 8%; bottom: 8%;
  left: 12%;
  width: 9%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .25));
  filter: blur(1px);
}
.bottle-shine-2 {
  position: absolute;
  top: 14%;
  right: 15%;
  width: 4%;
  height: 34%;
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  filter: blur(1.5px);
}

.bottle-label {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translateX(-50%) rotate(-1.5deg);
  width: 84%;
  padding: .7em .5em;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, var(--sky-50));
  border: 2px solid var(--sky-200);
  border-radius: 14px;
  box-shadow: 0 6px 14px -6px rgba(15, 42, 74, .25);
}
.bottle-label b {
  display: block;
  font-size: clamp(1rem, 4.2vw, 1.35rem);
  letter-spacing: -.02em;
  color: var(--sky-700);
}
.bottle-label small {
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.bottle-shadow {
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 120%;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(15, 42, 74, .25), transparent);
}

/* плавающие элементы на глубине */
.float-el {
  position: absolute;
  font-size: 1.9rem;
  transform: translateZ(var(--tz, 60px));
  filter: drop-shadow(0 10px 12px rgba(15, 42, 74, .2));
  animation: floatDrift 7s ease-in-out infinite alternate;
}
.float-el.leaf { font-size: 1.6rem; }
.float-el.glass { font-size: 2.4rem; }

.d1 { top: 12%; left: 4%;  animation-duration: 6s; }
.d2 { top: 4%;  right: 12%; animation-duration: 8s; animation-delay: -2s; font-size: 1.4rem; }
.d3 { bottom: 26%; right: 0; animation-duration: 7.5s; animation-delay: -4s; font-size: 1.5rem; }
.l1 { bottom: 18%; left: -2%; animation-duration: 9s; animation-delay: -1s; }
.l2 { top: 30%; right: -4%; animation-duration: 10s; animation-delay: -3s; }
.g1 { bottom: 4%; left: 8%; animation-duration: 8s; animation-delay: -5s; }

@keyframes floatDrift {
  from { transform: translateZ(var(--tz, 60px)) translateY(0) rotate(-6deg); }
  to   { transform: translateZ(var(--tz, 60px)) translateY(-20px) rotate(8deg); }
}

/* волны-переходы */
.wave { line-height: 0; }
.wave svg { width: 100%; height: clamp(50px, 8vw, 110px); }
.wave-hero {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 3;
}
.wave-flip { background: var(--cream); }

/* ============================================================
   Секции
   ============================================================ */
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

.section-eyebrow {
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sky-600);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 800;
  color: var(--night);
  margin-bottom: 1rem;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.2rem, 5vw, 3.5rem); }
.section-sub { color: var(--ink-soft); }

/* ---------- О нас ---------- */
.section-about { background: var(--surface); }

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
}

.about-copy p { color: var(--ink-soft); margin-bottom: 1rem; }
.about-sign {
  font-weight: 700;
  color: var(--sky-700) !important;
  border-left: 4px solid var(--sky-300);
  padding-left: 1rem;
  margin-top: 1.4rem;
}

.about-card-3d {
  background: linear-gradient(160deg, #ffffff, var(--sky-50));
  border: 1px solid rgba(2, 132, 199, .12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-big);
  padding: 2.2rem 2rem;
  display: grid;
  gap: 1.1rem;
  text-align: center;
  transform-style: preserve-3d;
}
.about-emoji { font-size: 4rem; line-height: 1; transform: translateZ(50px); }
.about-stat { transform: translateZ(30px); }
.about-stat b { display: block; font-size: 1.5rem; letter-spacing: -.02em; color: var(--sky-700); }
.about-stat span { font-size: .85rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Продукция ---------- */
.section-products { background: var(--cream); padding-top: clamp(2.5rem, 5vw, 4rem); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  perspective: 900px;
}

.product-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(2, 132, 199, .1);
  box-shadow: var(--shadow-soft);
  transform-style: preserve-3d;
  transition: box-shadow .35s var(--ease);
  will-change: transform;
}
.product-card:hover { box-shadow: var(--shadow-big); }

.card-inner {
  padding: 1.8rem 1.5rem;
  transform-style: preserve-3d;
}
.product-emoji {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  font-size: 2rem;
  border-radius: 20px;
  background: linear-gradient(150deg, var(--sky-100), #ffffff);
  box-shadow: inset 0 0 0 1px rgba(2, 132, 199, .12), 0 8px 16px -8px rgba(2, 132, 199, .35);
  margin-bottom: 1rem;
  transform: translateZ(40px);
}
.product-card h3 {
  font-size: 1.2rem;
  letter-spacing: -.01em;
  color: var(--night);
  margin-bottom: .4rem;
  transform: translateZ(30px);
}
.product-card p {
  font-size: .93rem;
  color: var(--ink-soft);
  transform: translateZ(20px);
}

.product-card-cta {
  background: linear-gradient(150deg, var(--sky-600), var(--sky-800));
  border-color: transparent;
}
.product-card-cta h3 { color: #fff; }
.product-card-cta p { color: var(--sky-100); }
.product-card-cta .product-emoji { background: rgba(255, 255, 255, .18); box-shadow: none; }
.product-card-cta .btn { transform: translateZ(35px); }

/* ---------- Почему мы ---------- */
.section-why {
  background:
    radial-gradient(700px 400px at 90% 0%, rgba(2, 132, 199, .35), transparent 60%),
    linear-gradient(160deg, var(--night), var(--night-2));
  color: #eaf4fb;
  padding: 0;
  --surface: var(--cream);
}
.section-why .container { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5rem); }
.section-head-light .section-title { color: #fff; }
.section-head-light .section-eyebrow { color: var(--sky-300); }

.why-decor svg { width: 100%; height: clamp(34px, 5vw, 70px); display: block; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}

.why-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(125, 211, 252, .2);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .35s var(--ease), background .35s, border-color .35s;
}
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(125, 211, 252, .45);
}
.why-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  color: #bfe8ff;
  background: linear-gradient(150deg, rgba(56, 189, 248, .35), rgba(2, 132, 199, .25));
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, .35);
  margin-bottom: 1rem;
}
.why-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: .4rem; letter-spacing: -.01em; }
.why-card p { font-size: .92rem; color: #b9d4e8; }

/* ---------- Доставка ---------- */
.section-delivery { background: var(--cream); }

.delivery-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .delivery-grid { grid-template-columns: 1.15fr 1fr; gap: 4rem; }
}
.delivery-copy > p { color: var(--ink-soft); }

.delivery-list { margin: 1.4rem 0 1.8rem; display: grid; gap: .7rem; }
.delivery-list li {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(2, 132, 199, .1);
  border-radius: 14px;
  padding: .65rem 1rem;
  box-shadow: 0 4px 12px -6px rgba(15, 42, 74, .1);
}
.delivery-list li span { font-size: 1.25rem; }

.truck-scene {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-big);
  transform-style: preserve-3d;
  will-change: transform;
}
.truck-svg { border-radius: var(--radius-lg); transform: translateZ(20px); }

/* ---------- Контакты ---------- */
.section-contacts { background: var(--milk); }

.contacts-card {
  display: grid;
  gap: 2rem;
  background:
    radial-gradient(500px 300px at 100% 0%, rgba(186, 230, 253, .5), transparent 65%),
    linear-gradient(150deg, #ffffff, var(--sky-50));
  border: 1px solid rgba(2, 132, 199, .14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-big);
  padding: clamp(1.8rem, 4vw, 3.2rem);
}
@media (min-width: 860px) {
  .contacts-card { grid-template-columns: 1.2fr 1fr; gap: 3rem; }
}

.phone-big {
  display: inline-block;
  font-size: clamp(1.7rem, 5.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--sky-700);
  margin: .3rem 0 .8rem;
  transition: color .2s, transform .25s var(--ease);
}
.phone-big:hover { color: var(--sky-600); transform: translateY(-2px); }
.contacts-note { color: var(--ink-soft); max-width: 30em; }

.contacts-address { display: grid; gap: 1.1rem; align-content: center; }
.addr-row {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(2, 132, 199, .1);
  border-radius: 16px;
  padding: .9rem 1.1rem;
}
.addr-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  color: var(--sky-700);
  background: var(--sky-100);
}
.addr-row b { display: block; color: var(--night); font-size: .95rem; }
.addr-row p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Футер ---------- */
.site-footer {
  background: var(--night-2);
  color: #9fb9cf;
  padding: 1.6rem 0 calc(1.6rem + env(safe-area-inset-bottom));
  font-size: .88rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.footer-meta { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.footer-meta a:hover { color: #fff; }
.staff-link {
  font-size: .75rem;
  color: #5b7793;
  opacity: .7;
}
.staff-link:hover { opacity: 1; color: #9fb9cf; }

/* ---------- FAB звонок ---------- */
.fab-call {
  position: fixed;
  right: 1.1rem;
  bottom: calc(1.1rem + env(safe-area-inset-bottom));
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(150deg, #38bdf8, var(--sky-600));
  box-shadow: 0 14px 30px -8px rgba(2, 132, 199, .65);
  animation: fabPulse 2.6s ease-in-out infinite;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(2, 132, 199, .65), 0 0 0 0 rgba(2, 132, 199, .4); }
  50%      { box-shadow: 0 14px 30px -8px rgba(2, 132, 199, .65), 0 0 0 14px rgba(2, 132, 199, 0); }
}
@media (min-width: 860px) { .fab-call { display: none; } }

/* ---------- Появление при скролле ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.98);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .scene-pivot { transform: none !important; }
}
