/* ==========================================================================
   GoldenComb — bulk honey export
   Shared stylesheet. No build step, no external assets.
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

/* --- Tokens --------------------------------------------------------------- */
:root {
  --honey-50:  #fdf8ee;
  --honey-100: #faeed6;
  --honey-200: #f3dba8;
  --honey-300: #e9c273;
  --honey-400: #dda52b;
  --honey-500: #c1861a;
  --honey-600: #9c6812;
  --honey-700: #714a0d;

  --ink:       #1b1611;
  --ink-2:     #4d4238;
  --ink-3:     #7b6e60;

  --paper:     #ffffff;
  --surface:   #fbf7f0;
  --surface-2: #f5eee2;
  --deep:      #201a13;
  --deep-2:    #2e2519;

  --line:      #e7ddcb;
  --line-2:    #d6c9b1;

  --ff-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --ff-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ff-mono: "SFMono-Regular", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --wrap: 1180px;
  --r: 14px;
  --r-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(32, 26, 19, .05), 0 2px 8px rgba(32, 26, 19, .04);
  --shadow: 0 2px 4px rgba(32, 26, 19, .05), 0 12px 32px -8px rgba(32, 26, 19, .12);
  --shadow-lg: 0 4px 8px rgba(32, 26, 19, .06), 0 28px 60px -18px rgba(32, 26, 19, .22);

  --header-h: 74px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --honey-50:  #241c11;
    --honey-100: #32270f;
    --honey-200: #4a3813;
    --honey-300: #8a6417;
    --honey-400: #e0ac3c;
    --honey-500: #eabc59;
    --honey-600: #f2cf82;
    --honey-700: #f7e2b0;

    --ink:       #f6efe3;
    --ink-2:     #cdbfa9;
    --ink-3:     #9c8d78;

    --paper:     #191410;
    --surface:   #14100c;
    --surface-2: #211a13;
    --deep:      #0e0b08;
    --deep-2:    #1a140e;

    --line:      #33291d;
    --line-2:    #453728;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow: 0 2px 4px rgba(0, 0, 0, .3), 0 12px 32px -8px rgba(0, 0, 0, .55);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, .35), 0 28px 60px -18px rgba(0, 0, 0, .7);
  }
}

:root[data-theme="dark"] {
  --honey-50:  #241c11;
  --honey-100: #32270f;
  --honey-200: #4a3813;
  --honey-300: #8a6417;
  --honey-400: #e0ac3c;
  --honey-500: #eabc59;
  --honey-600: #f2cf82;
  --honey-700: #f7e2b0;

  --ink:       #f6efe3;
  --ink-2:     #cdbfa9;
  --ink-3:     #9c8d78;

  --paper:     #191410;
  --surface:   #14100c;
  --surface-2: #211a13;
  --deep:      #0e0b08;
  --deep-2:    #1a140e;

  --line:      #33291d;
  --line-2:    #453728;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow: 0 2px 4px rgba(0, 0, 0, .3), 0 12px 32px -8px rgba(0, 0, 0, .55);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, .35), 0 28px 60px -18px rgba(0, 0, 0, .7);
}

/* --- Base ----------------------------------------------------------------- */
body {
  font-family: var(--ff-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--ink);
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); letter-spacing: -.01em; }
h4 { font-size: 1.05rem; letter-spacing: 0; }

p { text-wrap: pretty; }
strong { color: var(--ink); font-weight: 600; }

a { text-decoration: none; transition: color .18s ease; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--honey-400);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--honey-300); color: var(--deep); }

