/* ==========================================================================
   PILCO - Pagarani International Ltd
   Fine Foods Import & Wholesale - premium B2B catalogue
   Design system: "Heritage Trading House"
   Fonts: Inter (body/UI) + Playfair Display (display)
   No animation libraries. No frameworks. Mobile-first.
   ========================================================================== */

/* -----------------------------------------------------------------------
   1. Tokens
   ----------------------------------------------------------------------- */
:root {
  /* Warm neutrals */
  --ivory:        #FBF8F1;
  --ivory-2:      #F5EFE2;
  --paper:        #FFFFFF;
  --beige:        #ECE3D1;
  --beige-2:      #E4D8C0;
  --sand:         #D8C7A4;

  /* Ink */
  --charcoal:     #2B2620;
  --brown:        #463729;
  --brown-deep:   #2C2117;
  --text:         #534A3E;
  --muted:        #837868;

  /* Brand gold (sampled from logo: #B08030) */
  --gold:         #B08030;
  --gold-deep:    #936821;
  --gold-soft:    #C8A55C;

  /* Lines */
  --line:         rgba(43, 38, 32, 0.13);
  --line-soft:    rgba(43, 38, 32, 0.07);
  --line-gold:    rgba(176, 128, 48, 0.45);
  --line-on-dark: rgba(255, 255, 255, 0.14);

  /* Shadows (restrained) */
  --shadow-sm:    0 1px 2px rgba(43, 38, 32, 0.05);
  --shadow:       0 22px 48px -30px rgba(43, 38, 32, 0.45);

  /* Type */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Metrics */
  --maxw:         1440px;
  --maxw-wide:    1560px;
  --gutter:       clamp(1.25rem, 4.6vw, 4rem);
  --sp:           clamp(5.5rem, 10vw, 9.5rem);
  --sp-sm:        clamp(3rem, 6vw, 5rem);
  --r:            3px;
  --r-lg:         7px;

  /* Easings */
  --ease:         180ms ease;
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:    cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Dark warm anchor (hero, page-hero, dark bands) */
  --espresso:     #221913;
  --espresso-2:   #2c2117;
}

/* -----------------------------------------------------------------------
   2. Reset / base
   ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; display: block; height: auto; }

a { color: var(--gold-deep); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold); }

button { font-family: inherit; cursor: pointer; }

ul, ol { margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--charcoal); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: var(--r); font-size: 0.9rem; font-weight: 600;
}
.skip-link:focus { top: 1rem; color: #fff; }

/* -----------------------------------------------------------------------
   Motion system (approved: entrance + hover only, no decorative loops)
   ----------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.10s; }
.reveal.d2 { transition-delay: 0.20s; }
.reveal.d3 { transition-delay: 0.30s; }
.reveal.d4 { transition-delay: 0.40s; }

@keyframes heroFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-stagger { opacity: 0; animation: heroFadeUp 0.7s var(--ease-expo) forwards; }
.hs-1 { animation-delay: 0.10s; }
.hs-2 { animation-delay: 0.24s; }
.hs-3 { animation-delay: 0.38s; }
.hs-4 { animation-delay: 0.52s; }
.hs-5 { animation-delay: 0.66s; }

/* -----------------------------------------------------------------------
   3. Layout helpers
   ----------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--maxw-wide); }
.container--narrow { max-width: 760px; }

.section { padding-block: var(--sp); }
.section--sm { padding-block: var(--sp-sm); }
.section--tint { background: var(--ivory-2); }
.section--beige { background: var(--ivory-2); }
.section--dark { background: var(--brown-deep); color: rgba(255,255,255,0.82); }
.section--dark h2, .section--dark h3 { color: #fff; }

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 1.85rem;
  height: 1px;
  background: var(--gold);
}
.eyebrow--center { justify-content: center; }
.section--dark .eyebrow { color: var(--gold-soft); }

/* Display sizes */
.h-xl { font-size: clamp(2.5rem, 6.2vw, 4.6rem); line-height: 1.04; }
.h-lg { font-size: clamp(2.2rem, 5vw, 3.75rem); line-height: 1.08; }
.h-md { font-size: clamp(1.6rem, 3vw, 2.3rem); }

