/* =========================================================
   КОСОЛАПОВО — семья брендов из Дмитрова
   Дизайн-система v2 — «ботаническая элегантность»
   ========================================================= */

:root {
  /* Бренд (логотип КОСОЛАПОВО) */
  --brand:      #01cd7d;
  --brand-2:    #00b06a;
  --brand-deep: #0c5c3d;
  --mint:       #57dca0;
  --mint-soft:  #b6ecd1;

  /* Тёмные изумрудные */
  --em-950: #042018;
  --em-900: #06281d;
  --em-800: #093724;
  --em-700: #0d4730;

  /* Светлые / нейтральные */
  --paper:  #ffffff;
  --bone:   #f5f3ec;   /* тёплая слоновая кость */
  --bone-2: #ece8dc;
  --ink:    #14241b;
  --ink-2:  #4b5a51;
  --line:   rgba(20, 40, 30, .12);
  --line-2: rgba(20, 40, 30, .07);

  /* Шрифты */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1280px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --shadow-sm: 0 10px 30px -18px rgba(6, 40, 29, .4);
  --shadow:    0 28px 70px -34px rgba(6, 40, 29, .5);
  --shadow-lg: 0 50px 110px -45px rgba(6, 40, 29, .6);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brand); color: #042018; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.04; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }

/* ---------- Подписи / eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75em;
  font-size: .74rem; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brand-deep);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; border-radius: 2px; background: var(--brand); }
.eyebrow.on-dark { color: var(--mint); }
.eyebrow.on-dark::before { background: var(--mint); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 30px; height: 2px; border-radius: 2px; background: var(--brand); }
.eyebrow.center.on-dark::after { background: var(--mint); }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .65em;
  padding: 16px 30px; border-radius: 100px;
  font-family: var(--sans); font-weight: 700; font-size: .92rem; letter-spacing: .01em;
  cursor: pointer; border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .4s var(--ease), background .3s, color .3s, box-shadow .4s, border-color .3s;
}
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover .arr { transform: translateX(5px); }
.btn-brand { background: var(--brand); color: #042018; box-shadow: 0 16px 36px -16px rgba(1,205,125,.75); }
.btn-brand:hover { background: var(--mint); }
.btn-dark { background: var(--em-900); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { background: var(--em-800); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-deep); }
.btn-ghost { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(1.4) blur(16px);
  padding-block: 13px;
  border-color: var(--line-2);
}
.brand { display: flex; align-items: center; gap: 13px; color: #fff; transition: color .5s; }
.nav.scrolled .brand { color: var(--ink); }
.brand .mark { width: 44px; height: 44px; flex: none; filter: drop-shadow(0 4px 10px rgba(0,0,0,.18)); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: .04em; }
.brand-text span { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; opacity: .82; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: #fff; font-weight: 600; font-size: .92rem; position: relative; transition: color .5s; opacity: .94; }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; height: 2px; width: 0; background: var(--brand); transition: width .35s var(--ease); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--brand); color: #042018 !important; padding: 11px 22px; border-radius: 100px; font-weight: 800; transition: transform .35s var(--ease), background .3s; }
.nav-cta:hover { transform: translateY(-2px); background: var(--mint); }

.burger { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.burger span { width: 26px; height: 2px; border-radius: 2px; background: #fff; transition: background .5s, transform .35s, opacity .3s; }
.nav.scrolled .burger span { background: var(--ink); }
.burger.active span { background: var(--ink); }
.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero-bg img { width: 100%; height: 120%; object-fit: cover; transform: scale(1.05); animation: heroIn 1.6s var(--ease-out) both; }
@keyframes heroIn { from { transform: scale(1.16); } to { transform: scale(1.05); } }
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(100deg, rgba(4,32,24,.9) 0%, rgba(4,32,24,.6) 42%, rgba(4,32,24,.2) 100%),
  linear-gradient(0deg, rgba(4,32,24,.75) 0%, rgba(4,32,24,0) 35%); }

.hero-inner { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 132px; max-width: 880px; }
.hero h1 { font-size: clamp(2.8rem, 7.4vw, 6rem); margin: 26px 0 22px; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: var(--mint); }
.hero .lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); max-width: 590px; font-weight: 300; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.fade-up { opacity: 0; transform: translateY(26px); animation: fadeUp 1s var(--ease-out) forwards; }
.fade-up.s1 { animation-delay: .15s; } .fade-up.s2 { animation-delay: .3s; }
.fade-up.s3 { animation-delay: .45s; } .fade-up.s4 { animation-delay: .6s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* нижняя «лента» героя — устраняет наложение и добавляет редакционности */
.hero-foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-foot .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 20px; }
.hero-strip { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: .8rem; letter-spacing: .04em; color: rgba(255,255,255,.82); }
.hero-strip span { display: inline-flex; align-items: center; gap: 22px; }
.hero-strip span::after { content: "·"; opacity: .5; }
.hero-strip span:last-child::after { display: none; }
.hero-scroll { display: inline-flex; align-items: center; gap: 12px; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.85); white-space: nowrap; }
.hero-scroll .dot { width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.hero-scroll .dot::after { content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 4px; background: var(--brand); transform: translateX(-50%); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 100% { opacity: 0; top: 24px; } }

/* =========================================================
   СЕКЦИИ — базовое
   ========================================================= */
.section { padding-block: clamp(80px, 11vw, 156px); position: relative; }
.bg-paper { background: var(--paper); }
.bg-bone { background: var(--bone); }
.bg-dark { background: var(--em-900); color: var(--bone); }
.bg-dark p { color: rgba(245,243,236,.8); }

.head { max-width: 760px; }
.head.center { margin-inline: auto; text-align: center; }
.head h2 { font-size: clamp(2.3rem, 5vw, 4rem); margin-top: 20px; }
.head p { margin-top: 20px; color: var(--ink-2); font-size: 1.1rem; }
.bg-dark .head p { color: rgba(245,243,236,.78); }

/* =========================================================
   ВВЕДЕНИЕ / О НАС
   ========================================================= */
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.intro-text h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin: 18px 0 24px; }
.intro-text p { color: var(--ink-2); font-size: 1.08rem; margin-bottom: 18px; }
.intro-sign { display: flex; align-items: center; gap: 16px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.intro-sign img { border-radius: 50%; }
.intro-sign .nm { font-family: var(--serif); font-size: 1.5rem; color: var(--brand-deep); line-height: 1.1; }
.intro-sign .rl { font-size: .84rem; color: var(--ink-2); }

.intro-visual { position: relative; }
.intro-visual .v-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.intro-visual .v-main img { width: 100%; height: 100%; object-fit: cover; }
.intro-visual .v-badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--em-900); color: var(--bone);
  border-radius: var(--radius-lg); padding: 26px 30px; box-shadow: var(--shadow); text-align: center;
}
.intro-visual .v-badge b { font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--mint); display: block; }
.intro-visual .v-badge span { font-size: .8rem; opacity: .85; display: block; margin-top: 6px; }
.intro-visual .v-emblem { position: absolute; top: -24px; right: -16px; width: 92px; opacity: .96; filter: drop-shadow(0 14px 26px rgba(6,40,29,.3)); }