/* --- Layout helpers ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 8vw, 108px); }
.section--tight { padding-block: clamp(48px, 5vw, 68px); }
.section--surface { background: var(--surface); }
.section--deep { background: var(--deep); color: #cfc3b0; }
.section--deep h2, .section--deep h3, .section--deep h4 { color: #fdf8ee; }

.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-2); }
.muted { color: var(--ink-3); }
.small { font-size: .87rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--ff-body);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--honey-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px;
  background: var(--honey-400); border-radius: 2px;
}
.center .eyebrow { justify-content: center; }

.head { max-width: 680px; margin-bottom: clamp(34px, 4vw, 52px); }
.head.center { margin-inline: auto; }
.head p { margin-top: 14px; font-size: 1.06rem; }

.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .93rem; font-weight: 600; letter-spacing: .01em;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(170deg, var(--honey-400), var(--honey-500));
  color: #24190a;
  box-shadow: 0 1px 2px rgba(113, 74, 13, .2), 0 10px 22px -10px rgba(154, 104, 18, .7);
}
.btn--primary:hover { box-shadow: 0 2px 4px rgba(113, 74, 13, .22), 0 16px 30px -12px rgba(154, 104, 18, .8); }

.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--honey-400); color: var(--honey-600); background: var(--honey-50); }

.btn--dark { background: var(--deep-2); color: #fdf8ee; }
.btn--dark:hover { background: #3b3020; }

.btn--onDark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); color: #fdf8ee; }
.btn--onDark:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); }

.btn--sm { padding: 9px 17px; font-size: .84rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.center .btn-row { justify-content: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; font-size: .92rem; color: var(--honey-600);
}
.arrow-link svg { transition: transform .2s ease; }
.arrow-link:hover svg { transform: translateX(4px); }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__text { line-height: 1; }
.brand__name {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.3rem; font-weight: 600; letter-spacing: -.02em;
  color: var(--ink); line-height: 1;
}
.brand__name span { color: var(--honey-500); }
.brand__sub {
  display: block; font-family: var(--ff-body);
  font-size: .58rem; font-weight: 600; letter-spacing: .19em;
  text-transform: uppercase; color: var(--ink-3); margin-top: 3px;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px; border-radius: 8px;
  font-size: .93rem; font-weight: 500; color: var(--ink-2);
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav a.is-active { color: var(--honey-600); font-weight: 600; }

.header-cta { margin-left: 12px; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-2); border-radius: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  position: relative; transition: background .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px;
  background: var(--ink); transition: transform .22s ease, top .22s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 14px 24px 22px;
    box-shadow: var(--shadow);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 13px 12px; font-size: 1rem; border-radius: 10px; }
  .header-cta { margin: 10px 0 0; width: 100%; }
}

/* --- Honeycomb backdrop --------------------------------------------------- */
.comb-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cpath d='M28 0l28 16.2v32.3L28 64.7 0 48.5V16.2zM28 48.5l28 16.2V97L28 113.2 0 97V64.7z' fill='none' stroke='%23c1861a' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 97px;
  opacity: .07;
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -12%, rgba(221,165,43,.28), transparent 62%),
    radial-gradient(760px 420px at 4% 108%, rgba(193,134,26,.16), transparent 60%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
  padding-block: clamp(58px, 7.5vw, 104px);
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--honey-600); }
.hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.22rem); max-width: 55ch; margin-bottom: 30px; }
.hero .btn-row { margin-bottom: 34px; }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  padding-top: 24px; border-top: 1px solid var(--line-2);
  font-size: .87rem; color: var(--ink-3);
}
.hero__meta b { color: var(--ink); font-weight: 600; }

.hero__art { position: relative; }
.hero__art svg { width: 100%; height: auto; filter: drop-shadow(0 28px 50px rgba(113,74,13,.22)); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { max-width: 400px; margin-inline: auto; }
}

/* --- Page banner (inner pages) -------------------------------------------- */
.banner {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 380px at 82% -30%, rgba(221,165,43,.24), transparent 60%),
    var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(46px, 6vw, 78px);
}
.banner__inner { position: relative; z-index: 1; max-width: 760px; }
.banner h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: 16px; }
.banner p { font-size: clamp(1rem, 1.5vw, 1.15rem); }

.crumbs { font-size: .82rem; color: var(--ink-3); margin-bottom: 16px; }
.crumbs a:hover { color: var(--honey-600); }
.crumbs span { margin-inline: 8px; opacity: .5; }