.lead {
  font-size: clamp(1.1rem, 1.55vw, 1.34rem);
  line-height: 1.7;
  color: var(--text);
}

.measure { max-width: 60ch; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

.section-head { max-width: 56ch; margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); margin-top: 1rem; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* -----------------------------------------------------------------------
   4. Buttons
   ----------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 1.02em 1.7em;
  border-radius: var(--r);
  border: 1px solid transparent;
  text-align: center;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
}
.btn svg { width: 1.05em; height: 1.05em; }

.btn--primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }

.btn--dark { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn--dark:hover { background: var(--brown); border-color: var(--brown); color: #fff; }

.btn--outline { background: transparent; color: var(--charcoal); border-color: var(--line); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); }

.btn--ghost-light { background: transparent; color: #fff; border-color: var(--line-on-dark); }
.btn--ghost-light:hover { border-color: var(--gold-soft); color: #fff; background: rgba(255,255,255,0.05); }

.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1.15em 2rem; font-size: 1rem; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}
.link-arrow svg { width: 0.95em; height: 0.95em; color: var(--gold); transition: color var(--ease); }
.link-arrow:hover { color: var(--gold-deep); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* -----------------------------------------------------------------------
   5. Header / navigation
   ----------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(34, 25, 19, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--ease), box-shadow var(--ease);
}
.site-header.scrolled {
  background: rgba(28, 20, 15, 0.97);
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, 0.55);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

/* Brand lockup - real Pilco logo */
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 54px; width: auto; display: block; }

/* Primary nav */
.nav__menu { display: none; }

.nav__list { display: flex; align-items: center; gap: 0.35rem; list-style: none; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.6rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--r);
}
.nav__link:hover { color: #fff; }
.nav__link[aria-current="page"] { color: #fff; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.95rem; right: 0.95rem; bottom: 0.5rem;
  height: 1.5px;
  background: var(--gold-soft);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-smooth);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link svg { width: 0.7em; height: 0.7em; opacity: 0.7; }

/* Products mega-menu (CSS-only on desktop) */
.has-dropdown { position: static; }
.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 26px 44px -26px rgba(43, 38, 32, 0.45);
  padding: 2rem var(--gutter) 2.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  z-index: 120;
}
.megamenu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.has-dropdown:hover .megamenu,
.has-dropdown:focus-within .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.megamenu__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem 2rem;
}
.megamenu__col { display: flex; flex-direction: column; }
.megamenu__cat {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--charcoal);
  padding-bottom: 0.6rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}
.megamenu__cat:hover { color: var(--gold-deep); }
.megamenu__col a:not(.megamenu__cat) { padding: 0.4rem 0; font-size: 0.92rem; color: var(--muted); }
.megamenu__col a:not(.megamenu__cat):hover { color: var(--gold-deep); }

.nav__cta { display: none; }

/* Hamburger */
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--r);
  color: #fff;
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile panel */
.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--espresso);
  padding: 0.5rem var(--gutter) 1.6rem;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-panel.is-open { display: block; }