/* =========================================================
   BENTO — обзор направлений
   ========================================================= */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 230px; gap: 18px; margin-top: 56px; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); color: #fff; isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .55s var(--ease), box-shadow .55s;
}
.tile:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.tile .bg { position: absolute; inset: 0; z-index: -2; }
.tile .bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.tile:hover .bg img { transform: scale(1.08); }
.tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, rgba(4,32,24,.32) 0%, rgba(4,32,24,0) 22%, rgba(4,32,24,.1) 45%, rgba(4,32,24,.66) 72%, rgba(4,32,24,.95) 100%); }
.tile .num { position: absolute; top: 22px; left: 28px; padding: 4px 11px; border-radius: 100px; background: rgba(4,32,24,.42); backdrop-filter: blur(3px); font-family: var(--serif); font-size: 1.05rem; line-height: 1; color: var(--mint); }
.tile .tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: #fff; font-weight: 800; text-shadow: 0 1px 12px rgba(4,32,24,.85); }
.tile h3 { font-size: 1.75rem; margin: 8px 0 6px; text-shadow: 0 2px 18px rgba(4,32,24,.7); }
.tile p { font-size: .92rem; color: rgba(255,255,255,.9); font-weight: 400; max-width: 38ch; text-shadow: 0 1px 14px rgba(4,32,24,.8); }
.tile .go { margin-top: 14px; display: inline-flex; align-items: center; gap: .5em; font-weight: 700; font-size: .86rem; color: #fff; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.tile:hover .go { opacity: 1; transform: none; }
/* раскладка bento */
.tile.t-garden    { grid-column: span 4; grid-row: span 2; }
.tile.t-landscape { grid-column: span 2; grid-row: span 2; }
.tile.t-cafe      { grid-column: span 2; }
.tile.t-coffee { grid-column: span 2; }
.tile.t-hobby     { grid-column: span 2; }

/* =========================================================
   FEATURE — блок направления
   ========================================================= */
.feature { overflow: hidden; }
.feature .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.feature.flip .f-media { order: 2; }
.f-index { font-family: var(--serif); font-size: 1.3rem; color: var(--brand); letter-spacing: .04em; }
.bg-dark .f-index { color: var(--mint); }
.f-content h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin: 10px 0 22px; }
.f-content > p { color: var(--ink-2); font-size: 1.1rem; margin-bottom: 26px; }
.bg-dark .f-content > p { color: rgba(245,243,236,.82); }
.f-list { list-style: none; display: grid; gap: 14px; margin-bottom: 30px; }
.f-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1.02rem; }
.f-list li svg { flex: none; margin-top: 4px; color: var(--brand); }
.bg-dark .f-list li svg { color: var(--mint); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip { border: 1px solid var(--line); border-radius: 100px; padding: 8px 17px; font-size: .85rem; font-weight: 600; color: var(--ink-2); background: var(--paper); }
.bg-bone .chip { background: var(--paper); }
.bg-dark .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: var(--bone); }
.f-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* медиа feature */
.f-media { position: relative; }
.f-media .frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.f-collage { display: grid; gap: 16px; grid-template-columns: 1.4fr 1fr; }
.f-collage .frame:first-child { grid-row: span 2; aspect-ratio: 3/4.4; }
.f-collage .frame:not(:first-child) { aspect-ratio: 1/1; }
.f-collage .frame img, .f-single img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.f-media:hover img { transform: scale(1.04); }
.f-single { aspect-ratio: 4/3; }
.f-badge {
  position: absolute; top: -20px; right: -14px; z-index: 3; background: var(--brand); color: #042018;
  border-radius: 100px; padding: 13px 24px; font-weight: 800; font-size: .88rem; box-shadow: 0 18px 40px -16px rgba(1,205,125,.8);
}
.f-media.contain .f-single { background: var(--paper); border: 1px solid var(--line); }
.f-media.contain .f-single img { object-fit: contain; padding: 28px; }