/* --- Stat band ------------------------------------------------------------ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--paper); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat { padding: 26px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__n {
  font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 600; color: var(--ink); line-height: 1; letter-spacing: -.02em;
}
.stat__n sup { font-size: .5em; color: var(--honey-500); top: -.7em; }
.stat__l { font-size: .82rem; color: var(--ink-3); margin-top: 8px; }
@media (max-width: 780px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* --- Cards ---------------------------------------------------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px;
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: .95rem; }
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }

.icon-badge {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: var(--honey-100); color: var(--honey-600);
  border: 1px solid var(--honey-200);
}
.icon-badge svg { width: 21px; height: 21px; }

/* --- Product cards -------------------------------------------------------- */
.product-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .28s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.product-card__art {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  display: grid; place-items: center;
}
.product-card__art .comb-bg { opacity: .13; }
.product-card__art svg.jar { position: relative; z-index: 1; width: 46%; height: auto; }
.product-card__badge {
  position: absolute; z-index: 2; top: 12px; left: 12px;
  background: rgba(255,255,255,.86); color: #3a2c14;
  border-radius: 999px; padding: 4px 11px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.product-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { margin-bottom: 3px; }
.product-card__cn { font-size: .82rem; color: var(--ink-3); margin-bottom: 12px; }
.product-card__body p { font-size: .92rem; flex: 1; }
.product-card__foot {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.pfund { font-size: .78rem; color: var(--ink-3); font-family: var(--ff-mono); }

/* --- Filter pills --------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.filter {
  padding: 8px 17px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--paper);
  font-size: .87rem; font-weight: 500; color: var(--ink-2); cursor: pointer;
  transition: all .18s ease;
}
.filter:hover { border-color: var(--honey-400); color: var(--honey-600); }
.filter.is-active {
  background: var(--honey-500); border-color: var(--honey-500); color: #fffdf8;
}

/* --- Spec table ----------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.spec {
  width: 100%; min-width: 460px; border-collapse: collapse;
  font-size: .93rem;
}
table.spec caption {
  text-align: left; font-size: .78rem; letter-spacing: .13em;
  text-transform: uppercase; font-weight: 700; color: var(--honey-600);
  padding-bottom: 12px;
}
table.spec th, table.spec td {
  text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line);
}
table.spec thead th {
  font-size: .74rem; letter-spacing: .11em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 700; border-bottom: 1px solid var(--line-2);
}
table.spec tbody th { font-weight: 500; color: var(--ink-2); width: 46%; }
table.spec td { font-family: var(--ff-mono); font-size: .85rem; color: var(--ink); }
table.spec tbody tr:last-child th, table.spec tbody tr:last-child td { border-bottom: 0; }
table.spec tbody tr:hover { background: var(--honey-50); }

.panel {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm);
}
.panel--pad-0 { padding: 26px 10px 14px 26px; }

/* --- Product detail ------------------------------------------------------- */
.pd-hero { display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: center; }
.pd-visual {
  position: relative; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 1 / 1; display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.pd-visual .comb-bg { opacity: .15; }
.pd-visual svg.jar { position: relative; z-index: 1; width: 54%; }
.pd-swatch {
  position: absolute; z-index: 2; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.9); border-radius: 10px;
  padding: 10px 14px; backdrop-filter: blur(8px);
  font-size: .74rem; color: #3a2c14; line-height: 1.4;
}
.pd-swatch b { display: block; font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; opacity: .6; }

.pd-title { margin-bottom: 6px; }
.pd-cn { font-size: 1rem; color: var(--ink-3); margin-bottom: 4px; }
.pd-botanical { font-style: italic; color: var(--ink-3); font-size: .93rem; margin-bottom: 20px; }
.pd-tagline { font-size: 1.12rem; color: var(--ink); margin-bottom: 26px; font-family: var(--ff-display); line-height: 1.45; }

.quickfacts {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-sm);
  overflow: hidden; margin-bottom: 28px;
}
.quickfact { background: var(--paper); padding: 15px 18px; }
.quickfact dt {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 700; margin-bottom: 5px;
}
.quickfact dd { font-size: .92rem; color: var(--ink); margin: 0; }

@media (max-width: 900px) {
  .pd-hero { grid-template-columns: 1fr; gap: 32px; }
  .pd-visual { max-width: 420px; margin-inline: auto; width: 100%; }
}
@media (max-width: 460px) { .quickfacts { grid-template-columns: 1fr; } }

.prose > * + * { margin-top: 1.1em; }
.prose h3 { margin-top: 1.8em; }
.prose ul { padding-left: 1.15em; }
.prose li + li { margin-top: .4em; }
.prose li::marker { color: var(--honey-400); }

.split { display: grid; grid-template-columns: 1.25fr .75fr; gap: 46px; align-items: start; }
.split--even { grid-template-columns: 1fr 1fr; }
.split--rev { grid-template-columns: .75fr 1.25fr; }
@media (max-width: 900px) {
  .split, .split--even, .split--rev { grid-template-columns: 1fr; gap: 34px; }
}

.sticky { position: sticky; top: calc(var(--header-h) + 24px); }

/* --- Lists ---------------------------------------------------------------- */
.ticks { list-style: none; padding: 0; }
.ticks li {
  position: relative; padding-left: 30px; margin-bottom: 11px; font-size: .95rem;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--honey-100); border: 1px solid var(--honey-300);
}
.ticks li::after {
  content: ""; position: absolute; left: 5px; top: .72em;
  width: 7px; height: 4px;
  border-left: 1.6px solid var(--honey-600); border-bottom: 1.6px solid var(--honey-600);
  transform: rotate(-45deg);
}