.mobile-panel ul { list-style: none; }
.mobile-panel > ul > li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.mobile-panel a {
  display: block;
  padding: 0.95rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.mobile-panel a:hover { color: var(--gold-soft); }
.mobile-group__label {
  display: block;
  padding: 0.95rem 0.25rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.mobile-sub { padding-left: 0.9rem; border-left: 2px solid rgba(255, 255, 255, 0.2); margin: 0 0 0.6rem 0.25rem; }
.mobile-sub a { padding: 0.6rem 0.25rem; font-size: 0.98rem; color: rgba(255, 255, 255, 0.72); font-weight: 500; }
.mobile-cat { display: block; padding: 0.7rem 0.25rem 0.35rem; font-family: var(--font-display); font-size: 1.02rem; color: #fff; }
.mobile-cat:hover { color: var(--gold-soft); }
.mobile-prod { display: block; padding: 0.5rem 0.25rem 0.5rem 1rem; font-size: 0.94rem; color: rgba(255, 255, 255, 0.66); }
.mobile-prod:hover { color: var(--gold-soft); }
.mobile-panel .btn { margin-top: 1.2rem; }

/* -----------------------------------------------------------------------
   6. Hero (homepage)
   ----------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--ivory);
  color: var(--text);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 80% at 93% 0%, rgba(176, 128, 48, 0.07), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.hero__text { position: relative; z-index: 1; padding: clamp(2.6rem, 7vw, 3.5rem) var(--gutter) 1.2rem; }
.hero__text-inner { max-width: 640px; }
.hero .eyebrow { color: var(--gold-deep); }
.hero h1 {
  color: var(--charcoal);
  font-size: clamp(2.05rem, 3.9vw, 3.25rem);
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero__lead {
  color: var(--text);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: 1.4rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2.4rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.hero__stat span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.03em; }
.hero__image { position: relative; z-index: 1; padding: 0 var(--gutter) clamp(2.6rem, 7vw, 3.5rem); }
.hero__image img {
  width: 100%;
  height: clamp(260px, 58vw, 400px);
  object-fit: cover;
  border-radius: var(--r-lg);
}

/* Hero specimen panel */
.specimen {
  position: relative;
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  overflow: hidden;
}
.specimen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(176,128,48,0.10), transparent 42%),
    radial-gradient(circle at 12% 90%, rgba(176,128,48,0.08), transparent 40%);
  pointer-events: none;
}
.specimen__seal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-gold);
}
.specimen__seal .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 600;
}
.specimen__seal svg { width: 40px; height: 40px; color: var(--gold); }
.specimen__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
.specimen__cell {
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 1.1rem 1rem 0.9rem;
  text-align: center;
}
.specimen__cell svg { width: 46px; height: 46px; margin: 0 auto 0.6rem; color: var(--gold); }
.specimen__cell span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--brown);
  font-weight: 600;
  text-transform: uppercase;
}

/* -----------------------------------------------------------------------
   7. Inner page hero
   ----------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--ivory-2);
  color: var(--text);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 100% at 95% 0%, rgba(176, 128, 48, 0.06), transparent 56%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: var(--gold-deep); }
.page-hero h1 {
  color: var(--charcoal);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  letter-spacing: -0.025em;
  margin: 0.5rem 0 0;
  max-width: 20ch;
}
.page-hero__intro { margin-top: 1.4rem; max-width: 62ch; color: var(--text); }

.crumbs { font-size: 0.83rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 0.45em; align-items: center; }
.crumbs a { color: var(--muted); font-weight: 500; }
.crumbs a:hover { color: var(--gold-deep); }
.crumbs span[aria-current] { color: var(--charcoal); }
.crumbs .sep { color: var(--line-gold); }
/* Crumbs on the page-hero */
.page-hero .crumbs, .page-hero .crumbs a { color: var(--muted); }
.page-hero .crumbs a:hover { color: var(--gold-deep); }
.page-hero .crumbs span[aria-current] { color: var(--charcoal); }
.page-hero .crumbs .sep { color: var(--line-gold); }

/* Marquee ticker - sits at the base of the hero, above the fold */
.marquee {
  background: var(--ivory-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding-block: 0.9rem;
  animation: pilco-marquee 40s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); padding: 0 1.5rem; }
