:root {
  --ink: #151511;
  --muted: #5f5f56;
  --paper: #f5f0e6;
  --paper-strong: #ece2cf;
  --white: #fffdf8;
  --gold: #b88b3f;
  --gold-light: #d8bd86;
  --forest: #203a31;
  --line: rgba(21, 21, 17, .15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container: min(1220px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(32, 27, 18, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.display,
.section-title,
.big-quote,
.intro-statement {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.display {
  margin: 0;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .92;
}
.display em { color: var(--gold); font-weight: 400; }
.section-title {
  margin: 0;
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: .98;
}
.lead {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}
.prose { max-width: 690px; }
.prose p { margin: 0 0 22px; color: #4d4d46; font-size: 18px; line-height: 1.75; }
.small-caps { font-size: 10px; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }

/* Header */
.announcement {
  padding: 8px 20px;
  color: #fff;
  background: var(--forest);
  text-align: center;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  display: flex;
  align-items: center;
  background: rgba(245, 240, 230, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; width: fit-content; }
.brand img { width: 164px; max-height: 50px; object-fit: contain; }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  position: relative;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.45);
}
.lang-btn {
  min-width: 36px;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}
.lang-btn.active { color: #fff; background: var(--ink); }
.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .25s ease;
}
body.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* Home intro */
body[data-page="home"] .announcement { display: none; }
body[data-page="home"] .site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transition: opacity .35s ease, transform .35s ease;
}
html.intro-enabled body[data-page="home"] .site-header {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
html.intro-enabled body[data-page="home"].intro-passed .site-header {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.intro-sequence {
  --logo-opacity: 1;
  --logo-scale: 1;
  --video-opacity: 0;
  --video-scale: 1.06;
  --copy-opacity: 0;
  --copy-translate: 22px;
  position: relative;
  height: 320vh;
  background: var(--paper);
}
.intro-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
}
.intro-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.intro-logo-layer {
  z-index: 3;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 44%, rgba(184,139,63,.13), transparent 34%),
    var(--paper);
  opacity: var(--logo-opacity);
  transform: scale(var(--logo-scale));
  will-change: opacity, transform;
}
.intro-logo { width: min(550px, 78vw); height: auto; }
.intro-kicker {
  position: absolute;
  left: 50%;
  bottom: 16vh;
  width: min(720px, calc(100% - 42px));
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  color: #5d5b52;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.intro-scroll {
  position: absolute;
  left: 50%;
  bottom: 5vh;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.intro-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 10px auto 0;
  background: var(--ink);
  animation: scrollLine 1.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(.3); opacity: .35; } 50% { transform: scaleY(1); opacity: 1; } }
.intro-video-layer {
  z-index: 2;
  opacity: var(--video-opacity);
  background: #080906;
  will-change: opacity;
}
.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--video-scale));
  will-change: transform;
}
.intro-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.30));
}
.intro-video-caption {
  position: absolute;
  left: 50%;
  bottom: 6vh;
  width: min(860px, calc(100% - 48px));
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255,255,255,.88);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.intro-copy-layer {
  z-index: 4;
  padding: 40px 24px;
  background: var(--paper);
  opacity: var(--copy-opacity);
  pointer-events: none;
  will-change: opacity;
}
.intro-copy {
  width: min(970px, 100%);
  text-align: center;
  transform: translateY(var(--copy-translate));
  will-change: transform;
}
.intro-copy .eyebrow { justify-content: center; }
.intro-statement {
  margin: 0;
  font-size: clamp(38px, 5.5vw, 74px);
  line-height: 1.12;
}
.intro-signature {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  min-height: 760px;
  padding: 126px 0 105px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(430px, 1.06fr);
  align-items: center;
  gap: 70px;
}
.hero-copy { min-width: 0; }
.hero-copy .lead { margin-top: 30px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--ink); }
.btn-outline { background: transparent; }
.btn-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.hero-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.hero-note::before { content: "●"; margin-right: 9px; color: var(--forest); }
.product-stage {
  position: relative;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: 42% 42% 28px 28px;
  background: linear-gradient(180deg, #eee3ce 0%, #f8f4eb 100%);
  overflow: hidden;
}
.stage-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(184,139,63,.33);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.stage-jar {
  position: absolute;
  z-index: 2;
  width: 50%;
  max-height: 70%;
  left: 8%;
  bottom: 8%;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(0,0,0,.16));
}
.stage-oil {
  position: absolute;
  z-index: 3;
  width: 39%;
  max-height: 76%;
  right: 7%;
  bottom: 6%;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(0,0,0,.18));
}
.stage-label {
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 5;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.marquee { overflow: hidden; color: #fff; background: var(--ink); }
.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  padding: 18px 34px;
  font-family: var(--serif);
  font-size: 22px;
  white-space: nowrap;
}
.marquee-track span::after { content: "◆"; margin-left: 68px; color: var(--gold-light); font-size: 9px; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* General sections */
.section { padding: 112px 0; }
.section-line { border-top: 1px solid var(--line); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
  gap: 55px;
  align-items: end;
  margin-bottom: 48px;
}
.intro-grid,
.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 8vw;
  align-items: start;
}
.big-quote {
  max-width: 650px;
  margin: 0;
  font-size: clamp(40px, 5vw, 69px);
  line-height: 1.08;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-link::after { content: "↗"; }

.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.category-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  padding: 30px;
  border-right: 1px solid var(--line);
  transition: background .25s ease;
}
.category-card:last-child { border-right: 0; }
.category-card:hover { background: rgba(255,255,255,.42); }
.card-number { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.category-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 38px; font-weight: 400; }
.category-card p { margin: 0; color: var(--muted); }
.category-card .arrow { position: absolute; right: 30px; top: 26px; font-size: 22px; }

.species-list { border-top: 1px solid var(--line); }
.species-row {
  display: grid;
  grid-template-columns: 55px minmax(240px, 1.2fr) minmax(190px, .9fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 102px;
  border-bottom: 1px solid var(--line);
}
.species-row > span { color: var(--gold); font-size: 10px; font-weight: 800; }
.species-row h3 { margin: 0; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.species-row em { color: var(--muted); font-size: 14px; }
.species-row small { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric { padding: 42px 30px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font-family: var(--serif); font-size: clamp(54px, 6vw, 84px); font-weight: 400; line-height: 1; }
.metric span { display: block; margin-top: 12px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

.product-showcase { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.product-feature {
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 38px;
  border-radius: 28px;
  background: var(--white);
  overflow: hidden;
}
.product-feature.dark { color: #fff; background: var(--forest); }
.product-feature.dark p { color: rgba(255,255,255,.68); }
.product-feature h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 46px; font-weight: 400; }
.product-feature p { max-width: 470px; color: var(--muted); }
.product-feature img { align-self: end; justify-self: center; max-height: 300px; width: auto; object-fit: contain; filter: drop-shadow(0 24px 20px rgba(0,0,0,.15)); }

.b2b-panel {
  padding: clamp(44px, 7vw, 88px);
  border-radius: 30px;
  color: #fff;
  background: var(--ink);
}
.b2b-panel .lead { margin-top: 22px; color: rgba(255,255,255,.68); }
.b2b-panel .btn { margin-top: 32px; }
.quote-band { padding: 95px 0; color: #fff; background: var(--forest); }
.quote-band blockquote { max-width: 940px; margin: 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 70px); line-height: 1.05; }
.quote-band cite { display: block; margin-top: 28px; font-family: var(--sans); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }

/* Internal pages */
.page-hero {
  min-height: 510px;
  display: flex;
  align-items: end;
  padding: 120px 0 78px;
}
.page-hero.dark { color: #fff; background: var(--ink); }
.page-hero .lead { margin-top: 28px; }
.page-hero.dark .lead { color: rgba(255,255,255,.68); }
.story-grid .sticky { position: sticky; top: 120px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.28); }
.value-index { color: var(--gold); font-size: 10px; font-weight: 800; }
.value-card h3 { margin: 88px 0 14px; font-family: var(--serif); font-size: 38px; font-weight: 400; }
.value-card p { color: var(--muted); }

.truffle-details-list { border-top: 1px solid var(--line); }
.truffle-detail { border-bottom: 1px solid var(--line); }
.truffle-detail summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto 42px;
  align-items: center;
  gap: 24px;
  min-height: 126px;
  padding: 18px 0;
  list-style: none;
  cursor: pointer;
}
.truffle-detail summary::-webkit-details-marker { display: none; }
.truffle-detail .index { color: var(--gold); font-size: 10px; font-weight: 800; }
.truffle-detail h3 { margin: 0; font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 400; }
.truffle-detail .latin { color: var(--muted); font-size: 13px; font-style: italic; }
.truffle-detail .period { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.detail-plus { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 24px; transition: transform .25s ease; }
.truffle-detail[open] .detail-plus { transform: rotate(45deg); }
.truffle-detail-body { max-width: 1040px; padding: 0 0 38px 76px; }
.truffle-detail-body > p { max-width: 790px; margin: 0 0 24px; color: var(--muted); font-size: 18px; }
.truffle-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.truffle-facts div { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.35); }
.truffle-facts strong { display: block; margin-bottom: 6px; color: var(--gold); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.truffle-facts span { color: var(--muted); }

.calendar { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; }
.calendar table { width: 100%; min-width: 900px; border-collapse: collapse; }
.calendar th,
.calendar td { padding: 16px 12px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; font-size: 11px; }
.calendar th:first-child,
.calendar td:first-child { position: sticky; left: 0; z-index: 1; min-width: 190px; background: var(--paper); text-align: left; font-weight: 800; }
.calendar .on { color: #fff; background: var(--forest); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { min-height: 510px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: rgba(255,255,255,.3); }
.product-visual { min-height: 300px; display: grid; place-items: center; background: var(--white); }
.product-visual img { max-height: 255px; max-width: 72%; object-fit: contain; }
.product-placeholder { width: 66%; aspect-ratio: 1; background: url('../images/truffle-line.svg') center / contain no-repeat; opacity: .34; }
.product-card-body { display: flex; flex-direction: column; flex: 1; padding: 26px; }
.product-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.product-card p { margin: 0 0 24px; color: var(--muted); }
.product-card .text-link { margin-top: auto; align-self: flex-start; }

.catalogue-panel { display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.catalogue-cover { min-height: 620px; display: flex; flex-direction: column; justify-content: space-between; padding: 42px; color: #fff; background: var(--ink); }
.catalogue-cover h2 { margin: 0; font-family: var(--serif); font-size: clamp(58px, 7vw, 94px); font-weight: 400; line-height: .9; }
.catalogue-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 7vw, 82px); }
.catalogue-copy .lead { margin-top: 24px; }
.catalogue-copy ul { margin: 28px 0 32px; padding: 0; list-style: none; }
.catalogue-copy li { padding: 13px 0; border-bottom: 1px solid var(--line); }

.contact-grid { grid-template-columns: .78fr 1.22fr; }
.contact-list { margin-top: 35px; border-top: 1px solid var(--line); }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item span { display: block; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-item strong { display: block; margin-top: 5px; font-size: 16px; font-weight: 500; }
.contact-form { padding: clamp(30px, 5vw, 56px); border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.field input,
.field select,
.field textarea { width: 100%; padding: 14px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fbf8f1; outline: none; }
.field textarea { min-height: 145px; resize: vertical; }
.form-status { font-size: 12px; }
.honeypot { position: absolute; left: -9999px; }

/* Footer */
.site-footer { padding: 76px 0 28px; color: #fff; background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.35fr .7fr .8fr .9fr; gap: 44px; padding-bottom: 60px; }
.footer-brand img { width: 210px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 360px; margin-top: 18px; color: rgba(255,255,255,.55); }
.footer-col h4 { margin: 0 0 18px; color: var(--gold-light); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.footer-col a,
.footer-col p { display: block; margin: 0 0 10px; color: rgba(255,255,255,.68); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.44); font-size: 10px; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 880px;
  margin: auto;
  padding: 17px 19px;
  border-radius: 16px;
  color: #fff;
  background: rgba(21,21,17,.97);
  box-shadow: var(--shadow);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.7); font-size: 12px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { padding: 9px 14px; border: 0; border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cookie-accept { color: var(--ink); background: var(--gold-light); }
.cookie-close { color: #fff; background: rgba(255,255,255,.1); }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 170px minmax(0, 1fr) auto; }
  .brand img { width: 150px; }
  .shop-btn { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: 44px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --container: min(100% - 34px, 1220px); }
  .site-header { height: 72px; }
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .brand img { width: 142px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .nav-list { flex-direction: column; gap: 25px; }
  .nav-link { font-family: var(--serif); font-size: clamp(30px, 6vw, 48px); font-weight: 400; letter-spacing: -.025em; text-transform: none; }
  .nav-link::after { bottom: -4px; }
  .header-actions { gap: 8px; }

  .intro-sequence { height: 290vh; }
  .intro-logo { width: min(480px, 84vw); }
  .intro-kicker { bottom: 17vh; line-height: 1.6; }
  .intro-statement { font-size: clamp(36px, 7vw, 58px); }

  .hero { min-height: auto; padding: 105px 0 86px; }
  .hero-grid,
  .section-head,
  .intro-grid,
  .story-grid,
  .contact-grid,
  .catalogue-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 60px; }
  .product-stage { min-height: 540px; max-width: 650px; width: 100%; margin-inline: auto; }
  .section { padding: 88px 0; }
  .section-head { gap: 24px; margin-bottom: 35px; }
  .story-grid .sticky { position: static; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line); }
  .category-card:last-child { border-bottom: 0; }
  .species-row { grid-template-columns: 46px minmax(0, 1fr) auto; gap: 16px; padding: 18px 0; }
  .species-row em { grid-column: 2; }
  .species-row small { grid-column: 3; grid-row: 1 / span 2; }
  .values-grid { grid-template-columns: 1fr; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-feature { min-height: 520px; }
  .truffle-detail summary { grid-template-columns: 42px minmax(0, 1fr) 38px; gap: 13px; }
  .truffle-detail .period { grid-column: 2; }
  .truffle-detail .detail-plus { grid-column: 3; grid-row: 1 / span 2; }
  .truffle-detail-body { padding-left: 55px; }
  .truffle-facts { grid-template-columns: 1fr; }
  .catalogue-cover { min-height: 480px; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 24px); }
  .announcement { font-size: 8px; }
  .site-header { height: 68px; }
  .site-nav { top: 68px; }
  .brand img { width: 128px; }
  .lang-btn { min-width: 32px; height: 32px; padding: 0 8px; }
  .menu-toggle { width: 38px; height: 38px; }

  .intro-sequence { height: 270vh; }
  .intro-logo-layer { padding: 18px; }
  .intro-logo { width: min(390px, 86vw); }
  .intro-kicker { bottom: 18vh; width: calc(100% - 36px); font-size: 9px; }
  .intro-scroll { bottom: 5vh; }
  .intro-copy-layer { padding-inline: 18px; }
  .intro-statement { font-size: clamp(34px, 10vw, 48px); line-height: 1.08; }
  .intro-video-caption { font-size: 8px; line-height: 1.5; }

  .hero { padding: 92px 0 72px; }
  .display { font-size: clamp(48px, 15vw, 72px); }
  .hero-copy .lead { margin-top: 24px; font-size: 17px; }
  .btn-row { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .product-stage { min-height: 430px; border-radius: 34% 34% 22px 22px; }
  .stage-circle { width: 290px; height: 290px; }
  .stage-jar { width: 55%; left: 2%; }
  .stage-oil { width: 44%; right: 0; }
  .stage-label { width: 76px; height: 76px; right: 16px; top: 16px; font-size: 7px; }

  .section { padding: 72px 0; }
  .section-title { font-size: clamp(39px, 12vw, 56px); }
  .big-quote { font-size: clamp(38px, 11vw, 54px); }
  .prose p { font-size: 16px; }
  .category-card { min-height: 240px; padding: 24px 6px; }
  .category-card .arrow { right: 6px; }
  .category-card h3 { font-size: 34px; }
  .species-row { grid-template-columns: 36px minmax(0, 1fr); }
  .species-row h3 { font-size: 29px; }
  .species-row em { grid-column: 2; }
  .species-row small { grid-column: 2; grid-row: auto; margin-top: 4px; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 4px; }
  .metric:last-child { border-bottom: 0; }
  .product-feature { min-height: 470px; padding: 26px; }
  .product-feature h3 { font-size: 39px; }
  .product-feature img { max-height: 235px; }
  .b2b-panel { border-radius: 22px; }

  .page-hero { min-height: 430px; padding: 100px 0 60px; }
  .truffle-detail summary { grid-template-columns: 34px minmax(0, 1fr) 34px; padding: 16px 0; }
  .truffle-detail h3 { font-size: 30px; }
  .truffle-detail .period { font-size: 8px; }
  .detail-plus { width: 34px; height: 34px; }
  .truffle-detail-body { padding: 0 0 30px 47px; }
  .truffle-detail-body > p { font-size: 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 480px; }
  .catalogue-cover { min-height: 400px; padding: 28px; }
  .catalogue-copy { padding: 34px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions button { flex: 1; }
}

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

/* =========================================================
   V5 — Danti luxury identity
   Geometric truffles, gold lines, editorial photography,
   private label and corrected mobile drawer.
   ========================================================= */
:root {
  --charcoal: #171714;
  --charcoal-soft: #23231f;
  --cream: #f7f1e7;
  --cream-deep: #e9dcc5;
  --gold-deep: #a9792d;
}

/* Shared geometric language */
.page-hero,
.brand-manifesto,
.metrics-section,
.b2b-panel,
.private-label-preview,
.private-process-section,
.products-page-hero { position: relative; overflow: hidden; }
.section-diamond,
.metrics-diamond,
.b2b-diamond,
.page-hero-diamond,
.private-hero-diamond {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.section-diamond-left {
  width: min(520px, 44vw);
  left: -170px;
  bottom: -190px;
  opacity: .07;
  transform: rotate(-12deg);
}

/* Intro identity */
.intro-logo-layer {
  background:
    linear-gradient(135deg, rgba(184,139,63,.08), transparent 36%),
    radial-gradient(circle at 50% 44%, rgba(184,139,63,.15), transparent 34%),
    var(--paper);
}
.intro-diamond {
  position: absolute;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.intro-diamond-faceted {
  width: min(620px, 52vw);
  left: -8vw;
  bottom: -18vw;
  opacity: .09;
  transform: rotate(-16deg);
}
.intro-diamond-line {
  width: min(680px, 56vw);
  right: -12vw;
  top: -14vw;
  opacity: .17;
  transform: rotate(18deg);
}
.intro-copy-layer { overflow: hidden; }
.intro-copy-diamond {
  position: absolute;
  width: min(780px, 62vw);
  right: -240px;
  bottom: -310px;
  opacity: .09;
  transform: rotate(12deg);
  pointer-events: none;
}

/* Header refinements */
.header-inner { grid-template-columns: 190px minmax(0, 1fr) auto; }
.nav-list { gap: clamp(13px, 1.45vw, 25px); }
.nav-link { font-size: 10px; letter-spacing: .085em; }
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(21,21,17,.05); }

/* Editorial hero */
.luxury-hero {
  min-height: 880px;
  padding-top: 125px;
  background:
    linear-gradient(90deg, transparent 0 60%, rgba(184,139,63,.06) 60% 100%),
    var(--paper);
}
.luxury-hero-grid { grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(48px, 7vw, 110px); }
.luxury-hero-visual {
  position: relative;
  min-height: 690px;
  margin: 0;
  border-radius: 180px 0 0 0;
  overflow: hidden;
  box-shadow: 0 35px 85px rgba(20,18,13,.22);
  background: var(--charcoal);
}
.luxury-hero-visual > img:first-child { width: 100%; height: 100%; min-height: 690px; object-fit: cover; }
.luxury-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,12,10,.55));
}
.luxury-hero-visual figcaption {
  position: absolute;
  z-index: 3;
  left: 34px;
  bottom: 30px;
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.gold-corner {
  position: absolute;
  z-index: 3;
  inset: 20px;
  border-top: 1px solid rgba(216,189,134,.85);
  border-right: 1px solid rgba(216,189,134,.85);
  pointer-events: none;
}
.visual-diamond {
  position: absolute;
  z-index: 2;
  width: 310px;
  right: -80px;
  top: -75px;
  opacity: .25;
  transform: rotate(18deg);
}

/* Editorial gallery */
.section-dark { color: var(--white); background: var(--charcoal); }
.section-dark .lead { color: rgba(255,255,255,.62); }
.section-dark .section-title { color: var(--white); }
.editorial-gallery {
  background:
    radial-gradient(circle at 10% 20%, rgba(184,139,63,.13), transparent 24%),
    var(--charcoal);
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
  align-items: stretch;
}
.editorial-card {
  position: relative;
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #0d0d0c;
}
.editorial-card-wide { min-height: 580px; }
.editorial-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.editorial-card:hover img { transform: scale(1.025); }
.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8,8,7,.76));
}
.editorial-card figcaption {
  position: absolute;
  z-index: 2;
  left: 25px;
  right: 25px;
  bottom: 24px;
}
.editorial-card figcaption span { display: block; font-family: var(--serif); font-size: 29px; }
.editorial-card figcaption small { display: block; max-width: 310px; margin-top: 7px; color: rgba(255,255,255,.65); line-height: 1.5; }

/* Categories and gold signature lines */
.categories-luxury::before,
.private-process-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0, var(--gold) 22%, var(--gold) 78%, transparent 100%);
  opacity: .62;
}
.categories-luxury .category-card { background: rgba(255,253,248,.3); }
.categories-luxury .category-card:hover { background: var(--white); }

/* Private label preview */
.private-label-preview { color: #fff; background: var(--forest); }
.private-label-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background: linear-gradient(125deg, transparent 0 48%, rgba(216,189,134,.4) 48.1% 48.25%, transparent 48.35% 100%);
}
.private-label-preview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
}
.private-label-copy .section-title { max-width: 680px; color: #fff; }
.private-label-copy .lead { margin-top: 25px; color: rgba(255,255,255,.68); }
.private-preview-points { display: grid; gap: 0; margin: 30px 0 34px; border-top: 1px solid rgba(255,255,255,.18); }
.private-preview-points span { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.private-label-art { position: relative; min-height: 670px; }
.private-photo { width: 78%; height: 100%; min-height: 670px; margin-left: auto; object-fit: cover; border-radius: 0 0 170px 0; box-shadow: 0 30px 75px rgba(0,0,0,.34); }
.private-diamond { position: absolute; width: 360px; left: -30px; bottom: -60px; opacity: .18; transform: rotate(-12deg); }
.private-gold-line { position: absolute; left: 4%; right: 3%; top: 40px; height: 1px; background: var(--gold-light); transform: rotate(-8deg); transform-origin: left; }

/* Metrics */
.metrics-section { background: linear-gradient(180deg, var(--paper) 0%, var(--cream-deep) 100%); }
.metrics-diamond { width: 440px; right: -140px; bottom: -210px; opacity: .08; transform: rotate(18deg); }

/* Photo product features */
.luxury-products .product-feature-photo {
  position: relative;
  min-height: 690px;
  display: block;
  padding: 0;
  border-radius: 26px;
  background: #111;
}
.product-feature-photo > img { width: 100%; height: 100%; max-height: none; object-fit: cover; filter: none; }
.product-feature-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(10,10,8,.86)); }
.product-photo-copy { position: absolute; z-index: 2; left: 35px; right: 35px; bottom: 34px; color: #fff; }
.product-photo-copy p { color: rgba(255,255,255,.72); }
.product-photo-copy .text-link { color: #fff; }

/* B2B motif */
.b2b-panel { isolation: isolate; }
.b2b-panel > *:not(.b2b-diamond) { position: relative; z-index: 2; }
.b2b-diamond { z-index: 1; width: 520px; right: -145px; bottom: -240px; opacity: .12; transform: rotate(15deg); }
.btn-gold-outline { color: var(--gold-light); border-color: rgba(216,189,134,.7); background: transparent; }
.btn-gold-outline:hover { color: var(--ink); background: var(--gold-light); }

/* Product page photographs */
.products-page-hero { background: linear-gradient(135deg, var(--paper) 0%, var(--cream-deep) 100%); }
.page-hero-diamond { width: 490px; right: -100px; bottom: -250px; opacity: .1; transform: rotate(16deg); }
.products-grid-photo .product-card { min-height: 570px; background: var(--white); }
.product-card-photo .product-visual { min-height: 355px; overflow: hidden; background: #151512; }
.product-card-photo .product-visual img { width: 100%; height: 355px; max-height: none; max-width: none; object-fit: cover; transition: transform .65s ease; }
.product-card-photo:hover .product-visual img { transform: scale(1.025); }
.product-card-private { color: #fff; background: var(--forest); }
.product-card-private .product-card-body p { color: rgba(255,255,255,.64); }
.product-card-private .text-link { color: #fff; }
.product-private-art { position: relative; min-height: 355px; display: grid; place-items: center; overflow: hidden; background: var(--charcoal); }
.product-private-art img { position: absolute; width: 360px; opacity: .18; transform: rotate(-10deg); }
.product-private-art span { position: relative; z-index: 2; font-family: var(--serif); font-size: 58px; line-height: .86; text-align: center; }

/* Private label page */
.private-page-hero { min-height: 720px; padding-top: 150px; }
.private-hero-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: center; }
.private-page-hero .container { position: relative; z-index: 2; }
.private-hero-diamond { width: 670px; left: -230px; bottom: -340px; opacity: .1; transform: rotate(-14deg); }
.private-hero-photo { height: 500px; margin: 0; overflow: hidden; border-radius: 150px 0 0 0; border: 1px solid rgba(216,189,134,.55); }
.private-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.private-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.private-step { min-height: 380px; padding: 30px; border-right: 1px solid var(--line); }
.private-step:last-child { border-right: 0; }
.private-step > span { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.private-step h3 { margin: 120px 0 15px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.private-step p { color: var(--muted); }
.private-capabilities { color: #fff; background: var(--charcoal); }
.private-capabilities .section-title { color: #fff; }
.private-capabilities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.capabilities-photo { min-height: 670px; margin: 0; overflow: hidden; border-radius: 0 160px 0 0; }
.capabilities-photo img { width: 100%; height: 670px; object-fit: cover; }
.capabilities-list { margin: 38px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.capabilities-list li { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.72); }
.private-cta .b2b-diamond { width: 430px; bottom: -160px; opacity: .08; }

/* Correct mobile hamburger drawer: opaque background + real overlay */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1990;
  border: 0;
  background: rgba(0,0,0,.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
body.menu-open .menu-backdrop { opacity: 1; visibility: visible; pointer-events: auto; }

@media (max-width: 1120px) {
  .site-header { z-index: 2000; backdrop-filter: none; }
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .brand img { width: 145px; }
  .shop-btn { display: none; }
  .menu-toggle { position: relative; z-index: 2003; display: block; background: var(--paper); }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: min(86vw, 390px);
    height: 100vh;
    height: 100dvh;
    z-index: 2002;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 36px 45px;
    background: var(--paper);
    box-shadow: -22px 0 60px rgba(0,0,0,.18);
    opacity: 1;
    visibility: visible;
    transform: translateX(105%);
    pointer-events: auto;
    overflow-y: auto;
    transition: transform .34s ease;
  }
  body.menu-open .site-nav { right: 0; opacity: 1; visibility: visible; transform: translateX(0); }
  .nav-list { width: 100%; flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-list li { width: 100%; }
  .nav-link {
    display: block;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(26px, 6vw, 38px);
    font-weight: 400;
    letter-spacing: -.025em;
    text-transform: none;
  }
  .nav-link::after { display: none; }
}

@media (max-width: 980px) {
  .luxury-hero { min-height: auto; padding: 110px 0 85px; }
  .luxury-hero-grid,
  .private-label-preview-grid,
  .private-hero-grid,
  .private-capabilities-grid { grid-template-columns: 1fr; }
  .luxury-hero-visual { min-height: 620px; border-radius: 100px 0 0 0; }
  .luxury-hero-visual > img:first-child { min-height: 620px; }
  .editorial-grid { grid-template-columns: 1fr 1fr; }
  .editorial-card-wide { grid-column: 1 / -1; }
  .private-label-art { min-height: 590px; }
  .private-photo { min-height: 590px; width: 84%; }
  .private-steps { grid-template-columns: 1fr 1fr; }
  .private-step:nth-child(2) { border-right: 0; }
  .private-step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .private-page-hero { padding-bottom: 80px; }
  .private-hero-photo { height: 520px; }
  .capabilities-photo { min-height: 580px; }
  .capabilities-photo img { height: 580px; }
}

@media (max-width: 620px) {
  .site-nav { top: 0; padding: 102px 26px 34px; }
  .brand img { width: 126px; }
  .menu-toggle { background: var(--paper); }
  body.menu-open .site-header { background: transparent; box-shadow: none; }

  .intro-diamond-faceted { width: 82vw; left: -32vw; bottom: -14vw; }
  .intro-diamond-line { width: 84vw; right: -33vw; top: -16vw; }
  .intro-copy-diamond { width: 100vw; right: -55vw; bottom: -34vw; }

  .luxury-hero { padding-top: 88px; }
  .luxury-hero-visual { min-height: 520px; border-radius: 70px 0 0 0; }
  .luxury-hero-visual > img:first-child { min-height: 520px; }
  .luxury-hero-visual figcaption { left: 20px; right: 20px; bottom: 18px; font-size: 8px; }
  .gold-corner { inset: 12px; }
  .visual-diamond { width: 210px; right: -75px; top: -55px; }

  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card-wide { grid-column: auto; }
  .editorial-card { min-height: 500px; }
  .editorial-card-wide { min-height: 390px; }
  .editorial-card figcaption span { font-size: 25px; }

  .private-label-preview-grid { gap: 48px; }
  .private-label-art { min-height: 510px; }
  .private-photo { width: 90%; min-height: 510px; border-radius: 0 0 100px 0; }
  .private-diamond { width: 245px; left: -70px; bottom: -50px; }

  .luxury-products .product-feature-photo { min-height: 560px; }
  .product-photo-copy { left: 24px; right: 24px; bottom: 23px; }
  .product-photo-copy h3 { font-size: 36px; }

  .products-grid-photo .product-card { min-height: 520px; }
  .product-card-photo .product-visual,
  .product-card-photo .product-visual img,
  .product-private-art { min-height: 315px; height: 315px; }
  .product-private-art span { font-size: 47px; }

  .private-page-hero { min-height: auto; padding-top: 115px; }
  .private-hero-photo { height: 410px; border-radius: 80px 0 0 0; }
  .private-steps { grid-template-columns: 1fr; }
  .private-step { min-height: auto; padding: 26px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .private-step:last-child { border-bottom: 0; }
  .private-step h3 { margin: 55px 0 12px; font-size: 32px; }
  .capabilities-photo { min-height: 470px; border-radius: 0 90px 0 0; }
  .capabilities-photo img { height: 470px; }
}


/* Company video */
.company-video-section { padding-top: 35px; }
.company-video-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(38px, 6vw, 86px); align-items: center; }
.company-video-copy .lead { margin-top: 24px; }
.company-video-frame { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: var(--ink); border: 1px solid rgba(184,139,63,.34); box-shadow: var(--shadow); }
.company-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 980px) { .company-video-grid { grid-template-columns: 1fr; } }
@media (max-width: 620px) {
  .lang-btn { min-width: 30px; height: 32px; padding: 0 7px; }
  .lang-switch { gap: 0; }
}


/* Legal pages, VAT and cookie consent */
.footer-vat { margin: 4px 0 8px; color: rgba(255,255,255,.62); font-size: 12px; }
.footer-cookie-button { padding: 0; border: 0; color: inherit; background: none; font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.legal-page-hero { padding-bottom: 70px; }
.legal-updated { margin-top: 26px; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.legal-section { padding-top: 60px; }
.legal-content { max-width: 900px; margin: 0 auto; }
.legal-content h2 { margin: 52px 0 16px; font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 400; line-height: 1.05; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: 0 0 20px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.legal-content a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.legal-table { margin: 24px 0 28px; border-top: 1px solid var(--line); }
.legal-table > div { display: grid; grid-template-columns: minmax(170px,.35fr) 1fr; gap: 25px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.legal-table span { color: var(--muted); }
.contact-form a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }

.cookie-consent { position: fixed; left: 22px; right: 22px; bottom: 22px; z-index: 4000; display: none; align-items: center; justify-content: space-between; gap: 30px; max-width: 1180px; margin: 0 auto; padding: 22px 24px; color: #fff; background: rgba(18,24,19,.98); border: 1px solid rgba(216,189,134,.34); box-shadow: 0 22px 70px rgba(0,0,0,.28); }
.cookie-consent.show { display: flex; }
.cookie-consent-copy { max-width: 660px; }
.cookie-consent-copy strong { display: block; margin-bottom: 7px; font-family: var(--serif); font-size: 24px; font-weight: 400; }
.cookie-consent-copy p { margin: 0 0 7px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.55; }
.cookie-consent-copy a { color: var(--gold-light); font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; min-width: 360px; }
.btn-cookie { min-height: 42px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 0; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.btn-cookie.primary { color: var(--ink); border-color: var(--gold-light); background: var(--gold-light); }
.btn-cookie.secondary { color: #fff; background: transparent; }

.cookie-modal { position: fixed; inset: 0; z-index: 4100; display: none; place-items: center; padding: 20px; }
.cookie-modal.show { display: grid; }
.cookie-modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.58); }
.cookie-modal-panel { position: relative; z-index: 2; width: min(640px,100%); max-height: min(760px,90vh); overflow: auto; padding: 34px; background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.32); }
.cookie-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.cookie-modal-head h2 { margin: 0; font-family: var(--serif); font-size: 42px; font-weight: 400; }
.cookie-x { width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; font-size: 28px; cursor: pointer; }
.cookie-modal-intro { margin: 18px 0 28px; color: var(--muted); line-height: 1.65; }
.cookie-option { display: flex; justify-content: space-between; align-items: center; gap: 28px; padding: 22px 0; border-top: 1px solid var(--line); }
.cookie-option strong { display: block; margin-bottom: 6px; font-size: 14px; }
.cookie-option p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.switch { position: relative; flex: 0 0 auto; width: 48px; height: 26px; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch span { position: absolute; inset: 0; border-radius: 999px; background: #c8c7c0; cursor: pointer; transition: .2s; }
.switch span::after { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; border-radius: 50%; background: #fff; box-shadow: 0 1px 5px rgba(0,0,0,.2); transition: .2s; }
.switch input:checked + span { background: var(--forest); }
.switch input:checked + span::after { transform: translateX(22px); }
.switch input:disabled + span { opacity: .55; cursor: not-allowed; }
.cookie-modal-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; border-top: 1px solid var(--line); }

.company-video-frame { display: grid; place-items: center; }
.youtube-privacy-card { display: grid; place-items: center; min-height: 100%; padding: clamp(28px,5vw,60px); text-align: center; color: #fff; background: radial-gradient(circle at 50% 20%, rgba(184,139,63,.18), transparent 45%), var(--charcoal); }
.youtube-play { display: grid; place-items: center; width: 72px; height: 72px; margin-bottom: 22px; border: 1px solid rgba(216,189,134,.55); border-radius: 50%; color: var(--gold-light); font-size: 24px; }
.youtube-privacy-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(28px,3vw,40px); font-weight: 400; }
.youtube-privacy-card p { max-width: 560px; margin: 0 0 24px; color: rgba(255,255,255,.68); line-height: 1.65; }
.youtube-privacy-card .btn { cursor: pointer; }

@media (max-width: 820px) {
  .cookie-consent { align-items: stretch; flex-direction: column; }
  .cookie-consent-actions { justify-content: stretch; min-width: 0; }
  .cookie-consent-actions .btn-cookie { flex: 1 1 160px; }
}
@media (max-width: 620px) {
  .cookie-consent { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
  .cookie-consent-actions { flex-direction: column; }
  .cookie-consent-actions .btn-cookie { flex: 0 0 auto; width: 100%; }
  .cookie-modal-panel { padding: 24px 20px; }
  .cookie-modal-head h2 { font-size: 34px; }
  .cookie-modal-actions { align-items: stretch; flex-direction: column; }
  .cookie-modal-actions .btn-cookie { width: 100%; }
  .legal-table > div { grid-template-columns: 1fr; gap: 7px; }
}

/* Footer brand + social refinements */
.footer-brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
}
.footer-brand .footer-brand-symbol {
  width: 112px;
  height: auto;
  filter: none;
  object-fit: contain;
}
.footer-brand-name {
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .22em;
  line-height: 1.15;
}
.footer-social-block { margin-top: 24px; }
.footer-social-block h4 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer-social-links { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.footer-social-links a:hover { color: #fff; }
.footer-social-links svg { width: 17px; height: 17px; fill: currentColor; flex: 0 0 auto; }

@media (max-width: 720px) {
  .footer-brand .footer-brand-symbol { width: 98px; }
  .footer-brand-name { font-size: 17px; }
}
