:root {
  --page: #050505;
  --ink: #0d0d0d;
  --surface: #141414;
  --surface-2: #1d1d1d;
  --surface-3: #25211a;
  --text: #f8f3e9;
  --muted: #c8bda8;
  --soft: #8e8575;
  --line: rgba(255, 255, 255, .14);
  --strong-line: rgba(224, 182, 67, .48);
  --gold: #dfb84d;
  --gold-2: #f2d273;
  --ember: #c44435;
  --teal: #3bb4a5;
  --smoke: rgba(255, 255, 255, .08);
  --shadow: 0 28px 70px rgba(0, 0, 0, .54);
  --hero-min-height: 760px;
  --hero-padding: 104px 0 78px;
  --hero-mobile-min-height: 670px;
  --hero-mobile-padding: 70px 0 46px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(18, 15, 11, .85), rgba(5, 5, 5, 1) 36rem),
    var(--page);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body[data-lang="ru"] .en,
body[data-lang="en"] .ru { display: none !important; }

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 78px;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: min(560px, 48vw);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--strong-line);
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.brand > span {
  min-width: 0;
}

.brand > span > span {
  max-width: 470px;
  white-space: normal;
  line-height: 1.25;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #f4ead9;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  color: #f4ead9;
  opacity: .88;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
  color: var(--gold-2);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: 88px;
  height: 38px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.lang-switch button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

body[data-lang="ru"] .lang-switch [data-set-lang="ru"],
body[data-lang="en"] .lang-switch [data-set-lang="en"] {
  background: var(--gold);
  color: #111;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: #101010;
}

.button.secondary {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

.button.ghost {
  border-color: var(--strong-line);
  background: rgba(223, 184, 77, .08);
  color: var(--gold-2);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  color: var(--text);
  cursor: pointer;
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 12px auto 12px;
  z-index: 29;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 10, 10, .96);
  box-shadow: var(--shadow);
}

.mobile-menu.is-open { display: grid; }

.mobile-menu a {
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: var(--hero-min-height);
  display: grid;
  align-items: end;
  padding: var(--hero-padding);
  isolation: isolate;
  border-bottom: 1px solid rgba(224, 182, 67, .28);
  background:
    linear-gradient(180deg, #070707 0%, #050505 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .78) 0%, rgba(5, 5, 5, .48) 38%, rgba(5, 5, 5, .12) 68%, rgba(5, 5, 5, .58) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, .04) 0%, rgba(5, 5, 5, .14) 58%, rgba(5, 5, 5, .70) 100%),
    url("../img/brand/hero-smoke-1600.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, cover;
  background-position: center, center, 58% 22%;
  opacity: 1;
}

@media (min-width: 1800px) {
  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(5, 5, 5, .78) 0%, rgba(5, 5, 5, .48) 38%, rgba(5, 5, 5, .12) 68%, rgba(5, 5, 5, .58) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, .04) 0%, rgba(5, 5, 5, .14) 58%, rgba(5, 5, 5, .70) 100%),
      url("../img/brand/hero-smoke.jpg");
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, .20) 100%);
}

.hero-grid {
  display: grid;
  width: min(1680px, calc(100% - 56px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 720px) minmax(300px, 360px);
  justify-content: space-between;
  gap: clamp(36px, 8vw, 130px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: 56px;
  line-height: 1.02;
}

.hero .lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #efe6d6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  align-self: end;
  justify-self: end;
  width: min(100%, 340px);
  margin: 0;
  padding: 22px;
  border: 1px solid var(--strong-line);
  border-radius: 8px;
  background: rgba(8, 8, 8, .62);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  transform: translate(clamp(44px, 6vw, 118px), 34px);
}

.hero-panel h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.service-points {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  color: #eee5d6;
  font-size: 14px;
  line-height: 1.35;
}

.service-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(223, 184, 77, .16);
}

.announcement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090909;
  overflow: hidden;
}

.announcement-track {
  display: inline-flex;
  width: max-content;
  padding-left: 100%;
  will-change: transform;
  animation: ticker 24s linear infinite;
}

.announcement:hover .announcement-track {
  animation-play-state: paused;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding-right: 0;
  color: #f3eadc;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.announcement-item strong {
  color: var(--gold-2);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: #0b0b0b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2,
.catalog-hero h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}

.section-header p,
.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: center;
}

.text-block {
  display: grid;
  gap: 18px;
}