/* =========================================================
   ЦИТАТА ОСНОВАТЕЛЯ
   ========================================================= */
.quote { position: relative; text-align: center; background: var(--em-950); color: var(--bone); overflow: hidden; }
.quote .em-watermark { position: absolute; top: 50%; left: 50%; width: min(640px, 90%); transform: translate(-50%,-50%); opacity: .05; pointer-events: none; }
.quote .container { position: relative; z-index: 2; max-width: 980px; }
.quote blockquote { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem); line-height: 1.22; font-style: italic; letter-spacing: -.01em; }
.quote blockquote b { color: var(--mint); font-style: normal; font-weight: 600; }
.quote .q-author { margin-top: 34px; font-size: .92rem; letter-spacing: .04em; color: rgba(245,243,236,.7); }
.quote .q-author b { color: var(--bone); font-family: var(--sans); font-weight: 700; }

/* =========================================================
   СТАТИСТИКА
   ========================================================= */
.stats { background: var(--bone); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { padding: 34px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .5s var(--ease), box-shadow .5s; }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.stat b { font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4rem); color: var(--brand-deep); line-height: 1; display: flex; align-items: baseline; }
.stat .suf { font-size: .42em; color: var(--brand); margin-left: 4px; }
.stat span { display: block; margin-top: 12px; font-size: .95rem; color: var(--ink-2); }

/* =========================================================
   МАРКИ / ГАЛЕРЕЯ-ЛЕНТА
   ========================================================= */
.marquee { background: var(--em-900); padding-block: clamp(60px, 8vw, 96px); overflow: hidden; }
.marquee .head { padding-inline: clamp(20px, 5vw, 64px); margin-inline: auto; }
.mq-track { display: flex; gap: 18px; width: max-content; margin-top: 48px; animation: marquee 46s linear infinite; }
.marquee:hover .mq-track { animation-play-state: paused; }
.mq-track figure { width: 320px; height: 230px; border-radius: var(--radius-lg); overflow: hidden; flex: none; box-shadow: var(--shadow-sm); }
.mq-track img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.mq-track figure:hover img { transform: scale(1.07); }
@keyframes marquee { to { transform: translateX(calc(-50% - 9px)); } }

/* =========================================================
   КОНТАКТЫ
   ========================================================= */