.marquee__dot { color: var(--line-gold); font-size: 0.55rem; }
@keyframes pilco-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Grades & varieties - spec cards (product pages) */
.grade-grid { display: grid; gap: clamp(0.9rem, 1.7vw, 1.4rem); grid-template-columns: 1fr; }
.grade-box {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.6rem;
  transition: border-color var(--ease), box-shadow 0.28s var(--ease-smooth), transform 0.28s var(--ease-back);
}
.grade-box:hover { border-color: var(--line-gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.grade-box__code {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  padding-bottom: 0.8rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.grade-box__code::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 34px; height: 2px; background: var(--gold); }
.grade-box__desc { font-size: 0.95rem; color: var(--muted); line-height: 1.65; margin: 0; }
@media (min-width: 560px) { .grade-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grade-grid { grid-template-columns: repeat(3, 1fr); } }

/* Grade feature: product image + nutrition panel */
.grade-feature {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.grade-feature__media .plate { aspect-ratio: 4 / 3; border-radius: var(--r-lg); }
.nutri-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 1.9rem);
}
.nutri-panel h3 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.nutri-panel__sub { font-size: 0.85rem; color: var(--muted); margin: 0 0 1rem; }
.nutri { width: 100%; border-collapse: collapse; font-size: 0.96rem; }
.nutri th, .nutri td { padding: 0.62rem 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 400; color: var(--text); }
.nutri td { text-align: right; font-variant-numeric: tabular-nums; color: var(--charcoal); font-weight: 600; }
.nutri tr.sub th { padding-left: 1.3rem; color: var(--muted); font-size: 0.88rem; }
.nutri tr.sub td { font-weight: 400; color: var(--muted); }
.nutri tr:last-child th, .nutri tr:last-child td { border-bottom: none; }
.nutri-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; }
@media (min-width: 860px) {
  .grade-feature { grid-template-columns: 0.92fr 1.08fr; align-items: stretch; }
  .grade-feature__media .plate { height: 100%; aspect-ratio: auto; min-height: 320px; }
}

