:root {
  --bg: #050607;
  --bg-soft: #0b0d0f;
  --bg-card: #101316;
  --bg-card-2: #15191d;
  --surface: #f3eee4;
  --surface-2: #fffaf1;
  --text: #f7f4ed;
  --text-muted: #b9b7b1;
  --text-dark: #141414;
  --gold: #d5a94e;
  --gold-light: #f1cb75;
  --gold-dark: #8c6425;
  --line: rgba(213, 169, 78, .32);
  --line-soft: rgba(255,255,255,.1);
  --success: #58b87a;
  --danger: #e46a65;
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 60px rgba(0,0,0,.34);
  --container: min(1480px, calc(100% - 48px));
  --header-h: 78px;
  --heading: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.modal-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: #111; }

.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 9999;
  background: var(--gold); color: #111; padding: 12px 16px; border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 96px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-light { background: var(--surface); color: var(--text-dark); }
.section-cream { background: linear-gradient(135deg, #fffaf1 0%, #ece3d4 100%); color: var(--text-dark); }
.section-grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em;
  font-size: .78rem; font-weight: 800;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.display, h1, h2, h3, h4 {
  font-family: var(--heading); text-transform: uppercase; letter-spacing: -.025em;
  line-height: .96; margin: 0;
}
h1 { font-size: clamp(3.2rem, 7vw, 7.3rem); }
h2 { font-size: clamp(2.3rem, 4.8vw, 5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
h4 { font-size: 1.1rem; }
.gold { color: var(--gold); }
.muted { color: var(--text-muted); }
.lead { font-size: clamp(1.05rem, 1.3vw, 1.3rem); max-width: 720px; color: #d9d6ce; }
.section-light .lead, .section-cream .lead { color: #4b4944; }
.section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 28px; margin-bottom: 42px; }
.section-heading > * { min-width: 0; overflow-wrap: anywhere; }
.section-heading p { margin: 12px 0 0; max-width: 680px; color: var(--text-muted); }
.section-light .section-heading p, .section-cream .section-heading p { color: #55514a; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }

/* Header */
.site-header {
  position: fixed; z-index: 1000; inset: 0 0 auto;
  height: var(--header-h); border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled, .site-header.is-solid {
  background: rgba(4,5,6,.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-color: var(--line-soft); box-shadow: 0 10px 40px rgba(0,0,0,.22);
}
.header-inner { width: var(--container); height: 100%; margin-inline: auto; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; min-width: 130px; color: var(--gold-light); }
.brand-main { font-family: Georgia, "Times New Roman", serif; font-size: 2.5rem; letter-spacing: .12em; line-height: .8; }
.brand-sub { font-size: .58rem; letter-spacing: .46em; margin: 8px 0 0 .45em; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-link, .nav-button {
  display: inline-flex; align-items: center; gap: 6px; padding: 13px 13px;
  color: #f5f2eb; font-size: .79rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  background: transparent; border: 0; cursor: pointer;
}
.nav-link:hover, .nav-button:hover, .nav-link[aria-current="page"] { color: var(--gold-light); }
.nav-button::after { content: "⌄"; font-size: .8rem; color: var(--gold); transform: translateY(-1px); }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 280px;
  padding: 10px; background: rgba(10,12,14,.98); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: .2s ease;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: flex; align-items: center; justify-content: space-between; padding: 11px 12px; border-radius: 8px; font-size: .92rem; color: #e6e2da; }
.nav-dropdown a:hover { background: rgba(213,169,78,.1); color: var(--gold-light); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px; background: transparent; color: #f5f2eb;
  border: 0; padding: 10px 6px; cursor: pointer; font-size: .8rem; font-weight: 800;
}
.icon-button {
  width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center;
  border: 1px solid var(--line-soft); background: rgba(255,255,255,.03); cursor: pointer;
}
.menu-toggle { display: none; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 20px; height: 2px; background: #fff; display: block; transition: .2s ease; }
.menu-toggle span { margin: 5px 0; }
body.menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span { opacity: 0; }
body.menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 4px;
  border: 1px solid var(--gold); background: transparent; color: var(--text);
  font-size: .78rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(213,169,78,.16); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #111; border-color: transparent; }
.btn-gold:hover { background: linear-gradient(135deg, #f8da8e, #d9a94b); }
.btn-light { border-color: rgba(255,255,255,.32); }
.btn-dark { color: #111; border-color: #222; }
.btn-small { min-height: 40px; padding-inline: 16px; font-size: .72rem; }
.btn-link { display: inline-flex; gap: 8px; align-items: center; color: var(--gold-light); font-weight: 900; text-transform: uppercase; font-size: .75rem; letter-spacing: .06em; }
.btn-link::after { content: "→"; transition: transform .2s ease; }
.btn-link:hover::after { transform: translateX(4px); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero */
.hero {
  position: relative; min-height: min(880px, 100svh); display: grid; align-items: center;
  overflow: hidden; padding: calc(var(--header-h) + 64px) 0 52px;
  background: #050607;
}
.hero-media, .page-hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media::after, .page-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,4,5,.98) 0%, rgba(3,4,5,.78) 32%, rgba(3,4,5,.22) 68%, rgba(3,4,5,.62) 100%),
              linear-gradient(0deg, #050607 0%, transparent 28%, rgba(0,0,0,.16) 100%);
}
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(1.07) contrast(1.04); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 650px) 1fr; gap: 40px; align-items: center; }
.hero-copy { padding-top: 22px; }
.hero h1 span { display: block; }
.hero h1 .eyebrow { display: inline-flex; font-family: var(--body, inherit); font-size: .78rem; font-weight: 800; letter-spacing: .16em; line-height: 1.3; margin-bottom: 18px; }
.hero-media { background: url('../images/hero-bottles.webp') center / cover no-repeat; }
@media (max-width: 960px) { .hero-media { background-image: url('../images/hero-bottles-960.webp'); } }
.hero-copy .lead { margin: 26px 0 30px; max-width: 550px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.play-circle { width: 44px; height: 44px; border-radius: 50%; border: 1px solid currentColor; display: inline-grid; place-items: center; }
.hero-stats { position: relative; z-index: 3; margin-top: 60px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; max-width: 760px; }
.stat { padding: 0 26px; border-right: 1px solid var(--line); }
.stat:first-child { padding-left: 0; }
.stat:last-child { border: 0; }
.stat strong { display: block; font-family: var(--heading); color: var(--gold-light); font-size: 2rem; line-height: 1; }
.stat span { display: block; text-transform: uppercase; font-size: .68rem; letter-spacing: .06em; margin-top: 8px; color: #e7e2d9; }
.hero-scroll { position: absolute; z-index: 3; right: 40px; bottom: 28px; writing-mode: vertical-rl; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); }

/* Generic page hero */
.page-hero { min-height: 610px; position: relative; display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; overflow: hidden; padding: calc(var(--header-h) + 60px) 0 64px; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 2; min-width: 0; width: var(--container); margin-inline: auto; }
.page-hero-copy { min-width: 0; max-width: 690px; overflow-wrap: anywhere; }
.page-hero .lead { margin: 22px 0 28px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: #c7c2b8; font-size: .8rem; }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--gold-dark); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-badge { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(0,0,0,.28); font-size: .78rem; font-weight: 800; }

/* Cards and grids */
.card-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.product-worlds { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 14px; }
.world-card {
  min-height: 360px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-card); box-shadow: 0 10px 35px rgba(0,0,0,.2); isolation: isolate;
}
.world-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.world-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,5,6,.98), rgba(4,5,6,.14) 72%); z-index: 0; }
.world-card-content { position: absolute; z-index: 1; inset: auto 18px 18px; }
.world-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.world-card p { color: #d3cec4; font-size: .86rem; margin: 0 0 14px; }
.world-card:hover img { transform: scale(1.05); }

.solution-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.solution-card {
  position: relative; min-height: 310px; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); background: #0d1012;
}
.solution-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.solution-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,4,5,.96), rgba(3,4,5,.08)); }
.solution-card-content { position: absolute; z-index: 1; inset: auto 18px 18px; }
.solution-card h3 { font-size: 1.35rem; }
.solution-card p { margin: 8px 0 14px; color: #d9d5cc; font-size: .86rem; }

.feature-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(0,0,0,.08); border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); color: var(--text-dark); }
.feature-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 26px; border-right: 1px solid rgba(0,0,0,.08); }
.feature-item:last-child { border-right: 0; }
.feature-icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(140,100,37,.4); color: var(--gold-dark); font-size: 1.2rem; }
.feature-item strong { display: block; font-family: var(--heading); text-transform: uppercase; font-size: 1.08rem; }
.feature-item span { display: block; font-size: .85rem; color: #64605a; margin-top: 4px; }

.distributor-banner {
  display: grid; grid-template-columns: 1.1fr .9fr; min-height: 430px; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; background: #0c1012;
}
.distributor-banner-copy { padding: clamp(38px, 5vw, 72px); align-self: center; }
.distributor-banner-copy p { color: #cbc6bc; max-width: 610px; }
.distributor-banner-media { position: relative; min-height: 360px; }
.distributor-banner-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.distributor-banner-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #0c1012 0%, transparent 45%); }

/* Products */
.catalog-toolbar { display: grid; grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(150px, .7fr)) auto; gap: 12px; margin-bottom: 26px; }
.field, .select, .textarea {
  width: 100%; border: 1px solid var(--line-soft); background: #0b0e10; color: #fff;
  min-height: 50px; padding: 0 15px; border-radius: 8px; outline: none; transition: border .2s, box-shadow .2s;
}
.textarea { min-height: 145px; padding-top: 14px; resize: vertical; }
.field:focus, .select:focus, .textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,169,78,.12); }
.section-light .field, .section-light .select, .section-light .textarea,
.section-cream .field, .section-cream .select, .section-cream .textarea { background: #fff; color: #111; border-color: rgba(0,0,0,.16); }
.product-count { display: flex; align-items: center; justify-content: space-between; margin: 18px 0; color: var(--text-muted); font-size: .9rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
#product-grid { scroll-margin-top: calc(var(--header-h) + 16px); }
.product-card {
  display: flex; flex-direction: column; min-width: 0; overflow: hidden; border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft); background: var(--bg-card); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow); }
.product-card-media { aspect-ratio: 1 / .88; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 45%, #1b2124, #070809 70%); }
.product-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .4s ease; }
.product-card:hover .product-card-media img { transform: scale(1.04); }
.product-badge { position: absolute; top: 12px; left: 12px; padding: 7px 10px; border-radius: 999px; background: rgba(5,6,7,.8); border: 1px solid var(--line); backdrop-filter: blur(8px); color: var(--gold-light); font-size: .67rem; font-weight: 900; text-transform: uppercase; }
.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-category { color: var(--gold); font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.product-card h3 { font-size: 1.35rem; margin: 8px 0 10px; }
.product-card p { color: var(--text-muted); font-size: .87rem; margin: 0 0 16px; }
.product-metrics { display: grid; grid-template-columns: repeat(var(--metric-count, 3), minmax(0, 1fr)); gap: 8px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.product-metric strong { display: block; font-family: var(--heading); color: var(--gold-light); font-size: 1.15rem; }
.product-metric span { display: block; color: #8e8e8b; font-size: .62rem; text-transform: uppercase; }
.product-card-footer { padding: 0 18px 18px; display: flex; justify-content: space-between; align-items: center; }
.empty-state { grid-column: 1 / -1; padding: 70px 20px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--text-muted); }

/* Product detail */
.product-detail-hero { padding: calc(var(--header-h) + 36px) 0 70px; background: linear-gradient(135deg, #f9f4e9, #e9dfcf); color: #111; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; }
.product-stage { position: relative; min-height: 620px; border-radius: var(--radius); overflow: hidden; background: radial-gradient(circle at 50% 40%, #fff, #e8dfd0 70%); }
.product-stage::before { content: ""; position: absolute; inset: 9% 7%; border: 1px solid rgba(213,169,78,.4); border-radius: 50%; }
.product-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 28px; }
.product-info .eyebrow { color: #72501d; }
.product-info h1 { font-size: clamp(2.3rem, 5vw, 4.4rem); margin: 12px 0; overflow-wrap: anywhere; hyphens: auto; }
.product-info .lead { color: #4e4941; margin: 18px 0 26px; }
.detail-metrics { display: grid; grid-template-columns: repeat(var(--metric-count, 3), minmax(0, 1fr)); border-block: 1px solid rgba(0,0,0,.12); margin: 28px 0; }
.detail-metric { padding: 22px 12px; border-right: 1px solid rgba(0,0,0,.12); }
.detail-metric:last-child { border: 0; }
.detail-metric strong { display: block; font-family: var(--heading); font-size: 2rem; color: #8d6424; }
.detail-metric span { display: block; font-size: .7rem; text-transform: uppercase; color: #615b52; }
.format-chips { display: flex; gap: 8px; margin: 16px 0 26px; }
.chip { display: inline-flex; align-items: center; padding: 8px 12px; border: 1px solid rgba(0,0,0,.18); border-radius: 999px; font-size: .75rem; font-weight: 800; }
.application-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.application-card { border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 24px; background: var(--bg-card); }
.application-card .icon { font-size: 1.8rem; color: var(--gold); }
.application-card h3 { font-size: 1.25rem; margin: 14px 0 8px; }
.application-card p { color: var(--text-muted); font-size: .87rem; }
.recipe-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.recipe-card { background: var(--bg-card); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); overflow: hidden; }
.recipe-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.recipe-card-body { padding: 17px; }
.recipe-card h3 { font-size: 1.25rem; }
.recipe-card p { color: var(--text-muted); font-size: .86rem; margin: 8px 0 14px; }
.download-list { display: grid; gap: 10px; }
.download-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; padding: 16px; border: 1px solid var(--line-soft); border-radius: 10px; background: rgba(255,255,255,.025); }
.download-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: rgba(213,169,78,.12); color: var(--gold-light); font-weight: 900; }
.download-list { min-width: 0; }
.split > * { min-width: 0; overflow-wrap: anywhere; }
.split .btn { max-width: 100%; white-space: normal; text-align: center; }
.download-item > * { min-width: 0; overflow-wrap: anywhere; }
@media (max-width: 600px) {
  .download-item { grid-template-columns: 44px minmax(0, 1fr); gap: 10px; padding: 14px; }
  .download-item > .btn-link { grid-column: 2; justify-self: start; max-width: 100%; white-space: normal; }
}
.download-item strong { display: block; }
.download-item small { display: block; color: var(--text-muted); }

/* Split and feature layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; min-height: 460px; position: relative; border: 1px solid var(--line); }
.split-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.split-copy p { color: var(--text-muted); }
.section-light .split-copy p, .section-cream .split-copy p { color: #57534d; }
.check-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.check-list li::before { content: "✓"; width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(213,169,78,.15); color: var(--gold-light); font-weight: 900; }
.section-light .check-list li::before, .section-cream .check-list li::before { color: #76531c; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.process-step { padding: 28px 20px; border: 1px solid var(--line-soft); border-radius: var(--radius-sm); background: var(--bg-card); position: relative; }
.process-number { font-family: var(--heading); color: var(--gold); font-size: 2rem; }
.process-step h3 { font-size: 1.25rem; margin: 16px 0 10px; }
.process-step p { color: var(--text-muted); font-size: .86rem; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.timeline-item { border-top: 2px solid var(--gold-dark); padding-top: 22px; }
.timeline-item strong { display: block; font-family: var(--heading); color: var(--gold); font-size: 1.8rem; }
.timeline-item p { color: var(--text-muted); }

/* Forms */
.form-card { background: var(--surface-2); color: #111; border-radius: var(--radius); padding: clamp(26px, 4vw, 48px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-group { display: grid; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; }
.form-help { color: #6f6b65; font-size: .78rem; }
.form-card .field, .form-card .select, .form-card .textarea { background: #fff; color: #111; border-color: rgba(0,0,0,.16); }
.form-status { min-height: 24px; margin-top: 12px; font-size: .9rem; }
.form-status.success { color: #24753e; }
.form-status.error { color: #b33b36; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-panel { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); }
.contact-list { display: grid; gap: 18px; margin-top: 30px; }
.contact-row { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; align-items: start; }
.contact-details { display: grid; gap: 6px; min-width: 0; }
.contact-values { display: grid; gap: 6px; }
.contact-details a { overflow-wrap: anywhere; }
.contact-row .icon { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold-light); }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line-soft); border-radius: 10px; overflow: hidden; background: var(--bg-card); }
.faq-button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 20px; background: transparent; border: 0; cursor: pointer; text-align: left; font-weight: 800; }
.faq-button::after { content: "+"; color: var(--gold); font-size: 1.4rem; }
.faq-item.open .faq-button::after { content: "−"; }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-panel > div { overflow: hidden; }
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-panel p { margin: 0; padding: 0 20px 20px; color: var(--text-muted); }

/* Recipes */
.recipe-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter-pill { padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line-soft); background: transparent; color: #fff; cursor: pointer; font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.filter-pill.active, .filter-pill:hover { background: var(--gold); color: #111; border-color: var(--gold); }

/* Footer */
.site-footer { border-top: 1px solid var(--line-soft); background: #050607; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr repeat(4, 1fr) 1.25fr; gap: 34px; }
.footer-brand p { color: var(--text-muted); max-width: 260px; font-size: .9rem; }
.footer-column h4 { color: var(--gold); margin-bottom: 16px; font-size: .9rem; letter-spacing: .08em; }
.footer-column a { display: block; color: #c8c5be; font-size: .86rem; padding: 3px 0; }
.footer-column a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 9px; margin-top: 20px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-light); font-size: .75rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 28px; margin-top: 34px; border-top: 1px solid var(--line-soft); color: #888984; font-size: .75rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* Modal, cookie, age gate */
.modal { position: fixed; inset: 0; z-index: 2100; display: none; place-items: center; padding: 20px; background: rgba(0,0,0,.82); backdrop-filter: blur(12px); }
.modal.open { display: grid; }
.modal-dialog { width: min(100%, 1020px); max-height: 92vh; overflow: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #0b0e10; box-shadow: 0 30px 100px rgba(0,0,0,.55); position: relative; }
.modal-close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-soft); background: rgba(0,0,0,.65); color: #fff; cursor: pointer; }
.video-frame { aspect-ratio: 16 / 9; background: #000; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.recipe-modal-content { padding: 40px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; }
.recipe-modal-content img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); min-height: 360px; }
.recipe-modal-content ul, .recipe-modal-content ol { color: var(--text-muted); }
.cookie-banner { position: fixed; z-index: 1900; left: 18px; bottom: 18px; width: min(440px, calc(100% - 36px)); padding: 20px; background: rgba(13,16,18,.98); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); display: none; }
.cookie-banner.show { display: block; }
.cookie-banner p { margin: 0 0 14px; color: #d3cfc7; font-size: .86rem; }
html.no-js:not(.age-verified-server),
html.no-js:not(.age-verified-server) body,
html.age-check-required,
html.age-check-required body,
body.age-gate-open { overflow: hidden; overscroll-behavior: none; }
html.no-js:not(.age-verified-server) body > :not(.age-gate) { visibility: hidden !important; pointer-events: none !important; }
html.no-js:not(.age-verified-server) .age-gate,
html.no-js:not(.age-verified-server) .age-gate * { visibility: visible; }
.age-gate {
  position: fixed; inset: 0; z-index: 5000; display: grid; place-items: center; padding: clamp(16px, 4vw, 40px);
  visibility: hidden; opacity: 0; pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(193, 143, 48, .24), transparent 36%),
    linear-gradient(135deg, rgba(2, 3, 3, .97), rgba(9, 8, 5, .96));
  backdrop-filter: blur(18px) saturate(.75); -webkit-backdrop-filter: blur(18px) saturate(.75);
  transition: opacity .24s ease, visibility .24s ease;
}
html.no-js:not(.age-verified-server) .age-gate,
html.age-check-required .age-gate,
.age-gate.show { visibility: visible; opacity: 1; pointer-events: auto; }
.age-card {
  position: relative; isolation: isolate; width: min(590px, 100%); overflow: hidden; text-align: center;
  padding: clamp(34px, 6vw, 58px) clamp(24px, 6vw, 52px) clamp(28px, 5vw, 44px);
  border: 1px solid rgba(210, 165, 79, .48); border-radius: 24px;
  background: linear-gradient(150deg, rgba(18, 19, 18, .98), rgba(5, 6, 6, .98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .58), inset 0 1px 0 rgba(255, 255, 255, .05);
}
.age-card::before {
  content: ''; position: absolute; z-index: -1; width: 320px; height: 320px; border-radius: 50%;
  top: -230px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 164, 72, .38), transparent 68%);
}
.age-card .brand { margin: 0 auto 24px; }
.age-mark {
  display: grid; place-items: center; width: 76px; height: 76px; margin: 0 auto 24px;
  border: 1px solid rgba(224, 181, 98, .78); border-radius: 50%; color: var(--gold);
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; letter-spacing: .02em;
  box-shadow: inset 0 0 22px rgba(201, 151, 55, .12), 0 0 36px rgba(201, 151, 55, .1);
}
.age-card h2 { max-width: 470px; margin: 0 auto 16px; font-size: clamp(2rem, 6vw, 3.35rem); line-height: 1.02; text-transform: none; letter-spacing: -.025em; }
.age-card > p { max-width: 430px; margin: 0 auto; color: var(--text-muted); font-size: 1.02rem; }
.age-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.age-actions .btn { min-height: 52px; justify-content: center; }
.age-remember { margin-top: 18px !important; color: #8f9290 !important; font-size: .78rem !important; letter-spacing: .02em; }
@media (max-width: 560px) {
  .age-gate { align-items: center; }
  .age-card { border-radius: 20px; }
  .age-actions { grid-template-columns: 1fr; }
  .age-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .age-gate { transition: none; }
}
.back-to-top { position: fixed; z-index: 900; right: 20px; bottom: 20px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: rgba(5,6,7,.86); color: var(--gold-light); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; cursor: pointer; }
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line-soft); border-radius: var(--radius-sm); }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); }
th { color: var(--gold-light); text-transform: uppercase; font-size: .72rem; letter-spacing: .05em; background: rgba(213,169,78,.06); }
td { color: #d8d4cc; font-size: .9rem; }
tr:last-child td { border-bottom: 0; }

/* Utility */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 14px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.panel { padding: 28px; border: 1px solid var(--line-soft); border-radius: var(--radius-sm); background: var(--bg-card); }
.panel p { color: var(--text-muted); }
.icon-card { padding: 26px; border: 1px solid var(--line-soft); border-radius: var(--radius-sm); background: var(--bg-card); }
.icon-card .icon { font-size: 2rem; color: var(--gold); }
.icon-card h3 { margin: 16px 0 10px; font-size: 1.3rem; }
.icon-card p { color: var(--text-muted); margin-bottom: 0; font-size: .88rem; }
.notice { padding: 18px 20px; border-left: 3px solid var(--gold); background: rgba(213,169,78,.08); color: #d8d4cc; }
.legal-copy { max-width: 900px; }
.legal-copy h2 { font-size: 2rem; margin: 38px 0 14px; }
.legal-copy h3 { margin: 26px 0 10px; font-size: 1.4rem; }
.legal-copy p, .legal-copy li { color: #c8c5be; }

/* Responsive */
@media (max-width: 1240px) {
  :root { --container: min(1180px, calc(100% - 36px)); }
  .primary-nav { display: none; position: fixed; inset: var(--header-h) 0 0; background: rgba(4,5,6,.98); padding: 26px 22px 80px; overflow-y: auto; }
  body.menu-open .primary-nav { display: block; }
  .nav-item { border-bottom: 1px solid var(--line-soft); }
  .nav-link, .nav-button { width: 100%; justify-content: space-between; padding: 18px 4px; font-size: .95rem; }
  .nav-dropdown { position: static; display: none; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 10px 12px; background: transparent; min-width: 0; }
  .nav-item.open .nav-dropdown { display: block; }
  .menu-toggle { display: block; }
  .header-actions .btn { display: none; }
  .product-worlds { grid-template-columns: repeat(4, 1fr); }
  .solution-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); }
  .footer-column:nth-of-type(5), .footer-column:nth-of-type(6) { margin-top: 10px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .recipe-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; --container: min(100% - 28px, 840px); }
  .brand { min-width: 106px; }
  .brand-main { font-size: 2rem; }
  .brand-sub { font-size: .5rem; }
  .hero { min-height: 790px; padding-top: calc(var(--header-h) + 50px); }
  .hero-media::after { background: linear-gradient(0deg, #050607 0%, rgba(3,4,5,.52) 58%, rgba(3,4,5,.86) 100%); }
  .hero-video { object-position: 62% center; opacity: .72; }
  .hero-content { width: 100%; max-width: 100%; min-width: 0; grid-template-columns: minmax(0, 1fr); }
  .hero-copy { width: 100%; max-width: 100%; min-width: 0; }
  .hero-copy h1 { max-width: 100%; overflow-wrap: anywhere; }
  .hero-copy { align-self: end; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px 0; margin-top: 44px; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(3) { padding-left: 0; }
  .section { padding: 72px 0; }
  .section-heading { grid-template-columns: 1fr; }
  .product-worlds { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: 0; }
  .feature-item:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,.08); }
  .distributor-banner, .split, .contact-layout, .product-detail-grid { grid-template-columns: 1fr; }
  .distributor-banner-media { order: -1; min-height: 280px; }
  .product-detail-grid { gap: 30px; }
  .product-stage { min-height: 500px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-toolbar { grid-template-columns: 1fr 1fr; }
  .catalog-toolbar .search-field { grid-column: 1 / -1; }
  .application-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-modal-content { grid-template-columns: 1fr; }
  .page-hero { min-height: 560px; }
}

@media (max-width: 600px) {
  :root { --container: min(100% - 22px, 560px); }
  body { font-size: 15px; }
  .header-inner { gap: 10px; }
  .header-actions { margin-left: auto; gap: 5px; }
  .lang-switch { padding-inline: 4px; }
  .hero { min-height: 760px; padding-bottom: 34px; }
  .hero h1 { max-width: 100%; font-size: clamp(2.85rem, 13.25vw, 5rem); line-height: .94; overflow-wrap: anywhere; }
  .hero-copy .lead { font-size: 1rem; }
  .hero-actions { width: 100%; max-width: 100%; }
  .hero-actions .btn { width: 100%; max-width: 100%; white-space: normal; text-align: center; }
  .hero-stats { width: 100%; max-width: 100%; min-width: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 0; }
  .stat { padding: 0 16px; }
  .stat strong { font-size: 1.6rem; }
  .hero-scroll { display: none; }
  .section { padding: 58px 0; }
  .section-tight { padding: 44px 0; }
  .section-heading { margin-bottom: 28px; }
  .product-worlds, .solution-grid, .product-grid, .recipe-grid, .application-grid, .grid-2, .grid-3, .grid-4, .process-grid, .timeline { grid-template-columns: 1fr; }
  .world-card { min-height: 300px; }
  .solution-card { min-height: 280px; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.08); }
  .feature-item:last-child { border-bottom: 0; }
  .distributor-banner-copy { padding: 30px 22px; }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .catalog-toolbar .search-field { grid-column: auto; }
  .product-card-media { aspect-ratio: 1 / .82; }
  .product-detail-hero { padding-top: calc(var(--header-h) + 24px); }
  .product-info h1 { font-size: clamp(2.1rem, 9vw, 3.2rem); }
  .product-stage { min-height: 410px; }
  .detail-metrics { grid-template-columns: 1fr; }
  .detail-metric { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.12); }
  .detail-metric:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .form-card { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { min-height: 520px; padding-top: calc(var(--header-h) + 34px); }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .recipe-modal-content { padding: 26px 18px; }
  .recipe-modal-content img { min-height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-video { display: none; }
}

/* Multi-language and external brand links */
.language-picker{position:relative;display:inline-flex;align-items:center}.language-menu{position:absolute;top:calc(100% + 12px);right:0;z-index:1200;min-width:190px;padding:8px;background:rgba(7,9,10,.98);border:1px solid rgba(202,154,69,.45);border-radius:12px;box-shadow:0 22px 55px rgba(0,0,0,.45);opacity:0;visibility:hidden;transform:translateY(-8px);transition:.2s ease}.language-picker.open .language-menu{opacity:1;visibility:visible;transform:translateY(0)}.language-menu button{display:grid;grid-template-columns:42px 1fr;align-items:center;width:100%;gap:10px;padding:10px 12px;border:0;border-radius:8px;background:transparent;color:#fff;text-align:left;cursor:pointer;font:inherit}.language-menu button:hover,.language-menu button[aria-selected="true"]{background:rgba(202,154,69,.15);color:#e0b45d}.language-menu button strong{color:#d7a94e;letter-spacing:.08em}.language-menu button span{font-size:.86rem;color:#e7e1d5}.footer-subheading{display:block;margin-top:14px;color:#cba055;font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase}.nav-dropdown a[data-external-site]{border-top:1px solid rgba(255,255,255,.06)}
@media(max-width:1240px){.language-menu{position:fixed;top:72px;right:18px;left:18px;min-width:0}.language-menu button{padding:13px 14px}}

#downloads, #retail-downloads, #cocktail-brochures { scroll-margin-top: var(--header-h); }

/* Keep document metadata and download actions legible on pale sections. */
.section-light .download-item, .section-cream .download-item { background: rgba(255,255,255,.65); border-color: rgba(0,0,0,.12); color: #151515; }
.section-light .download-item small, .section-cream .download-item small { color: #5e5950; }
.section-light .download-item .btn-link, .section-cream .download-item .btn-link,
.section-light .download-item .download-icon, .section-cream .download-item .download-icon { color: #775416; }
.section-light .download-item:hover, .section-cream .download-item:hover { border-color: #b18b3d; }

.product-photo-pending { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 16px; padding: 24px; text-align: center; color: #c5b899; }
.product-photo-pending svg { width: 80px; height: 80px; fill: none; stroke: currentColor; stroke-width: 2; }
.product-photo-pending span { font-size: .9rem; line-height: 1.5; }
.product-stage .product-photo-pending { color: #6c614c; }
.world-card-original { background: radial-gradient(circle at 50% 25%, #27332d, #090c0b 75%); }
.world-card-original img { object-fit: contain; padding: 18px 15px 120px; }

/* Expanded product menu stays reachable on short screens. */
@media (min-width: 1241px) {
  .nav-dropdown { max-height: calc(100dvh - var(--header-h) - 24px); overflow-y: auto; overscroll-behavior: contain; }
}
.nav-dropdown a { gap: 12px; }
.nav-dropdown a span:first-child { min-width: 0; overflow-wrap: anywhere; }