.text-block p {
  margin: 0;
  color: #eee6d8;
  font-size: 17px;
  line-height: 1.72;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.feature {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature b {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 15px;
}

.feature span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.image-slab {
  position: relative;
  min-height: 490px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.image-slab img {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
}

.image-slab .caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(5, 5, 5, .72);
  color: #f6eddc;
  font-size: 14px;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.product-card,
.contact-card,
.catalog-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-card {
  min-height: 280px;
  padding: 24px;
}

.service-card .number {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin: 16px 0 10px;
  font-size: 23px;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-preview {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.catalog-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(223, 184, 77, .12), transparent),
    var(--surface-3);
}

.catalog-card h2 {
  margin-top: 0;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.metric {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(0, 0, 0, .24);
}

.metric strong {
  display: block;
  color: var(--gold-2);
  font-size: 24px;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-card {
  overflow: hidden;
  background: #111;
  display: flex;
  flex-direction: column;
  content-visibility: auto;
  contain-intrinsic-size: 430px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #050505;
}

.product-body {
  display: grid;
  gap: 12px;
  min-height: 230px;
  padding: 15px;
  align-content: start;
}

.product-body h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.28;
}

.product-desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.flavour-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(224, 184, 77, .24);
  border-radius: 8px;
  background: rgba(223, 184, 77, .07);
}

.flavour-box span {
  display: grid;
  gap: 3px;
  min-width: 0;
  color: #f8f1df;
  font-size: 12px;
  line-height: 1.2;
}

.flavour-box b {
  color: var(--gold-2);
  font-size: 10px;
  text-transform: uppercase;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-stack {
  display: grid;
  gap: 18px;
}

.gallery-stack img {
  min-height: 171px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--strong-line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(196, 68, 53, .14), transparent 56%),
    #0b0b0b;
}

.contact-band h2 {
  margin: 0 0 12px;
}

.contact-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.contact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-row span:first-child {
  color: var(--soft);
  font-weight: 700;
}

.footer {
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(223, 184, 77, .04), transparent 38%),
    #070707;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(150px, .55fr) minmax(230px, .85fr) minmax(240px, .8fr);
  gap: 34px;
  align-items: start;
}

.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid var(--strong-line);
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.footer-brand p {
  max-width: 430px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer-copy {
  flex: 0 0 auto;
  color: var(--soft);
  font-weight: 800;
  white-space: nowrap;
}

.footer-nav,
.footer-seo,
.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-nav a,
.footer-seo a,
.footer-contact a,
.footer-contact span {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.footer-seo strong {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-seo a:hover,
.footer-seo a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: var(--soft);
}

.bottom-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, .92);
  backdrop-filter: blur(16px);
}

.catalog-hero {
  position: relative;
  isolation: isolate;
  min-height: var(--hero-min-height);
  display: grid;
  align-items: end;
  padding: var(--hero-padding);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .82) 0%, rgba(5, 5, 5, .52) 34%, rgba(5, 5, 5, .16) 70%, rgba(5, 5, 5, .32) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, .04) 0%, rgba(5, 5, 5, .10) 56%, rgba(5, 5, 5, .62) 100%),
    url("../img/brand/flavour-strip.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, cover;
  background-position: center, center, center bottom;
  border-bottom: 1px solid var(--line);
}

.catalog-hero .container {
  width: min(1680px, calc(100% - 56px));
}

.catalog-hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: 56px;
  line-height: 1.02;
}

.catalog-hero p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #efe6d6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .72);
}

.catalog-tools {
  position: sticky;
  top: 72px;
  z-index: 20;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, .92);
  backdrop-filter: blur(14px);
}

.tool-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(4, minmax(150px, 180px));
  gap: 12px;
}

.search-input,
.filter-select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  padding: 0 13px;
}

.filter-select option {
  background: #111;
  color: #fff;
}

.catalog-main {
  padding: 46px 0 92px;
}

.catalog-count {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.catalog-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.load-more[hidden] {
  display: none;
}

.empty-state {
  display: none;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface);
}

body.catalog-empty .empty-state { display: block; }

.landing-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: 96px 0 74px;
  isolation: isolate;
  border-bottom: 1px solid rgba(224, 182, 67, .28);
  background: #060606;
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .86) 0%, rgba(5, 5, 5, .58) 44%, rgba(5, 5, 5, .22) 72%, rgba(5, 5, 5, .70) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, .04) 0%, rgba(5, 5, 5, .22) 58%, rgba(5, 5, 5, .78) 100%),
    url("../img/brand/hero-smoke-1600.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, cover;
  background-position: center, center, center center;
}

.landing-hero.flavour::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .86) 0%, rgba(5, 5, 5, .54) 40%, rgba(5, 5, 5, .20) 72%, rgba(5, 5, 5, .64) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, .06) 0%, rgba(5, 5, 5, .18) 54%, rgba(5, 5, 5, .72) 100%),
    url("../img/brand/flavour-strip.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, cover;
  background-position: center, center, center bottom;
}