.deflist { display: grid; gap: 0; }
.deflist > div {
  display: grid; grid-template-columns: 150px 1fr; gap: 18px;
  padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .93rem;
}
.deflist > div:last-child { border-bottom: 0; }
.deflist dt { color: var(--ink-3); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; padding-top: 2px; }
.deflist dd { margin: 0; color: var(--ink); }
@media (max-width: 560px) { .deflist > div { grid-template-columns: 1fr; gap: 4px; } }

/* --- Chips / tags --------------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 6px 14px; border-radius: 999px;
  background: var(--honey-50); border: 1px solid var(--honey-200);
  color: var(--honey-700); font-size: .8rem; font-weight: 600;
}
.section--deep .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: var(--honey-300); }

/* --- Cert strip ----------------------------------------------------------- */
.certs {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 12px;
}
.cert {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper);
  font-size: .84rem; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.cert svg { width: 15px; height: 15px; color: var(--honey-500); flex-shrink: 0; }

/* --- Process steps -------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  position: relative; padding: 22px 0 22px 68px;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 22px;
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line);
  font-family: var(--ff-mono); font-size: .84rem; font-weight: 700; color: var(--honey-600);
}
.step h4 { margin-bottom: 5px; }
.step p { font-size: .93rem; }

/* --- Timeline ------------------------------------------------------------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--honey-300), var(--line));
  border-radius: 2px;
}
.tl-item { position: relative; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -34px; top: 7px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--honey-400);
}
.tl-year {
  font-family: var(--ff-mono); font-size: .8rem; font-weight: 700;
  color: var(--honey-600); letter-spacing: .06em; margin-bottom: 4px;
}
.tl-item h4 { margin-bottom: 4px; }
.tl-item p { font-size: .93rem; }

/* --- Media page ----------------------------------------------------------- */
.post-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  transition: transform .2s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-card__art { position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden; }
.post-card__art .comb-bg { opacity: .15; }
.post-card__art span {
  position: relative; z-index: 1;
  font-family: var(--ff-display); font-size: 2.4rem; color: rgba(255,255,255,.9);
  text-shadow: 0 2px 12px rgba(60,40,10,.35);
}
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: .76rem; color: var(--ink-3); margin-bottom: 10px;
  letter-spacing: .04em; text-transform: uppercase; font-weight: 600;
}
.post-meta .tag { color: var(--honey-600); }
.post-card__body h3 { font-size: 1.15rem; margin-bottom: 9px; }
.post-card__body p { font-size: .93rem; flex: 1; }
.post-card__body .arrow-link { margin-top: 16px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery figure {
  position: relative; aspect-ratio: 1/1; border-radius: var(--r-sm);
  overflow: hidden; display: grid; place-items: end start;
  transition: transform .2s ease;
}
.gallery figure:hover { transform: scale(1.02); }
.gallery figcaption {
  position: relative; z-index: 1; width: 100%;
  padding: 26px 14px 12px;
  background: linear-gradient(0deg, rgba(20,14,6,.72), transparent);
  color: #fff; font-size: .8rem; font-weight: 600;
}
.gallery .comb-bg { opacity: .18; }
.gallery figure:nth-child(6n+1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.dl-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); transition: border-color .2s ease, background .2s ease;
}
.dl-row:hover { border-color: var(--honey-400); background: var(--honey-50); }
.dl-row__icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--honey-100); color: var(--honey-600);
  font-size: .62rem; font-weight: 800; letter-spacing: .04em;
}
.dl-row__t { flex: 1; min-width: 0; }
.dl-row__t strong { display: block; font-size: .95rem; }
.dl-row__t span { font-size: .8rem; color: var(--ink-3); }

