:root {
  --bg: #0b0908;
  --bg-2: #15110f;
  --panel: #1d1714;
  --panel-2: #261d18;
  --text: #f6efe4;
  --muted: #b8a998;
  --muted-2: #85776b;
  --line: rgba(246, 239, 228, .12);
  --accent: #941115;
  --accent-2: #e0772f;
  --amber: #d59b55;
  --kraft: #cfb083;
  --shadow: 0 28px 80px rgba(0, 0, 0, .38);
  --radius: 26px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  z-index: 2;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.04) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.03) 0 1px, transparent 1px);
  background-size: 18px 18px, 24px 24px;
  mix-blend-mode: soft-light;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 96px 0; position: relative; }
.section-dark {
  background:
    radial-gradient(circle at 12% 10%, rgba(148, 17, 21, .20), transparent 32%),
    radial-gradient(circle at 85% 35%, rgba(224, 119, 47, .08), transparent 26%),
    var(--bg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(11, 9, 8, .72);
  border-bottom: 1px solid rgba(246, 239, 228, .08);
  backdrop-filter: blur(18px);
  transition: padding .2s ease, background .2s ease;
}
.site-header.is-scrolled { padding-top: 10px; padding-bottom: 10px; background: rgba(11, 9, 8, .92); }
.brand { display: flex; align-items: center; gap: 14px; min-width: 250px; }
.brand-mark {
  width: 56px;
  height: 56px;
  padding: 7px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(213, 155, 85, .42);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(148, 17, 21, .20), rgba(255,255,255,.03));
  box-shadow: inset 0 0 24px rgba(213, 155, 85, .05);
  flex: 0 0 auto;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: 15px; letter-spacing: .02em; text-transform: uppercase; }
.brand-text small { color: var(--muted); font-size: 12px; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.main-nav a { color: var(--muted); font-size: 14px; transition: color .18s ease; }
.main-nav a:hover { color: var(--text); }
.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(148, 17, 21, .22);
  border: 1px solid rgba(224, 119, 47, .42);
  color: var(--text);
  font-weight: 800;
  font-size: 14px;
}
.nav-toggle { display: none; margin-left: auto; background: transparent; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 5px 0; }

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 132px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,9,8,.96) 0%, rgba(11,9,8,.78) 42%, rgba(11,9,8,.92) 100%),
    radial-gradient(circle at 76% 48%, rgba(148,17,21,.28), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.018) 0 1px, transparent 1px 18px);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(460px, .94fr);
  gap: 72px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; max-width: 620px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}
h1, h2, h3 { margin: 0; line-height: .96; letter-spacing: -.055em; }
h1 {
  font-size: clamp(52px, 6.8vw, 104px);
  max-width: 10ch;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
h2 { font-size: clamp(36px, 4.7vw, 70px); }
h3 { font-size: 26px; }
p { color: var(--muted); }
.hero-lead { max-width: 620px; margin: 28px 0 0; font-size: clamp(18px, 2vw, 22px); color: #e0d4c7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; box-shadow: 0 20px 50px rgba(148, 17, 21, .28); }
.btn-secondary { background: rgba(246, 239, 228, .06); border-color: rgba(246, 239, 228, .18); color: var(--text); }
.btn-card { width: 100%; background: rgba(148, 17, 21, .18); border-color: rgba(224, 119, 47, .25); color: var(--text); min-height: 46px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-badges span, .category-rail span, .pickup-details span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(246, 239, 228, .07);
  border: 1px solid rgba(246, 239, 228, .11);
  color: #e7d9c8;
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-visual-frame {
  width: min(560px, 100%);
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(246,239,228,.10);
  background: #100d0c;
  box-shadow: var(--shadow);
}
.hero-visual-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-visual-note {
  position: absolute;
  max-width: 230px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(213,155,85,.22);
  background: rgba(11,9,8,.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.hero-visual-note strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.hero-visual-note span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}
.hero-visual-note-top { top: 42px; left: 0; }
.hero-visual-note-bottom { right: -8px; bottom: 42px; }

.intro-strip { background: linear-gradient(180deg, var(--bg), #120f0d); padding: 34px 0 84px; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.intro-card, .product-card, .standard-panel, .sales-card, .lead-form, .map-placeholder {
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.intro-card { padding: 28px; min-height: 220px; }
.intro-card span { color: var(--amber); font-weight: 900; }
.intro-card h2 { margin-top: 30px; font-size: clamp(26px, 3vw, 36px); letter-spacing: -.04em; }

.section-head { max-width: 860px; margin-bottom: 30px; }
.section-head p:not(.eyebrow) { font-size: 18px; }
.category-rail { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.product-line { background: #120f0d; }
.catalog-shell { position: relative; }
.catalog-controls {
  position: absolute;
  right: 0;
  top: -78px;
  display: flex;
  gap: 10px;
}
.catalog-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(246,239,228,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease;
}
.catalog-arrow:hover { transform: translateY(-2px); border-color: rgba(224,119,47,.5); }
.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 340px);
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 4px 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(224,119,47,.55) rgba(255,255,255,.06);
}
.product-rail::-webkit-scrollbar { height: 10px; }
.product-rail::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 999px; }
.product-rail::-webkit-scrollbar-thumb { background: rgba(224,119,47,.55); border-radius: 999px; }
.product-card { overflow: hidden; display: grid; scroll-snap-align: start; }
.product-image { position: relative; aspect-ratio: 1.05; overflow: hidden; background: #090807; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.58);
  color: var(--kraft);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.product-info { padding: 22px; display: grid; align-content: start; }
.product-info h3 { font-size: 28px; }
.product-info p { min-height: 72px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.product-meta span {
  padding: 6px 9px;
  border: 1px solid rgba(246,239,228,.11);
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
}
.product-bottom { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.product-bottom strong { font-size: 28px; color: var(--text); }
.product-bottom small { color: var(--muted-2); }

.story { overflow: hidden; }
.story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(213,155,85,.13), transparent 32%);
  pointer-events: none;
}
.story-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: center; }
.story-copy p:not(.eyebrow) { font-size: 19px; }
.standard-panel { padding: 34px; }
.standard-panel h3 { color: var(--kraft); text-transform: uppercase; letter-spacing: .06em; }
.standard-panel ul { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 18px; }
.standard-panel li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: #e7d9c8;
}
.standard-panel li span { color: var(--amber); font-weight: 900; }

.sales-blocks { background: #120f0d; }
.sales-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.sales-card { padding: 38px; min-height: 380px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; position: relative; overflow: hidden; }
.sales-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(213,155,85,.14), transparent 26%);
  pointer-events: none;
}
.sales-card-accent { background: linear-gradient(145deg, rgba(148,17,21,.30), rgba(255,255,255,.04)); }
.sales-card p, .sales-card h2, .sales-card a { position: relative; z-index: 1; }

.pickup { background: var(--bg-2); }
.pickup-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 28px; align-items: stretch; }
.pickup-details { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pickup-link { margin-top: 24px; }
.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 1px, transparent 1px 18px);
}
.map-card {
  width: min(100% - 40px, 420px);
  padding: 28px;
  border-radius: 24px;
  background: rgba(11,9,8,.76);
  border: 1px solid rgba(213,155,85,.24);
  text-align: center;
}
.map-card strong { display: block; font-size: 26px; letter-spacing: -.04em; }
.map-card span { display: block; margin-top: 10px; color: var(--kraft); font-weight: 700; }
.map-card small { display: block; margin-top: 12px; color: var(--muted); }

.lead-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 38px; align-items: start; }
.lead-copy p:not(.eyebrow) { font-size: 18px; }
.contact-list { display: grid; gap: 10px; margin-top: 26px; }
.contact-list a, .contact-list span { color: var(--kraft); font-weight: 800; }
.lead-form { padding: 28px; display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(246,239,228,.14);
  border-radius: 16px;
  background: rgba(0,0,0,.24);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(224,119,47,.7); }