/* Dark stats band */
.statband { position: relative; background: var(--espresso); color: rgba(255,255,255,0.82); overflow: hidden; }
.statband::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 10% 0%, rgba(176,128,48,0.16), transparent 55%);
  pointer-events: none;
}
.statband .container { position: relative; }
.statband__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.statband__num { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.statband__lbl { margin-top: 0.6rem; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.statband .eyebrow { color: var(--gold-soft); }
.statband h2 { color: #fff; }

/* -----------------------------------------------------------------------
   8. Plates + motifs (product imagery)
   ----------------------------------------------------------------------- */
.plate {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--beige);
  border-radius: var(--r) var(--r) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.plate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plate--ph { background: #6b4626; }
.plate__ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem;
  color: #f4e7d6;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  letter-spacing: 0.01em;
}
.plate__seed {
  position: absolute;
  right: -8%;
  bottom: -14%;
  width: 56%;
  color: rgba(176, 128, 48, 0.14);
}
.plate .motif {
  position: relative;
  width: clamp(78px, 30%, 128px);
  height: auto;
  color: var(--gold);
}
.plate--lg { aspect-ratio: 1 / 1; border-radius: var(--r-lg); }
.plate--lg .motif { width: clamp(120px, 42%, 230px); }
.plate--wide { aspect-ratio: 16 / 10; }

.plate__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(251,248,241,0.85);
  color: var(--brown);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4em 0.7em;
  border-radius: 999px;
  border: 1px solid var(--line-gold);
}

.motif, .ico { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.motif { stroke-width: 3.2; }
.ico { stroke-width: 2; width: 24px; height: 24px; }

/* -----------------------------------------------------------------------
   9. Cards + grids
   ----------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.1rem, 2.4vw, 1.8rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

/* Product card */
.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow 0.28s var(--ease-smooth), transform 0.28s var(--ease-back);
}
.card:hover { border-color: var(--line-gold); box-shadow: var(--shadow); transform: translateY(-5px); }
.card__body { padding: 1.7rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card__eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 0.7rem;
}
.card__title { font-size: 1.45rem; margin-bottom: 0.6rem; }
.card__title a { color: var(--charcoal); }
.card__title a:hover { color: var(--gold-deep); }
.card__text { font-size: 0.96rem; color: var(--muted); margin-bottom: 1.1rem; }
.card__foot { margin-top: auto; }

/* Category card (larger) */
.cat-card { position: relative; }
.cat-card .plate { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.cat-card .card__title { font-size: 1.5rem; }
.cat-card .card__count { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }

/* -----------------------------------------------------------------------
   10. Feature / value rows
   ----------------------------------------------------------------------- */
.feature {
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
}
.feature__n {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
}
.feature h3 { font-size: 1.28rem; margin: 0.8rem 0 0.6rem; }
.feature p { font-size: 0.97rem; color: var(--muted); margin: 0; }

.value {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem;
}
.value__icon {
  width: 48px; height: 48px; color: var(--gold);
  background: var(--ivory-2);
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.value__icon svg { width: 24px; height: 24px; }
.value h3 { font-size: 1.22rem; margin-bottom: 0.55rem; }
.value p { font-size: 0.96rem; color: var(--muted); margin: 0; }

/* Split editorial block */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__media .plate { aspect-ratio: 5 / 4; border-radius: var(--r-lg); }

/* Spec list (product detail) */
.spec { display: grid; gap: 0; border-top: 1px solid var(--line); }
.spec__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.spec__row dt {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-deep);
}
.spec__row dd { margin: 0; color: var(--charcoal); font-size: 1.02rem; }

/* Variety / grade chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; list-style: none; }
.chips li {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--brown);
  background: var(--ivory-2);
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  padding: 0.45em 0.95em;
}

/* Note / callout */
.note {
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 1.3rem 1.4rem;
}
.note h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.note p { font-size: 0.96rem; color: var(--text); margin: 0; }

/* Accreditation strip */
.accred { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.6rem, 5vw, 3.4rem); }
.accred img { height: 56px; width: auto; opacity: 0.9; filter: saturate(0.85); }

/* -----------------------------------------------------------------------
   11. Product detail layout
   ----------------------------------------------------------------------- */
.product { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.product__media { position: sticky; top: 96px; }
.product__media .plate { max-width: 480px; }
.product__title { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0.6rem 0 1rem; }
.product__overview { font-size: 1.08rem; color: var(--text); margin-bottom: 1.8rem; }
.product__block { margin-bottom: 1.9rem; }
.product__block h2 { font-size: 1.25rem; margin-bottom: 0.9rem; }
.product__cta {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

/* -----------------------------------------------------------------------
   12. Blog
   ----------------------------------------------------------------------- */
.post-card { display: flex; flex-direction: column; }
.post-card .plate { aspect-ratio: 16 / 10; }
.post-card__meta { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 0.6rem; text-transform: uppercase; }
.post-card__title { font-size: 1.3rem; margin-bottom: 0.6rem; }
.post-card__title a { color: var(--charcoal); }
.post-card__title a:hover { color: var(--gold-deep); }

.post-feature { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.post-feature .plate { aspect-ratio: 4 / 3; border-radius: var(--r-lg); }

/* Article body */
.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 2.4rem 0 1rem; }
.prose h3 { font-size: 1.28rem; margin: 1.9rem 0 0.8rem; }
.prose p { margin-bottom: 1.3rem; line-height: 1.8; }
.prose ul, .prose ol { margin: 0 0 1.3rem; padding-left: 1.3rem; }
.prose li { margin-bottom: 0.55rem; }
.prose blockquote {
  margin: 2rem 0;
  padding: 0.4rem 0 0.4rem 1.5rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-gold); }

.article-meta {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; align-items: center;
  font-size: 0.85rem; color: var(--muted);
  padding-bottom: 1.6rem; margin-bottom: 2.2rem; border-bottom: 1px solid var(--line);
}
.tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep);
}

/* Article layout - wider 2-column (prose + sticky sidebar) */
.article-layout { display: grid; gap: clamp(2rem, 5vw, 4rem); }
.article-main .prose { max-width: 74ch; }
.article-aside { }
.aside-card {
  background: var(--ivory-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.6rem 1.7rem;
}
.aside-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.aside-card p { font-size: 0.94rem; color: var(--muted); margin-bottom: 1.1rem; }
.aside-card .btn { margin-top: 0.2rem; }
.aside-meta { list-style: none; margin: 0 0 1.3rem; display: grid; gap: 0.55rem; }
.aside-meta li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 0.55rem; }
.aside-meta li strong { color: var(--charcoal); font-weight: 600; }
@media (min-width: 920px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 300px; align-items: start; }
  .article-aside { position: sticky; top: 90px; }
}