/* --- Contact -------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.field label .req { color: #c0392b; margin-left: 2px; }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line-2); border-radius: var(--r-sm);
  background: var(--paper); color: var(--ink);
  font-size: .94rem; transition: border-color .18s ease, box-shadow .18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 128px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--honey-400);
  box-shadow: 0 0 0 3px rgba(221,165,43,.18);
}
.field .err { font-size: .78rem; color: #c0392b; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c0392b; }
.field.has-error .err { display: block; }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--ink-2); }
.checkline input { width: auto; margin-top: 3px; flex-shrink: 0; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-note {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm);
  background: var(--honey-50); border: 1px solid var(--honey-200);
  font-size: .85rem; color: var(--honey-700);
}
.form-success {
  display: none; padding: 26px; border-radius: var(--r);
  background: var(--honey-50); border: 1px solid var(--honey-300); text-align: center;
}
.form-success.is-shown { display: block; }
.form-success h3 { margin-bottom: 8px; }

.contact-item { display: flex; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item svg { width: 19px; height: 19px; color: var(--honey-500); flex-shrink: 0; margin-top: 3px; }
.contact-item strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.contact-item a:hover { color: var(--honey-600); }

.map-frame {
  position: relative; aspect-ratio: 21/9; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, #f3ead8, #e5d6b8);
  display: grid; place-items: center;
}
:root[data-theme="dark"] .map-frame { background: linear-gradient(140deg, #241c11, #2e2519); }
.map-frame .comb-bg { opacity: .12; }
.map-pin { position: relative; z-index: 1; text-align: center; color: var(--ink-2); }
.map-pin svg { width: 34px; height: 34px; margin: 0 auto 8px; color: var(--honey-500); }

/* --- Accordion ------------------------------------------------------------ */
details.acc {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); margin-bottom: 10px; overflow: hidden;
}
details.acc[open] { border-color: var(--line-2); }
details.acc summary {
  padding: 16px 20px; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; color: var(--ink); font-size: .96rem;
}
details.acc summary::-webkit-details-marker { display: none; }
details.acc summary::after {
  content: "+"; font-family: var(--ff-mono); font-size: 1.25rem;
  color: var(--honey-500); transition: transform .2s ease; line-height: 1;
}
details.acc[open] summary::after { content: "−"; }
details.acc .acc-body { padding: 0 20px 18px; font-size: .93rem; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--deep), #382c1b 65%, #4a3819);
  color: #e6dbc8;
  border-radius: var(--r);
  padding: clamp(38px, 5vw, 62px);
  text-align: center;
}
.cta-band .comb-bg { opacity: .1; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fdf8ee; margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; color: #cbbfa9; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--deep); color: #a89b86; padding-top: 62px; }
.site-footer .foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px;
  padding-bottom: 46px;
}
.site-footer .brand__name { color: #fdf8ee; }
.site-footer .brand__sub { color: #8d8069; }
.site-footer p, .site-footer li, .site-footer a { color: #a89b86; font-size: .9rem; }
.site-footer a:hover { color: var(--honey-300); }
.site-footer h4 {
  color: #fdf8ee; font-family: var(--ff-body);
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer .brand { margin-bottom: 16px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0 30px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  font-size: .82rem; color: #7d7160;
}
@media (max-width: 880px) {
  .site-footer .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 520px) {
  .site-footer .foot-grid { grid-template-columns: 1fr; }
}

/* --- Reveal on scroll ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --- Range list (homepage) ------------------------------------------------ */
.range {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--paper); overflow: hidden; box-shadow: var(--shadow-sm);
}
.range__row {
  display: grid; grid-template-columns: 30px 1.15fr .95fr 1.7fr 22px;
  gap: 20px; align-items: center;
  padding: 15px 24px; border-bottom: 1px solid var(--line);
  transition: background .18s ease;
}
.range__row:last-child { border-bottom: 0; }
.range__row:hover { background: var(--honey-50); }
.range__row:hover .range__go { transform: translateX(3px); color: var(--honey-600); }
.range__dot {
  width: 28px; height: 28px; border-radius: 50%;
  box-shadow: inset 0 -4px 8px rgba(60,35,0,.28), inset 0 3px 6px rgba(255,255,255,.5), 0 1px 3px rgba(0,0,0,.16);
}
.range__name { font-weight: 600; color: var(--ink); font-size: .98rem; }
.range__name em { display: block; font-style: normal; font-weight: 400; font-size: .8rem; color: var(--ink-3); }
.range__grade { font-family: var(--ff-mono); font-size: .79rem; color: var(--ink-3); }
.range__desc { font-size: .89rem; color: var(--ink-2); }
.range__go { color: var(--ink-3); transition: transform .2s ease, color .2s ease; justify-self: end; }
.range__head {
  display: grid; grid-template-columns: 30px 1.15fr .95fr 1.7fr 22px; gap: 20px;
  padding: 12px 24px; background: var(--surface-2); border-bottom: 1px solid var(--line);
  font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; color: var(--ink-3);
}
@media (max-width: 860px) {
  .range__head { display: none; }
  .range__row { grid-template-columns: 30px 1fr 22px; gap: 14px; row-gap: 6px; }
  .range__grade { grid-column: 2; }
  .range__desc { grid-column: 2; }
}

/* --- KPI blocks (dark sections) ------------------------------------------- */
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.kpi__n {
  font-family: var(--ff-display); font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--honey-300); line-height: 1; margin-bottom: 8px; letter-spacing: -.02em;
}
.kpi p { font-size: .92rem; }
@media (max-width: 700px) { .kpis { grid-template-columns: 1fr; gap: 22px; } }

/* --- Pull quote ----------------------------------------------------------- */
.quote {
  border-left: 3px solid var(--honey-400);
  padding: 4px 0 4px 24px;
  font-family: var(--ff-display); font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  line-height: 1.5; color: var(--ink);
}
.quote footer {
  margin-top: 14px; font-family: var(--ff-body); font-size: .85rem;
  color: var(--ink-3); font-style: normal;
}

/* --- Markets -------------------------------------------------------------- */
.markets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.market { background: var(--paper); padding: 22px 24px; }
.market h4 { margin-bottom: 8px; }
.market p { font-size: .88rem; color: var(--ink-3); }
@media (max-width: 900px) { .markets { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .markets { grid-template-columns: 1fr; } }

/* --- Utilities ------------------------------------------------------------ */
/* Author `display` rules outrank the UA sheet's [hidden], so restate it. */
[hidden] { display: none !important; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 32px; }
.mt-4 { margin-top: 48px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 32px; }
.hr { height: 1px; background: var(--line); border: 0; margin-block: clamp(40px, 5vw, 64px); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--honey-400); color: #24190a; padding: 10px 18px; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }
