/* === Index 17: Дым и Соль — fullbleed-hero layout === */
:root {
  --primary: #2d6a4f;
  --bg: #f1faf5;
  --ink: #14241c;
  --accent: #40916c;
  --paper: #ffffff;
  --line: #c8e6d6;
  --mute: #4a7060;
  --dark: #0a1c13;
  --s: clamp(16px, 2vw, 24px);
  --r: 14px;
  --display: 'Bebas Neue', system-ui, sans-serif;
  --body: 'Roboto', 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; letter-spacing: .01em; }
h1 { font-size: clamp(48px, 7vw, 96px); font-weight: 400; }
h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 400; }
h3 { font-size: 22px; }
p { color: var(--ink); }
.lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--mute); max-width: 50ch; line-height: 1.6; }
.lead--white { color: rgba(255,255,255,.8); }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.eyebrow--white { color: rgba(255,255,255,.7); }
.eyebrow--inv { color: #9ef0c0; }

/* nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(10,28,19,.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,.1); }
.nav__in { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 24px; letter-spacing: .05em; text-decoration: none; color: #fff; }
.brand__smoke { color: var(--accent); font-size: 20px; }
.brand__and { color: var(--accent); margin: 0 2px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { font-size: 14px; font-weight: 500; text-decoration: none; color: rgba(255,255,255,.6); transition: color .15s; }
.nav__links a:hover { color: #fff; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 700; padding: 13px 24px; border-radius: 4px; font-size: 14px; transition: transform .15s, background .15s; }
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: 13px; background: var(--primary); color: #fff; }
.btn--sm:hover { background: #1e4d39; }
.btn--white { background: #fff; color: var(--dark); }
.btn--white:hover { background: #e8f5ee; }
.btn--border { background: transparent; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); }
.btn--border:hover { background: rgba(255,255,255,.1); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #1a3d28; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--primary); }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* hero — fullbleed with overlay */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero__bg-wrap { position: absolute; inset: 0; }
.hero__bg { margin: 0; width: 100%; height: 100%; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,15,9,.95) 0%, rgba(5,15,9,.7) 45%, rgba(5,15,9,.3) 100%); }
.hero__content { position: relative; z-index: 2; padding: clamp(40px,6vw,80px) 0 clamp(50px,7vw,90px); }
.hero__content h1 { color: #fff; margin: 12px 0 20px; max-width: 12ch; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero__ribbon { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.hero__ribbon span { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.ribbon__dot { color: var(--accent); }

/* products section */
.section { padding: clamp(46px,6vw,80px) 0; }
.section__head { margin-bottom: 36px; }
.section__sub { color: var(--mute); margin-top: 8px; font-size: 15px; }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.prod-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; min-height: 230px; }
.prod-card--featured { border-color: var(--accent); background: #f0faf5; }
.prod-card__cat { align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--primary); background: rgba(45,106,79,.1); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.prod-card h3 { font-family: var(--display); font-size: 20px; }
.prod-card p { color: var(--mute); font-size: 14px; margin-top: 8px; flex: 1; }
.prod-card__price { font-weight: 700; color: var(--ink); margin-top: 16px; font-size: 15px; }

/* smoke section — feature */
.smoke-section { background: var(--dark); color: #fff; padding: clamp(46px,6vw,80px) 0; }
.smoke-section__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px,4vw,64px); align-items: start; }
.smoke-section__text h2 { color: #fff; line-height: .95; margin: 12px 0 20px; }
.smoke-section__desc { color: rgba(255,255,255,.72); line-height: 1.65; max-width: 46ch; }
.smoke-section__steps { display: grid; gap: 20px; }
.smoke-step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.smoke-step__n { font-family: var(--display); font-size: 28px; color: var(--accent); line-height: 1; }
.smoke-step div { }
.smoke-step b { display: block; color: #fff; font-size: 15px; margin-bottom: 4px; }
.smoke-step p { color: rgba(255,255,255,.6); font-size: 14px; }

/* about */
.about { padding: clamp(46px,6vw,80px) 0; }
.about__layout { display: grid; grid-template-columns: .4fr 1fr; gap: clamp(28px,4vw,64px); align-items: center; }
.about__badge-col { display: grid; gap: 16px; }
.about__badge { background: var(--primary); border-radius: var(--r); padding: 28px 24px; display: grid; gap: 6px; }
.about__badge span:first-child { font-family: var(--display); font-size: 28px; color: #fff; }
.about__badge span:last-child { font-size: 14px; color: rgba(255,255,255,.7); }
.about__badge--sm { background: var(--ink); }
.about__copy { }
.about__copy p { color: var(--mute); margin-top: 14px; max-width: 54ch; }
.about__copy .btn { margin-top: 24px; }

/* contact */
.contact { padding: clamp(46px,6vw,80px) 0; }
.contact__inner { background: var(--ink); border-radius: calc(var(--r)+6px); padding: clamp(28px,4vw,50px); display: grid; grid-template-columns: 1fr auto auto; gap: 30px; align-items: center; }
.contact__title { font-family: var(--display); font-size: clamp(28px,3.5vw,44px); color: #fff; line-height: 1.1; }
.contact__details p { color: rgba(255,255,255,.75); font-size: 15px; }
.contact__details p + p { margin-top: 6px; }
.contact__hours { color: rgba(255,255,255,.9) !important; font-weight: 700; }

/* footer */
.foot { background: var(--dark); 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 { min-height: 80vh; }
  .smoke-section__grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .about__layout { grid-template-columns: 1fr; }
  .about__badge-col { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr 1fr; }
  .contact__title { grid-column: 1 / -1; }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .contact__inner { grid-template-columns: 1fr; }
}
