/* === Index 18: Липовый Край — grid-cards layout === */
:root {
  --primary: #475569;
  --bg: #f8fafc;
  --ink: #0f172a;
  --accent: #ea580c;
  --paper: #ffffff;
  --line: #e2e8f0;
  --mute: #64748b;
  --warm: #fff7ed;
  --s: clamp(16px, 2vw, 24px);
  --r: 12px;
  --display: 'Barlow Condensed', 'Druk Wide Cyrillic', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.55; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1140px, 92vw); margin-inline: auto; }

h1, h2, h3 { font-family: var(--display); line-height: 1.05; font-weight: 700; letter-spacing: .01em; }
h1 { font-size: clamp(38px, 5.5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.5vw, 46px); font-weight: 800; }
h3 { font-size: 20px; }
p { color: var(--ink); }
.lead { font-size: clamp(15px, 1.4vw, 18px); color: var(--mute); max-width: 48ch; line-height: 1.65; }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.eyebrow--acc { color: var(--accent); }
.eyebrow--inv { color: rgba(255,255,255,.6); }

/* nav */
.nav { position: sticky; top: 0; z-index: 20; background: rgba(248,250,252,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 20px; height: 62px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand__hex { color: var(--accent); font-size: 22px; }
.brand__name { font-family: var(--display); font-size: 17px; font-weight: 800; line-height: 1.1; letter-spacing: .02em; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-size: 14px; font-weight: 500; text-decoration: none; color: var(--mute); transition: color .15s; }
.nav__links a:hover { color: var(--accent); }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 700; padding: 12px 22px; border-radius: 6px; font-size: 14px; transition: transform .15s, background .15s; }
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 8px 16px; font-size: 13px; background: var(--accent); color: #fff; }
.btn--sm:hover { background: #c44e09; }
.btn--lg { padding: 16px 30px; font-size: 15px; background: var(--accent); color: #fff; }
.btn--lg:hover { background: #c44e09; }

/* hero */
.hero { padding: clamp(30px,4vw,56px) 0 0; }
.hero__stat-bar { background: var(--ink); }
.hero__stat-bar__in { display: flex; justify-content: space-around; padding: 16px 0; flex-wrap: wrap; gap: 12px; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-item b { font-family: var(--display); font-size: 20px; font-weight: 800; color: #fff; }
.stat-item span { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,56px); align-items: center; padding: clamp(36px,5vw,64px) 0; }
.hero__left { }
.hero__left .lead { margin: 18px 0 26px; }
.hero__photo { position: relative; }
.hero__photo img { width: 100%; height: clamp(340px,42vw,500px); object-fit: cover; border-radius: calc(var(--r) + 8px); box-shadow: 0 28px 60px -24px rgba(15,23,42,.25); }
.hero__label { position: absolute; bottom: 20px; left: 20px; background: var(--accent); color: #fff; font-weight: 700; font-size: 13px; padding: 7px 14px; border-radius: 999px; font-family: var(--display); letter-spacing: .04em; }

/* honey grid — equal-height cards */
.section { padding: clamp(46px,6vw,80px) 0; }
.section__head { max-width: 54ch; margin-bottom: 36px; }
.section__sub { color: var(--mute); margin-top: 8px; }
.honey-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.honey-card { background: var(--paper); border: 1px solid var(--line); border-radius: calc(var(--r)+4px); padding: 24px; display: flex; flex-direction: column; min-height: 250px; }
.honey-card--dark { background: var(--ink); }
.honey-card--dark h3 { color: #fff; }
.honey-card--dark p { color: rgba(255,255,255,.65); }
.honey-card--dark .honey-card__meta span { color: rgba(255,255,255,.5); }
.honey-card--dark .honey-card__price { color: var(--accent); }
.honey-card__color { height: 8px; border-radius: 999px; margin-bottom: 16px; }
.honey-card__color--lipovy { background: linear-gradient(90deg,#f5d78e,#e8a04b); }
.honey-card__color--grechishny { background: linear-gradient(90deg,#7a4a1e,#a0661e); }
.honey-card__color--raznotrave { background: linear-gradient(90deg,#fbbf24,#d97706); }
.honey-card__color--donnikovy { background: linear-gradient(90deg,#fff,#f5f0e8); border: 1px solid var(--line); }
.honey-card h3 { font-size: 18px; }
.honey-card p { color: var(--mute); font-size: 14px; margin-top: 8px; flex: 1; }
.honey-card__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; flex-wrap: wrap; gap: 6px; }
.honey-card__meta span { font-size: 12px; color: var(--mute); }
.honey-card__price { font-weight: 700; color: var(--accent); font-size: 14px; }

/* degustation */
.degustation { padding: clamp(46px,6vw,80px) 0; background: var(--ink); }
.degustation__layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: center; }
.degustation__copy h2 { color: #fff; }
.degustation__copy p { color: rgba(255,255,255,.7); margin-top: 14px; max-width: 46ch; }
.degustation__copy .btn { margin-top: 24px; }
.degustation__list { list-style: none; display: grid; gap: 10px; margin: 18px 0; }
.degustation__list li { color: rgba(255,255,255,.75); padding-left: 18px; position: relative; font-size: 15px; }
.degustation__list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
.degustation__panel { display: grid; gap: 14px; }
.tasting-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 20px; display: flex; align-items: flex-start; gap: 14px; }
.tasting-card__icon { font-size: 24px; flex-shrink: 0; }
.tasting-card b { display: block; color: #fff; font-size: 16px; margin-bottom: 4px; }
.tasting-card p { color: rgba(255,255,255,.55); font-size: 13px; }

/* gifts */
.gifts { padding: clamp(46px,6vw,80px) 0; }
.gifts__title { margin-bottom: 10px; }
.gifts__sub { color: var(--mute); margin-bottom: 36px; }
.gifts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gift-box { background: var(--paper); border: 1px solid var(--line); border-radius: calc(var(--r)+4px); padding: 28px; display: flex; flex-direction: column; gap: 8px; min-height: 180px; position: relative; }
.gift-box--main { border-color: var(--accent); background: var(--warm); }
.gift-box__tag { position: absolute; top: -12px; left: 24px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.gift-box__name { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); }
.gift-box__content { font-size: 14px; color: var(--mute); flex: 1; }
.gift-box__price { font-weight: 700; color: var(--accent); font-size: 16px; margin-top: 4px; }

/* contact */
.contact { padding: clamp(46px,6vw,80px) 0; }
.contact__inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; background: var(--bg); border: 2px solid var(--line); border-radius: calc(var(--r)+8px); padding: clamp(28px,4vw,48px); }
.contact__inner h2 { margin-bottom: 10px; }
.contact__inner p { color: var(--mute); }
.contact__time { font-weight: 700; color: var(--ink) !important; margin-top: 8px; }

/* footer */
.foot { background: var(--ink); padding: 26px 0; }
.foot__inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot__inner span { font-size: 13px; color: rgba(255,255,255,.45); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .honey-grid { grid-template-columns: repeat(2,1fr); }
  .degustation__layout { grid-template-columns: 1fr; }
  .gifts-grid { grid-template-columns: 1fr 1fr; }
  .hero__stat-bar__in { justify-content: flex-start; gap: 20px; padding: 14px 16px; }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .honey-grid { grid-template-columns: 1fr; }
  .gifts-grid { grid-template-columns: 1fr; }
}