.landing-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--gold-2);
}

.landing-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 58px;
  line-height: 1.04;
}

.landing-hero .lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: #f0e8d9;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .72);
}

.landing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr);
  gap: 48px;
  align-items: start;
}

.landing-copy {
  display: grid;
  gap: 20px;
}

.landing-copy h2 {
  margin: 0;
  color: #fff;
  font-size: 38px;
  line-height: 1.12;
}

.landing-copy p,
.landing-list li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.landing-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-list li {
  position: relative;
  padding-left: 28px;
}

.landing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(223, 184, 77, .18);
}

.seo-card {
  padding: 26px;
  border: 1px solid rgba(224, 182, 67, .34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    rgba(14, 14, 14, .92);
}

.seo-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
}

.seo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intent-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.intent-card span {
  color: var(--teal);
  font-weight: 900;
}

.intent-card h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: 24px;
}

.intent-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.keyword-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.keyword-links a:hover,
.keyword-links a:focus-visible {
  color: var(--gold-2);
  border-color: var(--strong-line);
}

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .mobile-menu-button { display: inline-grid; }
  .hero-grid,
  .split,
  .catalog-preview,
  .contact-band,
  .landing-layout {
    grid-template-columns: 1fr;
  }
  .hero-panel { max-width: 520px; }
  .hero-panel {
    align-self: auto;
    margin: 0;
    transform: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-list,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-grid,
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tool-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .topbar {
    min-height: 66px;
    padding: 10px 14px;
  }
  .top-actions .button {
    display: none;
  }
  .brand {
    max-width: calc(100% - 106px);
  }
  .brand strong {
    font-size: 16px;
  }
  .brand > span > span {
    max-width: 270px;
    font-size: 10px;
    line-height: 1.2;
  }
  .hero {
    min-height: var(--hero-mobile-min-height);
    padding: var(--hero-mobile-padding);
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, .10) 0%, rgba(5, 5, 5, .46) 54%, rgba(5, 5, 5, .82) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, .76), rgba(5, 5, 5, .20), rgba(5, 5, 5, .72)),
      url("../img/brand/hero-smoke-900.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%, cover;
    background-position: center, center, 62% 20%;
  }
  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }
  .hero .lead {
    font-size: 17px;
  }
  .hero-panel {
    padding: 18px;
  }
  .announcement-item {
    min-height: 54px;
    padding-right: 0;
    font-size: 13px;
  }
  .section {
    padding: 62px 0;
  }
  .section h2 {
    font-size: 31px;
  }
  .catalog-hero {
    min-height: var(--hero-mobile-min-height);
    align-items: end;
    padding: var(--hero-mobile-padding);
    background:
      linear-gradient(180deg, rgba(5, 5, 5, .08) 0%, rgba(5, 5, 5, .36) 48%, rgba(5, 5, 5, .82) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, .72), rgba(5, 5, 5, .22), rgba(5, 5, 5, .44)),
      url("../img/brand/flavour-strip.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%, cover;
    background-position: center, center, center bottom;
  }
  .catalog-hero .container {
    width: min(100% - 28px, 1180px);
  }
  .catalog-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }
  .catalog-hero p {
    font-size: 17px;
  }
  .section-header p,
  .section-copy,
  .text-block p {
    font-size: 16px;
  }
  .feature-list,
  .service-grid,
  .intent-grid,
  .product-grid,
  .catalog-grid,
  .gallery,
  .tool-row {
    grid-template-columns: 1fr;
  }
  .image-slab,
  .image-slab img {
    min-height: 340px;
  }
  .service-card {
    min-height: auto;
  }
  .catalog-card,
  .contact-band {
    padding: 20px;
  }
  .gallery img,
  .gallery-stack img {
    min-height: 240px;
  }
  .footer-grid,
  .footer-bottom,
  .footer-simple {
    display: grid;
    grid-template-columns: 1fr;
  }
  .footer-copy {
    white-space: normal;
  }
  .landing-hero {
    min-height: var(--hero-mobile-min-height);
    padding: var(--hero-mobile-padding);
  }
  .landing-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }
  .landing-hero .lead,
  .landing-copy p,
  .landing-list li {
    font-size: 16px;
  }
  .landing-copy h2 {
    font-size: 31px;
  }
  .bottom-actions {
    display: grid;
  }
  .catalog-tools {
    top: 66px;
  }
}

@media (max-width: 460px) {
  .flavour-box {
    grid-template-columns: 1fr;
  }
}

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