textarea { resize: vertical; }
.form-status { margin: 0; min-height: 24px; font-weight: 800; }
.form-status.is-success { color: #d7b873; }
.form-status.is-error { color: #ff9b8a; }

.site-footer { background: #070605; border-top: 1px solid rgba(246,239,228,.08); padding: 44px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .5fr .6fr; gap: 30px; }
.footer-grid div { display: grid; gap: 8px; }
.footer-grid span { color: var(--kraft); font-weight: 900; }
.footer-grid a { color: var(--muted); }
.footer-grid p { margin: 0; max-width: 520px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.admin-page { padding: 120px 0 60px; background: #120f0d; min-height: 100vh; }
.admin-head { margin-bottom: 30px; }
.admin-list { display: grid; gap: 18px; }
.admin-card { background: rgba(255,255,255,.05); border: 1px solid var(--line); border-radius: 24px; padding: 18px; }
.admin-card form { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: end; }
.admin-card label.wide { grid-column: span 2; }
.admin-card label.full { grid-column: 1 / -1; }
.admin-card button { grid-column: 1 / -1; }
.admin-add { margin-top: 34px; padding: 22px; background: rgba(148,17,21,.12); border: 1px solid rgba(224,119,47,.25); border-radius: 24px; }
.admin-add form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.admin-add .full { grid-column: 1 / -1; }

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 760px; }
  h1 { max-width: 12ch; }
  .hero-visual { min-height: auto; justify-content: flex-start; }
  .hero-visual-frame { width: min(560px, 100%); }
  .hero-visual-note-top { left: 18px; }
  .hero-visual-note-bottom { right: 18px; }
  .story-grid, .pickup-grid, .lead-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav.is-open {
    display: grid;
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: rgba(11,9,8,.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .site-header { padding-left: 14px; padding-right: 14px; }
  .brand { min-width: auto; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-text small { display: none; }
  .brand-text strong { font-size: 12px; }
  .hero { padding-top: 108px; }
  h1 { font-size: clamp(44px, 14vw, 72px); max-width: 8ch; }
  .hero-grid { gap: 24px; }
  .hero-visual-frame { width: 100%; }
  .hero-visual-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }
  .intro-grid, .sales-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .catalog-controls {
    position: static;
    margin-bottom: 14px;
    justify-content: flex-end;
  }
  .product-rail { grid-auto-columns: minmax(265px, 85vw); }
  .sales-card { min-height: 300px; }
  .admin-card form, .admin-add form { grid-template-columns: 1fr; }
  .admin-card label.wide, .admin-card label.full, .admin-add .full { grid-column: 1; }
}

/* v03: centered copy, cart flow, embedded map */
.hero-copy,
.section-head,
.intro-card,
.product-info,
.story-copy,
.standard-panel,
.sales-card,
.pickup-copy,
.contact-center,
.footer-grid,
.lead-form,
.cart-panel,
.map-card {
  text-align: center;
}

.hero-copy,
.sales-card,
.pickup-copy,
.contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-lead,
.section-head,
.story-copy p,
.pickup-copy p,
.contact-center p,
.footer-grid p {
  margin-left: auto;
  margin-right: auto;
}

.hero-actions,
.hero-badges,
.category-rail,
.product-meta,
.product-bottom,
.pickup-details {
  justify-content: center;
}

.standard-panel li {
  justify-content: center;
}

.brand-text {
  text-align: left;
}

.main-nav a {
  text-align: center;
}

.cart-header-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cart-header-link strong {
  min-width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(224, 119, 47, .22);
  color: var(--kraft);
  font-size: 13px;
}

.cart-section {
  overflow: hidden;
}

.cart-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.cart-panel {
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}

.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.cart-panel-head h3 {
  font-size: 32px;
}

.cart-clear {
  border: 1px solid rgba(246,239,228,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: var(--muted);
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 800;
}

.cart-empty {
  color: var(--muted);
  padding: 22px;
  border: 1px dashed rgba(246,239,228,.16);
  border-radius: 18px;
}

.cart-empty.is-hidden {
  display: none;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(246,239,228,.10);
  border-radius: 18px;
  background: rgba(0,0,0,.18);
}

.cart-item-title strong {
  display: block;
  color: var(--text);
  font-size: 17px;
}

.cart-item-title span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.qty-btn,
.remove-btn {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(246,239,228,.14);
  background: rgba(255,255,255,.05);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.remove-btn {
  color: #ff9b8a;
}

.cart-qty {
  min-width: 28px;
  color: var(--kraft);
  font-weight: 900;
}

.cart-total {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(246,239,228,.10);
}

.cart-total.is-visible {
  display: flex;
}

.cart-total span {
  color: var(--muted);
}

.cart-total strong {
  font-size: 30px;
  color: var(--text);
}

.cart-form {
  scroll-margin-top: 110px;
}

input, select, textarea {
  text-align: left;
}

.lead-form label {
  text-align: center;
}

.map-embed {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b0908;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
  filter: saturate(.72) contrast(.98) brightness(.82);
}

.map-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(213,155,85,.22);
  border-radius: 18px;
  background: rgba(11,9,8,.86);
  backdrop-filter: blur(10px);
  text-align: center;
}

.map-caption strong {
  color: var(--text);
  font-size: 18px;
}

.map-caption span {
  color: var(--muted);
  font-size: 13px;
}

.contact-center {
  max-width: 860px;
}

.contact-list-center {
  justify-items: center;
  margin-bottom: 28px;
}

@media (max-width: 1180px) {
  .cart-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .cart-item {
    grid-template-columns: 1fr;
  }
  .cart-item-actions {
    justify-content: center;
  }
  .map-embed,
  .map-embed iframe {
    min-height: 360px;
  }
}

/* User correction: center brand text too */
.brand-text { text-align: center; }

/* v05: аккуратное меню, язык фактов, марка качества и ровные карточки */
.site-header {
  gap: 14px;
}
.main-nav {
  gap: 8px;
}
.main-nav a {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(246,239,228,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d9cbbd;
  font-size: 13px;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.main-nav a:hover {
  color: var(--text);
  border-color: rgba(224,119,47,.55);
  background: linear-gradient(135deg, rgba(148,17,21,.30), rgba(224,119,47,.10));
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(148,17,21,.18);
}
.header-cta {
  min-width: 150px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(148,17,21,.25);
  background: rgba(148,17,21,.34);
}

.facts-head {
  max-width: 880px;
  margin: 0 auto 30px;
  text-align: center;
}
.facts-head h2 {
  font-size: clamp(34px, 4vw, 62px);
}
.intro-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(224,119,47,.10);
  border: 1px solid rgba(224,119,47,.25);
  color: var(--amber);
  font-size: 14px;
  letter-spacing: .02em;
}

.product-card {
  min-height: 610px;
  align-self: stretch;
}
.product-image {
  aspect-ratio: 1.12;
}
.quality-mark {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 72px !important;
  height: 72px !important;
  object-fit: contain !important;
  padding: 5px;
  border-radius: 50%;
  background: rgba(5,4,3,.72);
  border: 1px solid rgba(213,155,85,.38);
  box-shadow: 0 14px 30px rgba(0,0,0,.34);
  backdrop-filter: blur(8px);
  transform: none !important;
}
.product-card:hover .quality-mark {
  transform: scale(1.05) rotate(-4deg) !important;
}
.product-info {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-info h3 {
  min-height: 58px;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1.03;
}
.product-info p {
  min-height: 50px;
  max-height: 50px;
  margin: 14px 0 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.45;
}
.product-meta {
  justify-content: center;
  margin-top: auto;
}
.product-bottom {
  justify-content: center;
  width: 100%;
}
.btn-card {
  margin-top: 2px;
}

.standard-panel li {
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.25;
}
.standard-panel li span {
  display: none;
}

@media (max-width: 1240px) {
  .brand { min-width: 220px; }
  .brand-text strong { font-size: 13px; }
  .main-nav a { padding: 9px 11px; font-size: 12px; }
  .header-cta { min-width: 132px; padding-left: 14px; padding-right: 14px; }
}

@media (max-width: 760px) {
  .main-nav a {
    border-radius: 16px;
    min-height: 44px;
  }
  .facts-head {
    margin-bottom: 20px;
  }
  .product-card {
    min-height: 590px;
  }
  .product-info {
    min-height: 330px;
  }
  .quality-mark {
    width: 62px !important;
    height: 62px !important;
  }
  .standard-panel li {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* v06: компактное меню, отступы фактов, ровная марка качества */
.site-header {
  gap: 10px;
}
.brand {
  min-width: 210px;
  gap: 10px;
}
.brand-mark {
  width: 52px;
  height: 52px;
}
.brand-text strong {
  font-size: 13px;
  letter-spacing: .01em;
}
.brand-text small {
  font-size: 11px;
  max-width: 150px;
}
.main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}
.main-nav a {
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 12.5px;
  line-height: 1;
  color: #e0d3c4;
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border: 1px solid rgba(213,155,85,.18);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.015),
    0 10px 22px rgba(0,0,0,.10);
}
.main-nav a:hover {
  color: #fff7ec;
  border-color: rgba(224,119,47,.62);
  background:
    linear-gradient(135deg, rgba(148,17,21,.34), rgba(224,119,47,.13));
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(148,17,21,.20);
}
.header-cta {
  min-width: 118px;
  min-height: 42px;
  padding: 9px 14px;
  flex: 0 0 auto;
}
.cart-header-link strong {
  min-width: 24px;
  height: 24px;
  font-size: 12px;
}

.intro-strip {
  padding-top: 76px;
}
.facts-head {
  max-width: 960px;
  margin-bottom: 54px;
}
.facts-head h2 {
  line-height: 1.04;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.intro-grid {
  margin-top: 14px;
}
.intro-card {
  padding-top: 34px;
}

.story-copy h2 {
  text-align: center;
}

.product-card {
  min-height: 620px;
}
.product-info h3 {
  min-height: 60px;
  line-height: 1.04;
}
.product-info p {
  min-height: 48px;
  max-height: 48px;
}
.quality-mark {
  width: 78px !important;
  height: 78px !important;
  padding: 0;
  object-fit: contain !important;
  background: rgba(5,4,3,.76);
  border-color: rgba(213,155,85,.50);
}

.standard-panel li {
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  font-size: clamp(12px, 1.05vw, 15px);
  padding: 14px 16px;
}

@media (max-width: 1280px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
    gap: 8px;
  }
  .brand {
    min-width: 190px;
  }
  .brand-mark {
    width: 48px;
    height: 48px;
  }
  .brand-text strong {
    font-size: 12px;
  }
  .brand-text small {
    font-size: 10px;
    max-width: 132px;
  }
  .main-nav {
    gap: 5px;
  }
  .main-nav a {
    padding: 8px 8px;
    font-size: 11.5px;
    min-height: 36px;
  }
  .header-cta {
    min-width: 104px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }
}

@media (max-width: 1120px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav.is-open {
    display: grid;
    justify-content: stretch;
  }
  .main-nav.is-open a {
    white-space: normal;
    font-size: 14px;
    border-radius: 16px;
  }
}

/* v07: одинаковые кнопки шапки, ниже факты, кнопки карточек к низу, финальный знак бренда */
@media (min-width: 1121px) {
  .site-header {
    gap: 8px;
    padding-left: max(12px, calc((100vw - var(--container)) / 2));
    padding-right: max(12px, calc((100vw - var(--container)) / 2));
  }

  .brand {
    min-width: 190px;
    flex: 0 0 190px;
  }

  .main-nav {
    flex: 1 1 auto;
    justify-content: center;
    gap: 6px;
  }

  .main-nav a {
    width: 106px;
    height: 46px;
    min-height: 46px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.12;
    font-size: 12px;
    font-weight: 800;
    border-radius: 15px;
    background:
      linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
    border: 1px solid rgba(213,155,85,.22);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,.018),
      0 10px 24px rgba(0,0,0,.12);
  }

  .main-nav a:hover {
    transform: translateY(-3px);
    border-color: rgba(224,119,47,.68);
    background:
      linear-gradient(145deg, rgba(148,17,21,.36), rgba(224,119,47,.13));
    box-shadow:
      0 16px 34px rgba(148,17,21,.22),
      inset 0 0 0 1px rgba(255,255,255,.03);
  }

  .header-cta {
    width: 118px;
    min-width: 118px;
    height: 46px;
    min-height: 46px;
    padding: 0 10px;
  }
}

.intro-strip {
  padding-top: 96px;
}

.facts-head {
  margin-bottom: 86px;
}

.facts-head h2 {
  max-width: 980px;
  line-height: 1.02;
}

.intro-grid {
  margin-top: 0;
}

.product-rail {
  padding-bottom: 46px;
}

.product-card {
  min-height: 666px;
  grid-template-rows: auto 1fr;
}

.product-info {
  min-height: 372px;
  padding: 24px 22px 26px;
}

.product-info h3 {
  min-height: 62px;
  max-height: 62px;
  margin: 0 auto;
}

.product-info p {
  min-height: 52px;
  max-height: 52px;
  margin-bottom: 8px;
}

.product-meta {
  margin-top: auto;
  margin-bottom: 18px;
}

.product-bottom {
  margin-top: 0;
  margin-bottom: 20px;
}

.btn-card {
  margin-top: 0;
  min-height: 52px;
  flex: 0 0 auto;
}

.quality-mark {
  left: 14px;
  right: auto;
  bottom: -2px;
  width: 82px !important;
  height: 82px !important;
  background: rgba(5,4,3,.54);
}

.brand-pride {
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 104px;
}

.brand-pride-inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-pride-inner img {
  width: min(380px, 68vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 26px;
  filter: drop-shadow(0 28px 60px rgba(0,0,0,.42));
}

.brand-pride-inner h2 {
  max-width: 860px;
}

.brand-pride-inner p:not(.eyebrow) {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

@media (max-width: 1280px) and (min-width: 1121px) {
  .main-nav a {
    width: 98px;
    font-size: 11.2px;
  }

  .brand {
    min-width: 180px;
    flex-basis: 180px;
  }

  .header-cta {
    width: 108px;
    min-width: 108px;
  }
}

@media (max-width: 760px) {
  .facts-head {
    margin-bottom: 44px;
  }

  .product-card {
    min-height: 642px;
  }

  .product-info {
    min-height: 358px;
  }

  .quality-mark {
    width: 68px !important;
    height: 68px !important;
  }

  .brand-pride {
    padding-top: 76px;
    padding-bottom: 84px;
  }
}

/* v11: premium seam treatment, retail/wholesale toggle, refined brand pride */
.hero {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11,9,8,0) 0%, rgba(11,9,8,.72) 44%, #120f0d 100%),
    radial-gradient(circle at 50% 18%, rgba(224,119,47,.18), transparent 48%);
}

.hero-visual-frame {
  position: relative;
  border: 1px solid rgba(213,155,85,.18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.02), rgba(255,255,255,.01)),
    #100d0c;
  box-shadow:
    0 26px 70px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.02) inset;
}

.hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(16,13,12,0) 0%, rgba(16,13,12,.84) 100%);
  pointer-events: none;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 5% 10% 18%;
  border-radius: 42px;
  background: radial-gradient(circle at 50% 48%, rgba(148,17,21,.17), transparent 60%);
  filter: blur(18px);
  pointer-events: none;
}

.catalog-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.price-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(246,239,228,.10);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.price-toggle-btn {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s ease;
}

.price-toggle-btn:hover {
  color: var(--text);
}

.price-toggle-btn.is-active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(148,17,21,.88), rgba(224,119,47,.78));
  box-shadow: 0 10px 28px rgba(148,17,21,.28);
}

.catalog-pricing-note {
  margin: 0;
  color: var(--kraft);
  font-size: 14px;
}

.product-price-note {
  margin-top: -8px;
  margin-bottom: 14px;
  color: var(--kraft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand-pride {
  padding-top: 74px;
  padding-bottom: 82px;
}

.brand-pride-inner {
  max-width: 760px;
}

.honor-logo {
  width: min(150px, 22vw) !important;
  max-width: 150px !important;
  height: auto !important;
  margin-bottom: 18px !important;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.30));
}

.honor-board {
  width: 100%;
  padding: 28px 34px 30px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    radial-gradient(circle at 50% 0%, rgba(213,155,85,.10), transparent 55%);
  border: 1px solid rgba(213,155,85,.20);
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
}

.honor-board .eyebrow {
  margin-bottom: 14px;
}

.honor-board h2 {
  margin: 0 auto;
  max-width: 620px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: #f1e4d2;
  text-shadow: 0 2px 0 rgba(255,255,255,.02);
}

.honor-board p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.72;
  color: #d2b796;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .honor-board h2 {
    background: linear-gradient(180deg, #f5ead7 0%, #e3c899 58%, #c89158 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

@media (max-width: 860px) {
  .catalog-pricing {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .price-toggle {
    justify-content: center;
    flex-wrap: wrap;
  }

  .catalog-pricing-note {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .hero::after {
    height: 120px;
  }

  .price-toggle-btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .honor-logo {
    width: 104px !important;
    max-width: 104px !important;
  }

  .honor-board {
    padding: 22px 18px 24px;
  }

  .honor-board p:not(.eyebrow) {
    font-size: 15px;
  }
}


/* v12: stronger catalog arrows and seamless premium section transitions */
.catalog-pricing {
  justify-content: center;
  margin-top: 6px;
  margin-bottom: 30px;
}

.catalog-pricing-note {
  display: none !important;
}

.catalog-shell {
  padding-left: 76px;
  padding-right: 76px;
}

.catalog-controls {
  top: 50% !important;
  left: 0 !important;
  right: 0 !important;
  transform: translateY(-50%);
  justify-content: space-between !important;
  pointer-events: none;
  z-index: 12;
}

.catalog-arrow {
  pointer-events: auto;
  width: 62px;
  height: 132px;
  border-radius: 24px;
  border: 1px solid rgba(213,155,85,.48);
  background:
    linear-gradient(180deg, rgba(224,119,47,.92), rgba(148,17,21,.88)),
    radial-gradient(circle at 50% 25%, rgba(255,255,255,.18), transparent 46%);
  color: #fff8ec;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 24px 54px rgba(0,0,0,.36),
    0 12px 28px rgba(148,17,21,.26),
    inset 0 0 0 1px rgba(255,255,255,.08);
  opacity: .94;
}

.catalog-arrow:hover {
  opacity: 1;
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255,207,145,.72);
  box-shadow:
    0 30px 70px rgba(0,0,0,.42),
    0 16px 34px rgba(224,119,47,.26),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

.catalog-arrow:active {
  transform: translateY(0) scale(.98);
}

.product-line {
  background:
    radial-gradient(circle at 50% 0%, rgba(148,17,21,.12), transparent 42%),
    linear-gradient(180deg, #120f0d 0%, #120b0a 68%, #100908 100%) !important;
}

.product-line::after,
.cart-section::after,
.story::after,
.sales-blocks::after,
.pickup::after,
.lead-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(15,8,8,0) 0%, #120807 100%);
}

.product-line > *,
.cart-section > *,
.story > *,
.sales-blocks > *,
.pickup > *,
.lead-section > * {
  position: relative;
  z-index: 1;
}

.cart-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(148,17,21,.20), transparent 32%),
    linear-gradient(180deg, #100908 0%, #120807 54%, #120a09 100%) !important;
}

.story {
  background:
    radial-gradient(circle at 75% 50%, rgba(213,155,85,.13), transparent 32%),
    linear-gradient(180deg, #120807 0%, #110908 55%, #120f0d 100%) !important;
}

.sales-blocks {
  position: relative;
  background:
    radial-gradient(circle at 50% 20%, rgba(148,17,21,.10), transparent 48%),
    linear-gradient(180deg, #120f0d 0%, #120a09 62%, #100908 100%) !important;
}

.pickup {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 40%, rgba(213,155,85,.10), transparent 34%),
    linear-gradient(180deg, #100908 0%, #120a09 56%, #100707 100%) !important;
}

.lead-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(148,17,21,.30), transparent 34%),
    radial-gradient(circle at 82% 54%, rgba(213,155,85,.08), transparent 38%),
    linear-gradient(180deg, #100707 0%, #100707 14%, #0b0908 58%, #100807 100%) !important;
}

.lead-section::before,
.brand-pride::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(180deg, #100707 0%, rgba(16,7,7,0) 100%);
  z-index: 0;
}

.brand-pride {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(213,155,85,.12), transparent 32%),
    linear-gradient(180deg, #100807 0%, #0b0908 55%, #080605 100%) !important;
}

.honor-logo {
  width: min(300px, 42vw) !important;
  max-width: 300px !important;
}

@media (max-width: 860px) {
  .catalog-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .catalog-controls {
    position: static !important;
    transform: none;
    margin-bottom: 18px;
    pointer-events: auto;
  }

  .catalog-arrow {
    width: 74px;
    height: 56px;
    border-radius: 999px;
    font-size: 32px;
  }
}

@media (max-width: 760px) {
  .honor-logo {
    width: 200px !important;
    max-width: 200px !important;
  }
}


/* v15: mobile hero fixes, restored catalog rail, animated flavor notes */
.hero-title {
  margin: 0;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-visual-note {
  transition: opacity .55s ease, transform .55s ease, box-shadow .45s ease;
}

.hero-visual-note.is-changing {
  opacity: .22;
  transform: translateY(10px) scale(.985);
}

.hero-visual-note strong,
.hero-visual-note span {
  transition: opacity .35s ease;
}

@keyframes noteGlow {
  0%, 100% { box-shadow: 0 18px 40px rgba(0,0,0,.22); }
  50% { box-shadow: 0 24px 52px rgba(148,17,21,.28), 0 0 0 1px rgba(224,119,47,.14) inset; }
}

.hero-visual-note-top,
.hero-visual-note-bottom {
  animation: noteGlow 6s ease-in-out infinite;
}

.story-copy h2 br {
  display: block;
}

@media (max-width: 760px) {
  html, body {
    overflow-x: hidden;
  }

  .hero-grid,
  .story-grid,
  .sales-grid,
  .lead-grid,
  .pickup-grid,
  .cart-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    overflow: hidden;
  }

  .hero-copy {
    text-align: center;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(46px, 12vw, 66px);
    line-height: .95;
    letter-spacing: -.06em;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title span {
    white-space: nowrap;
  }

  .hero-lead {
    max-width: 100%;
    text-wrap: pretty;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 8px;
  }

  .hero-visual-note {
    max-width: 170px;
    padding: 13px 14px;
    border-radius: 18px;
  }

  .hero-visual-note strong {
    font-size: 18px;
    line-height: 1.02;
  }

  .hero-visual-note span {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-visual-note-top {
    top: 16px;
    left: 10px;
  }

  .hero-visual-note-bottom {
    right: 10px;
    bottom: 16px;
  }

  .catalog-pricing {
    margin-bottom: 18px;
  }

  .price-toggle {
    width: 100%;
    justify-content: center;
  }

  .price-toggle-btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .catalog-shell {
    overflow: visible;
  }

  .catalog-controls {
    position: static;
    justify-content: center;
    margin-bottom: 16px;
  }

  .catalog-arrow {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

  .product-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(286px, 86vw);
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 2px 18px;
    scroll-snap-type: x mandatory;
    align-items: stretch;
  }

  .product-card {
    width: auto;
    min-width: 0;
    min-height: 0;
    grid-template-rows: auto 1fr;
  }

  .product-image {
    aspect-ratio: 1 / 1.02;
  }

  .product-info {
    min-height: unset;
    padding: 20px 18px 22px;
  }

  .product-info h3 {
    min-height: 0;
    max-height: none;
    font-size: 25px;
    line-height: 1.02;
  }

  .product-info p {
    min-height: 0;
    max-height: none;
    margin-bottom: 8px;
  }

  .product-meta {
    margin-top: 14px;
    margin-bottom: 16px;
  }

  .btn-card {
    margin-top: 8px;
  }

  .story-copy {
    text-align: center;
  }

  .story-copy h2 {
    font-size: clamp(42px, 11vw, 56px);
    line-height: .98;
    letter-spacing: -.05em;
  }

  .story-copy h2 br {
    display: block;
  }

  .story-copy p {
    text-align: center;
  }

  .standard-panel {
    padding: 26px 16px;
  }

  .standard-panel h3 {
    text-align: center;
    font-size: clamp(28px, 8vw, 44px);
    line-height: 1.02;
  }

  .standard-panel li {
    white-space: normal;
    text-align: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.35;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 58px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 54px;
  }

  .story-copy h2 {
    font-size: 34px;
  }

  .product-rail {
    grid-auto-columns: minmax(274px, 84vw);
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 49px;
  }

  .product-rail {
    grid-auto-columns: minmax(268px, 84vw);
  }
}

@media (max-width: 320px) {
  .hero-title {
    font-size: 43px;
  }

  .hero-visual-note {
    max-width: 156px;
  }

  .product-rail {
    grid-auto-columns: minmax(252px, 84vw);
  }
}


/* v16: hero slider image switch, no overlay conflicts, clean mobile hero */
.hero-grid,
.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy {
  isolation: isolate;
}

.hero-title {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-title span {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-visual {
  z-index: 1;
}

.hero-visual-frame img {
  transition: opacity .52s ease, transform .75s cubic-bezier(.2,.72,.2,1), filter .75s ease;
  will-change: opacity, transform, filter;
}

.hero-visual-frame img.is-image-changing {
  opacity: .18;
  transform: scale(1.035);
  filter: blur(4px) saturate(.9);
}

.hero-visual-note {
  z-index: 4;
}

.hero-visual-note-top {
  left: auto !important;
  right: 28px !important;
  top: 46px !important;
  max-width: 210px;
}

.hero-visual-note-bottom {
  right: 22px !important;
  bottom: 38px !important;
  max-width: 220px;
}

.hero-visual-note strong {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (min-width: 1181px) {
  .hero-copy {
    z-index: 3;
  }

  .hero-visual-frame {
    width: min(520px, 100%);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 44px;
  }

  .hero-grid {
    width: min(100% - 30px, var(--container));
    gap: 28px;
    overflow: visible;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .hero-title {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: clamp(42px, 10.4vw, 50px);
    line-height: .98;
    letter-spacing: -.055em;
    text-align: center;
  }

  .hero-title span {
    display: inline;
    white-space: normal;
  }

  .hero-title span::after {
    content: " ";
  }

  .hero-title span:last-child::after {
    content: "";
  }

  .eyebrow {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero .eyebrow {
    max-width: 100%;
    font-size: 11px;
    letter-spacing: .12em;
    white-space: normal;
    text-align: center;
  }

  .hero-lead {
    width: 100%;
    max-width: 100%;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 10px;
  }

  .hero-badges span {
    justify-content: center;
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    justify-content: center;
    overflow: visible;
    margin-top: 0;
  }

  .hero-visual-frame {
    width: min(100%, 360px);
    max-width: 100%;
    margin: 0 auto;
    border-radius: 28px;
  }

  .hero-visual-frame img {
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    object-position: center;
  }

  .hero-visual-note {
    max-width: min(168px, 46vw);
    padding: 12px 13px;
    border-radius: 17px;
  }

  .hero-visual-note-top {
    left: 14px !important;
    right: auto !important;
    top: 14px !important;
  }

  .hero-visual-note-bottom {
    right: 14px !important;
    bottom: 14px !important;
  }

  .hero-visual-note strong {
    font-size: 17px;
    line-height: 1.02;
  }

  .hero-visual-note span {
    font-size: 11.5px;
    line-height: 1.28;
  }
}

@media (max-width: 390px) {
  .hero-grid {
    width: min(100% - 26px, var(--container));
  }

  .hero-title {
    font-size: clamp(38px, 10vw, 46px);
  }

  .hero-lead {
    font-size: 18px;
  }
}

@media (max-width: 340px) {
  .hero-title {
    font-size: 35px;
  }

  .hero-visual-note {
    max-width: 150px;
  }
}


/* v17: fixed-size mobile hero flavor cards, no vertical jumping */
@media (max-width: 760px) {
  .hero-visual {
    display: grid !important;
    grid-template-columns: minmax(110px, 34vw) minmax(0, 1fr) minmax(84px, 25vw);
    gap: 8px;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 390px;
    min-height: 128px !important;
    height: 128px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-visual-frame {
    width: 100% !important;
    height: 128px !important;
    min-height: 128px !important;
    margin: 0 !important;
    border-radius: 22px;
    align-self: stretch;
  }

  .hero-visual-frame img {
    display: block;
    width: 100%;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover;
    object-position: center;
  }

  .hero-visual-note,
  .hero-visual-note-top,
  .hero-visual-note-bottom {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: 128px !important;
    min-height: 128px !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 12px 10px !important;
    border-radius: 20px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    transform-origin: center;
  }

  .hero-visual-note.is-changing {
    transform: scale(.985) !important;
  }

  .hero-visual-note strong {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 36px;
    max-height: 38px;
    font-size: clamp(15px, 4.4vw, 18px) !important;
    line-height: 1.02 !important;
    letter-spacing: -.045em;
  }

  .hero-visual-note span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: 42px;
    max-height: 44px;
    margin-top: 8px;
    font-size: clamp(10px, 3vw, 11.5px) !important;
    line-height: 1.25 !important;
  }

  .hero-visual-note-bottom strong {
    min-height: 34px;
    max-height: 36px;
    font-size: clamp(15px, 4.2vw, 17px) !important;
    letter-spacing: -.035em;
  }
}

@media (max-width: 390px) {
  .hero-visual {
    grid-template-columns: minmax(102px, 33vw) minmax(0, 1fr) minmax(78px, 24vw);
    gap: 7px;
    max-width: 360px;
    height: 122px;
    min-height: 122px !important;
  }

  .hero-visual-frame,
  .hero-visual-note,
  .hero-visual-note-top,
  .hero-visual-note-bottom {
    height: 122px !important;
    min-height: 122px !important;
    border-radius: 18px;
  }

  .hero-visual-note {
    padding: 10px 9px !important;
  }

  .hero-visual-note strong {
    font-size: 15px !important;
    min-height: 32px;
    max-height: 34px;
  }

  .hero-visual-note span {
    font-size: 10.5px !important;
    min-height: 39px;
    max-height: 41px;
  }
}

@media (max-width: 340px) {
  .hero-visual {
    grid-template-columns: 96px minmax(0, 1fr) 72px;
    gap: 6px;
    height: 114px;
    min-height: 114px !important;
  }

  .hero-visual-frame,
  .hero-visual-note,
  .hero-visual-note-top,
  .hero-visual-note-bottom {
    height: 114px !important;
    min-height: 114px !important;
    border-radius: 16px;
  }

  .hero-visual-note {
    padding: 9px 8px !important;
  }

  .hero-visual-note strong {
    font-size: 13.5px !important;
    min-height: 29px;
    max-height: 31px;
  }

  .hero-visual-note span {
    font-size: 9.5px !important;
    min-height: 36px;
    max-height: 38px;
    margin-top: 6px;
  }
}


/* v18: price lists, production location and stable brand headline */
.facts-brand-name {
  display: inline-block;
  white-space: nowrap;
}

.pickup-details a,
.contact-list a[href^="mailto:"] {
  color: var(--kraft);
  font-weight: 800;
  text-decoration: none;
}

.pickup-details a:hover,
.contact-list a[href^="mailto:"]:hover {
  color: var(--text);
}

@media (max-width: 760px) {
  .facts-head h2 {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.02;
  }

  .facts-brand-name {
    white-space: normal;
  }

  .pickup-details {
    justify-content: center;
  }

  .pickup-details span,
  .pickup-details a {
    text-align: center;
  }
}


/* v19: cleaner pickup chips and highlighted production address */
.pickup-details-premium {
  width: min(100%, 650px);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.pickup-details-premium .pickup-pill,
.pickup-details-premium .pickup-mail {
  min-height: 46px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
  color: #f4e7d5;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(213,155,85,.20);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 12px 28px rgba(0,0,0,.16);
  white-space: normal;
}

.pickup-details-premium .pickup-point,
.pickup-details-premium .pickup-mail {
  grid-column: 1 / -1;
}

.pickup-production {
  grid-column: 1 / -1;
  position: relative;
  min-height: 104px;
  padding: 20px 22px 18px 92px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center;
  gap: 5px;
  overflow: hidden;
  border-radius: 26px;
  text-align: left;
  color: #fff5e7;
  background:
    radial-gradient(circle at 14% 50%, rgba(224,119,47,.34), transparent 34%),
    linear-gradient(135deg, rgba(148,17,21,.58), rgba(39,18,13,.88) 48%, rgba(255,255,255,.055));
  border: 1px solid rgba(224,119,47,.54);
  box-shadow:
    0 24px 62px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,255,255,.025) inset,
    0 0 36px rgba(148,17,21,.18);
}

.pickup-production::before {
  content: "⚒";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff7ee;
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(135deg, rgba(224,119,47,.92), rgba(148,17,21,.85));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 14px 34px rgba(0,0,0,.26);
}

.pickup-production::after {
  content: "";
  position: absolute;
  inset: -45% -10% auto auto;
  width: 240px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,213,144,.15), transparent 66%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.pickup-production-label {
  min-height: 0 !important;
  padding: 0 !important;
  display: block !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--kraft);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.pickup-production strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.pickup-production small {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(246,239,228,.72);
  font-size: 13px;
  line-height: 1.25;
}

.pickup-details-premium .pickup-delivery {
  background:
    linear-gradient(135deg, rgba(224,119,47,.22), rgba(148,17,21,.18)),
    rgba(255,255,255,.045);
  border-color: rgba(224,119,47,.34);
}

.pickup-details-premium .pickup-mail {
  color: var(--kraft);
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(213,155,85,.13), rgba(255,255,255,.025));
}

.pickup-details-premium .pickup-mail:hover {
  color: #fff7ec;
  border-color: rgba(224,119,47,.58);
}

@media (max-width: 760px) {
  .pickup-details-premium {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .pickup-details-premium .pickup-point,
  .pickup-details-premium .pickup-mail,
  .pickup-production {
    grid-column: auto;
  }

  .pickup-production {
    min-height: 132px;
    padding: 78px 18px 18px;
    align-items: center !important;
    text-align: center;
    border-radius: 24px;
  }

  .pickup-production::before {
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 22px;
  }

  .pickup-production strong {
    font-size: 21px;
    max-width: 290px;
  }

  .pickup-production small {
    max-width: 270px;
  }
}


/* v20: separate pickup point and production workshop into two clean zones */
.pickup-location-stack {
  width: min(100%, 670px);
  margin: 30px auto 0;
  display: grid;
  gap: 18px;
}

.pickup-location-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(213,155,85,.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.018)),
    rgba(13,10,9,.78);
  box-shadow:
    0 22px 58px rgba(0,0,0,.24),
    inset 0 0 0 1px rgba(255,255,255,.02);
  padding: 28px;
  text-align: left;
}

.pickup-location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 88% 0%, rgba(213,155,85,.12), transparent 42%);
}

.pickup-location-card > * {
  position: relative;
  z-index: 1;
}

.pickup-card-kicker {
  display: inline-flex !important;
  align-items: center;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--kraft);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pickup-location-card h3 {
  margin: 10px 0 10px;
  color: #fff3e5;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.pickup-location-card p {
  margin: 0;
  color: rgba(246,239,228,.72);
  font-size: 16px;
  line-height: 1.55;
}

.pickup-card-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pickup-card-row span {
  min-height: 42px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(213,155,85,.18);
  background: rgba(255,255,255,.045);
  color: #f3e5d4;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.pickup-card-main .pickup-link {
  width: fit-content;
  margin-top: 20px;
}

.pickup-card-production {
  padding-left: 94px;
  border-color: rgba(224,119,47,.46);
  background:
    radial-gradient(circle at 0% 50%, rgba(224,119,47,.24), transparent 34%),
    linear-gradient(135deg, rgba(148,17,21,.42), rgba(39,18,13,.88) 54%, rgba(255,255,255,.045));
  box-shadow:
    0 26px 70px rgba(0,0,0,.30),
    0 0 38px rgba(148,17,21,.16),
    inset 0 0 0 1px rgba(255,255,255,.026);
}

.pickup-card-production::after {
  content: "⚒";
  position: absolute;
  left: 28px;
  top: 30px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #fff7ed;
  font-size: 23px;
  line-height: 1;
  background: linear-gradient(135deg, rgba(224,119,47,.96), rgba(148,17,21,.86));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 15px 34px rgba(0,0,0,.28);
}

.pickup-card-production h3 {
  font-size: clamp(27px, 3.2vw, 38px);
}

.pickup-production-mail {
  margin-top: 18px;
  min-height: 44px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--kraft);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(213,155,85,.24);
}

.pickup-production-mail:hover {
  color: #fff7ec;
  border-color: rgba(224,119,47,.58);
}

@media (max-width: 760px) {
  .pickup-location-stack {
    width: 100%;
    margin-top: 24px;
    gap: 14px;
  }

  .pickup-location-card {
    padding: 24px 18px;
    border-radius: 24px;
    text-align: center;
  }

  .pickup-card-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .pickup-card-main .pickup-link {
    width: 100%;
    margin-top: 18px;
  }

  .pickup-card-production {
    padding: 86px 18px 24px;
  }

  .pickup-card-production::after {
    left: 50%;
    top: 24px;
    transform: translateX(-50%);
  }

  .pickup-production-mail {
    width: 100%;
  }
}


/* v27: balanced desktop performance optimization with preserved brutal visual style */
@media (min-width: 761px) {
  :root {
    --shadow: 0 22px 56px rgba(0, 0, 0, .32);
  }

  body {
    background:
      radial-gradient(circle at 18% 8%, rgba(148,17,21,.16), transparent 34%),
      radial-gradient(circle at 84% 28%, rgba(224,119,47,.07), transparent 26%),
      var(--bg);
  }

  .site-noise {
    opacity: .055;
    mix-blend-mode: normal;
    background-size: 32px 32px, 42px 42px;
  }

  .site-header,
  .site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(11, 9, 8, .90);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
    transform: translateZ(0);
  }

  .section-dark {
    background:
      radial-gradient(circle at 12% 10%, rgba(148,17,21,.18), transparent 34%),
      radial-gradient(circle at 85% 35%, rgba(224,119,47,.075), transparent 28%),
      var(--bg);
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(11,9,8,.96) 0%, rgba(11,9,8,.80) 44%, rgba(11,9,8,.92) 100%),
      radial-gradient(circle at 76% 48%, rgba(148,17,21,.26), transparent 30%);
  }

  .hero::after {
    height: 120px;
  }

  .hero-visual::before {
    filter: blur(8px);
    opacity: .78;
  }

  .hero-visual-frame,
  .intro-card,
  .product-card,
  .standard-panel,
  .sales-card,
  .lead-form,
  .map-placeholder,
  .pickup-location-card,
  .honor-board {
    box-shadow:
      0 18px 42px rgba(0,0,0,.20),
      inset 0 0 0 1px rgba(255,255,255,.014);
  }

  .hero-visual-note,
  .product-category,
  .map-pin {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-visual-note {
    background: rgba(12, 9, 8, .88);
    box-shadow: 0 14px 32px rgba(0,0,0,.22);
    transition: opacity .34s ease, transform .34s ease, box-shadow .22s ease;
  }

  @keyframes noteGlow {
    0%, 100% { box-shadow: 0 14px 32px rgba(0,0,0,.22); }
    50% { box-shadow: 0 18px 42px rgba(148,17,21,.20), 0 0 0 1px rgba(224,119,47,.10) inset; }
  }

  .hero-visual-frame img {
    transition: opacity .42s ease, transform .45s ease;
    will-change: opacity;
  }

  .hero-visual-frame img.is-image-changing {
    opacity: .36;
    transform: none;
    filter: none;
  }

  .product-image img {
    transition: transform .28s ease;
    will-change: auto;
  }

  .product-card:hover .product-image img {
    transform: scale(1.025);
  }

  .quality-mark,
  .brand-pride-inner img,
  .honor-logo {
    filter: none !important;
  }

  .reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .42s ease, transform .42s ease;
  }

  .product-card.reveal,
  .category-rail.reveal,
  .catalog-pricing.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .product-rail {
    contain: layout paint;
    scroll-snap-type: x proximity;
  }

  .intro-card,
  .product-card,
  .standard-panel,
  .sales-card,
  .lead-form,
  .map-placeholder,
  .pickup-location-card {
    contain: layout paint style;
  }

  .btn,
  .catalog-arrow,
  .main-nav a,
  .pickup-production-mail,
  .contact-list a {
    transition-duration: .16s !important;
  }

  .btn:hover,
  .catalog-arrow:hover,
  .main-nav a:hover {
    transform: translateY(-1px);
  }

  .story::after,
  .sales-card::before,
  .pickup-location-card::before,
  .pickup-card-production::before,
  .pickup-card-production::after {
    opacity: .72;
  }
}


/* v34: telegram bot links */
.btn-telegram {
  background: linear-gradient(135deg, rgba(31, 154, 219, .92), rgba(224,119,47,.70));
  color: #fff;
  border: 1px solid rgba(246,239,228,.18);
  box-shadow: 0 16px 36px rgba(31,154,219,.16);
}
.btn-telegram:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(31,154,219,.24);
}
.telegram-site-box {
  width: min(100%, 620px);
  margin: 26px auto 18px;
  padding: 22px;
  display: grid;
  justify-items: center;
  gap: 10px;
  border-radius: 24px;
  border: 1px solid rgba(213,155,85,.22);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(31,154,219,.045));
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.telegram-site-box strong {
  color: var(--text);
  font-size: 22px;
  letter-spacing: -.03em;
}
.telegram-site-box span {
  max-width: 480px;
  color: var(--muted);
}
@media (max-width: 760px) {
  .btn-telegram { width: 100%; }
  .telegram-site-box { padding: 18px 14px; }
}