.contact { background: var(--em-950); color: var(--bone); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 80px); }
.contact h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); margin: 18px 0 22px; }
.contact .lead { color: rgba(245,243,236,.78); margin-bottom: 36px; max-width: 460px; }
.cc-list { display: grid; gap: 14px; }
.cc { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 22px 26px; transition: background .35s, transform .35s var(--ease), border-color .35s; }
.cc:hover { background: rgba(255,255,255,.08); transform: translateX(6px); border-color: rgba(87,220,160,.4); }
.cc .cc-name { font-family: var(--serif); font-size: 1.35rem; color: var(--mint); }
.cc .cc-row { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-top: 8px; font-size: .92rem; color: rgba(245,243,236,.84); }
.cc .cc-row a { border-bottom: 1px solid transparent; transition: border-color .3s, color .3s; }
.cc .cc-row a:hover { color: #fff; border-color: var(--mint); }
.contact-map { border-radius: var(--radius-xl); overflow: hidden; min-height: 460px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.12); }
.contact-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--em-950); color: rgba(245,243,236,.66); padding: 64px 0 36px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand { color: #fff; }
.footer-tag { max-width: 320px; margin-top: 20px; font-size: .95rem; line-height: 1.7; }
.footer-cols { display: flex; gap: clamp(40px, 6vw, 72px); flex-wrap: wrap; }
.footer-col h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--mint); margin-bottom: 18px; }
.footer-col a { display: block; font-size: .93rem; margin-bottom: 10px; transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; font-size: .82rem; opacity: .8; }
.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s; }
.socials a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.socials a:hover svg { stroke: #042018; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } .fade-up { animation: none; opacity: 1; transform: none; } .mq-track { animation: none; } }

/* =========================================================
   АДАПТИВ
   ========================================================= */
@media (max-width: 1020px) {
  .intro-grid, .feature .container, .contact-grid { grid-template-columns: 1fr; }
  .feature.flip .f-media { order: 0; }
  .intro-visual { max-width: 480px; }
  .bento { grid-auto-rows: 200px; }
  .tile.t-garden { grid-column: span 6; grid-row: span 1; min-height: 320px; }
  .tile.t-landscape { grid-column: span 3; grid-row: span 1; }
  .tile.t-cafe, .tile.t-coffee { grid-column: span 3; }
  .tile.t-hobby { grid-column: span 6; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 22px;
    position: fixed; inset: 0; background: var(--paper); padding: 110px 32px 40px; z-index: 105;
  }
  .nav-links.open a { color: var(--ink); font-size: 1.3rem; font-family: var(--serif); }
  .nav-links.open .nav-cta { color: #042018 !important; font-family: var(--sans); }
  .hero-strip { display: none; }
  .hero-foot .container { justify-content: flex-end; }
  .hero-inner { padding-bottom: 110px; }
  .bento { grid-auto-rows: 240px; gap: 16px; }
  .tile.t-landscape, .tile.t-cafe, .tile.t-coffee { grid-column: span 6; }
  .f-collage { grid-template-columns: 1fr 1fr; }

  /* ----- BENTO: контраст и читаемость на мобиле ----- */
  /* плотный затемняющий слой целиком + усиленный нижний градиент,
     чтобы теги/заголовки/текст уверенно читались поверх пёстрых фото */
  .tile { padding: 26px 24px; }
  .tile::after {
    background:
      linear-gradient(180deg, rgba(4,32,24,.42) 0%, rgba(4,32,24,.12) 30%, rgba(4,32,24,.42) 58%, rgba(4,32,24,.88) 82%, rgba(4,32,24,.97) 100%);
  }
  /* тайлы с описанием выше — текст не обрезается */
  .tile.t-garden  { min-height: 360px; }
  .tile.t-hobby   { min-height: 320px; }
  .tile.t-landscape, .tile.t-cafe, .tile.t-coffee { min-height: 240px; }
  .tile .tag { font-size: .74rem; letter-spacing: .16em; color: #fff; font-weight: 800; }
  .tile h3 { font-size: 1.9rem; }
  .tile p { font-size: .95rem; color: rgba(255,255,255,.94); }
  /* на тач-устройствах нет hover: показываем ссылку и даём тач-цель ≥44px */
  .tile .go { opacity: 1; transform: none; margin-top: 12px; min-height: 44px; align-items: center; color: var(--mint); }
  .tile .num { font-size: 1rem; }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
  .intro-visual .v-badge { left: 0; padding: 20px 22px; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }

  /* подпись основателя — чуть крупнее и контрастнее */
  .intro-sign .rl { font-size: .88rem; }
  /* контакты: ссылки-телефоны/почта как полноценные тач-цели ≥44px */
  .cc .cc-row { gap: 6px 16px; font-size: .95rem; }
  .cc .cc-row a { display: inline-flex; align-items: center; min-height: 44px; }
  .cc .cc-row span { display: inline-flex; align-items: center; min-height: 32px; }
  /* кнопки на всю ширину — крупная тач-цель, аккуратные ряды */
  .f-actions .btn, .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
}