/* -----------------------------------------------------------------------
   13. Contact / forms
   ----------------------------------------------------------------------- */
.form-grid { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; color: var(--charcoal);
}
.field .req { color: var(--gold-deep); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.85rem 0.95rem;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #b3a892; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,128,48,0.14);
}
.field textarea { resize: vertical; min-height: 140px; }
.field--full { grid-column: 1 / -1; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }

/* Contact info blocks */
.contact-block { padding: 1.5rem 0; border-bottom: 1px solid var(--line); display: flex; gap: 1.1rem; }
.contact-block:first-child { padding-top: 0; }
.contact-block__icon {
  flex: none; width: 44px; height: 44px;
  border: 1px solid var(--line-gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.contact-block__icon svg { width: 20px; height: 20px; }
.contact-block h3 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.35rem; }
.contact-block p { margin: 0; color: var(--charcoal); font-size: 1.02rem; line-height: 1.6; }
.contact-block a { color: var(--charcoal); }
.contact-block a:hover { color: var(--gold-deep); }

/* -----------------------------------------------------------------------
   14. CTA band
   ----------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--ivory-2);
  color: var(--text);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-lg);
  padding: clamp(2.4rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 92% 14%, rgba(176,128,48,0.08), transparent 46%);
  pointer-events: none;
}
.cta-band__inner { position: relative; max-width: 56ch; }
.cta-band h2 { color: var(--charcoal); font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
.cta-band p { color: var(--muted); margin-bottom: 1.8rem; }
.cta-band .btn--outline { color: var(--charcoal); border-color: var(--line); }
.cta-band .btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); }

/* -----------------------------------------------------------------------
   15. Footer
   ----------------------------------------------------------------------- */
.site-footer { background: var(--brown-deep); color: rgba(255,255,255,0.7); }
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-top { padding-block: clamp(3rem, 6vw, 4.6rem); display: grid; gap: 2.5rem; }
.footer-brand__logo { height: 40px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 36ch; color: rgba(255,255,255,0.62); }
.footer-col h4 {
  color: #fff; font-family: var(--font-body); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.95rem; }
.footer-contact p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.62); margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-block: 1.5rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  font-size: 0.84rem; color: rgba(255,255,255,0.5);
}
.footer-bottom__links { display: flex; flex-wrap: wrap; gap: 1.2rem; }

/* -----------------------------------------------------------------------
   16. Responsive (min-width, mobile-first)
   ----------------------------------------------------------------------- */
@media (min-width: 560px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .form-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .nav__menu { display: flex; align-items: center; gap: 0.4rem; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .mobile-panel { display: none !important; }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }

  .hero { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch; }
  .hero__text { display: flex; align-items: center; padding-block: clamp(1.6rem, 2.8vw, 2.6rem); }
  .hero__text-inner { margin-left: auto; padding-right: clamp(2.5rem, 4vw, 4.5rem); }
  .hero__image { padding: 0; clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%); }
  .hero__image img { height: 100%; min-height: 415px; border-radius: 0; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--media-first .split__media { order: -1; }
  .post-feature { grid-template-columns: 1.1fr 0.9fr; }
  .product { grid-template-columns: 0.95fr 1.05fr; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 3rem; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
  .spec__row { grid-template-columns: 0.5fr 1fr; gap: 1.5rem; align-items: baseline; }
  .page-hero__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; }
}

@media (min-width: 1120px) {
  .grid--4 { gap: 1.8rem; }
  .hero__text-inner { max-width: 640px; }
}

/* Respect reduced motion (we only use opacity fades on dropdowns) */
@media (min-width: 760px) {
  .statband__grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-delay: 0s !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-stagger { opacity: 1 !important; }
}
