:root {
  --ink: #17130f;
  --muted: #6b5d50;
  --paper: #ece8dc;
  --cream: #fbf8ee;
  --panel: #ded6c4;
  --line: rgba(94, 61, 35, .22);
  --brand: #704019;
  --brand-dark: #3b2113;
  --leaf: #63a55a;
  --green-dark: #2f4a2b;
  --gold: #b78a43;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(23, 19, 15, .18);
  --radius: 8px;
  font-family: Montserrat, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Montserrat, Arial, sans-serif; line-height: 1.62; }
body[data-lang="fr"] [data-en],
body[data-lang="en"] [data-fr],
body[data-lang="da"] [data-en],
body[data-lang="no"] [data-en],
body[data-lang="sv"] [data-en] { display: none !important; }

.norway-buy-link,
.denmark-buy-link,
.quebec-buy-link { display: none !important; }
body[data-lang="no"] .norway-buy-link { display: inline-flex !important; }
body[data-lang="da"] .denmark-buy-link { display: inline-flex !important; }
body[data-market="qc"] .quebec-buy-link { display: inline-flex !important; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 50; background: var(--ink); color: var(--white); padding: 10px 14px; }
.skip-link:focus { top: 16px; }
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(94, 61, 35, .18); background: rgba(236, 232, 220, .92); backdrop-filter: blur(14px); }
.home-page .site-header { position: fixed; left: 0; right: 0; background: rgba(0,0,0,.35); border-bottom-color: rgba(255,255,255,.08); }
.nav { width: min(1240px, calc(100% - 40px)); min-height: 86px; margin: 0 auto; display: flex; align-items: center; gap: 22px; }
.home-page .nav { min-height: 100px; }
.brand img { width: 168px; }
.home-page .brand img { width: 200px; filter: brightness(0) invert(1); }
.nav-toggle, .lang-toggle { border: 1px solid var(--line); background: var(--cream); color: var(--ink); min-height: 42px; border-radius: var(--radius); font-weight: 800; cursor: pointer; }
.nav-toggle { display: none; margin-left: auto; padding: 0 12px; }
.lang-toggle { min-width: 46px; }
.lang-menu {
  position: relative;
  display: inline-flex;
}
.lang-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 35;
  min-width: 84px;
  padding: 8px;
  border: 1px solid rgba(94, 61, 35, .18);
  background: var(--cream);
  box-shadow: 0 16px 34px rgba(23,19,15,.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.lang-menu.is-open .lang-menu-panel,
.lang-menu:hover .lang-menu-panel,
.lang-menu:focus-within .lang-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: block;
  width: 100%;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-family: Montserrat, Arial, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.lang-option:hover,
.lang-option:focus-visible,
.lang-option[aria-current="true"] {
  background: rgba(94, 61, 35, .08);
}
.header-bio { display: none; }
.home-page .header-bio {
  display: block;
  width: 112px;
  height: auto;
  align-self: center;
  object-fit: contain;
  padding: 0;
  margin-left: 4px;
  background: transparent;
}
.nav-links { display: flex; align-items: center; gap: 14px; margin-left: auto; font-size: .94rem; }
.nav-links a { text-decoration: none; color: var(--muted); padding: 10px 2px; white-space: nowrap; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; font-weight: 800; }
.nav-dropdown { position: relative; padding: 18px 0; }
.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 4px);
  z-index: 30;
  min-width: 178px;
  padding: 16px 0;
  background: #6fa663;
  box-shadow: 0 16px 34px rgba(23,19,15,.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-links .dropdown-menu a,
.home-page .nav-links .dropdown-menu a {
  display: block;
  padding: 8px 22px;
  color: #fff;
  font-size: .72rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links .dropdown-menu a:hover,
.nav-links .dropdown-menu a:focus-visible {
  background: rgba(255,255,255,.13);
  color: #fff;
}
.home-page .nav-links a { color: rgba(255,255,255,.9); }
.home-page .lang-toggle {
  border: 0;
  background: transparent;
  color: #fff;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: .95rem;
  min-width: auto;
}
.home-page .lang-menu-panel {
  border: 0;
  background: rgba(236,232,220,.96);
}
.nav-links a[aria-current="page"], .nav-links a:hover { color: var(--green-dark); }
.home-page .nav-links a[aria-current="page"], .home-page .nav-links a:hover { color: var(--white); }
.page-hero { min-height: 66vh; padding: 150px 0 82px; display: grid; align-items: end; color: var(--cream); background: linear-gradient(90deg, rgba(23,19,15,.82), rgba(23,19,15,.38), rgba(23,19,15,.08)), var(--hero-image) center / cover; border-bottom: 1px solid var(--line); }
.home-page .page-hero { background: linear-gradient(90deg, rgba(23,19,15,.78), rgba(23,19,15,.28), rgba(23,19,15,.02)), var(--hero-image) center / cover; }
.home-page .page-hero { min-height: 100svh; padding-top: 170px; }
.home-page .page-hero::after { content: ""; position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; height: 110px; background: linear-gradient(0deg, var(--paper), rgba(236,232,220,0)); pointer-events: none; }
.page-hero { position: relative; }
.video-hero {
  overflow: hidden;
  background: #21170f;
}
.video-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(23,19,15,.72), rgba(23,19,15,.34), rgba(23,19,15,.18));
}
.video-hero .section-inner {
  position: relative;
  z-index: 2;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-inner { width: min(1240px, calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 920px; }
section { padding: 74px 0; }
.soft { background: #e2dccd; }
.eyebrow { margin: 0 0 14px; color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; font-weight: 900; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.08; margin: 0; font-weight: 500; letter-spacing: 0; }
h1 { max-width: 900px; font-size: clamp(3.4rem, 8vw, 7.8rem); text-wrap: balance; }
h2 { font-size: clamp(2.05rem, 4vw, 4.2rem); text-wrap: balance; }
h3 { font-size: 1.38rem; }
.subhead { margin-top: 34px; font-size: clamp(1.45rem, 2vw, 2rem); }
p { margin: 18px 0 0; }
.lead { max-width: 760px; margin-top: 20px; font-size: clamp(1.08rem, 2vw, 1.35rem); color: rgba(255,255,255,.86); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 20px; border: 1px solid var(--brand); border-radius: 0; background: var(--brand); color: var(--white); text-decoration: none; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.button.secondary { background: transparent; color: inherit; border-color: currentColor; }
.text-link { display: inline-block; margin-top: 18px; color: var(--brand-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); gap: 62px; align-items: start; }
.split.wide { grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr); }
.editorial-intro { padding-top: 96px; background: var(--paper); }
.range-showcase { background: var(--cream); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-heading h2 { max-width: 760px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; margin-top: 28px; }
.product-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .feature-grid article, .media-steps article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--cream); box-shadow: 0 8px 24px rgba(27, 23, 18, .06); }
.product-card { position: relative; display: flex; flex-direction: column; gap: 12px; min-height: 100%; padding: 24px; text-decoration: none; color: var(--cream); background: radial-gradient(circle at 50% 22%, rgba(255,255,255,.18), transparent 34%), linear-gradient(160deg, #704019, #2a1a12); overflow: hidden; transition: transform .45s ease, box-shadow .45s ease; }
.product-card:nth-child(even) { background: radial-gradient(circle at 50% 22%, rgba(255,255,255,.18), transparent 34%), linear-gradient(160deg, #5e3d23, #263a24); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-card img { aspect-ratio: 4 / 5; width: 100%; object-fit: contain; filter: drop-shadow(0 26px 28px rgba(0,0,0,.34)); transform: scale(.94); transition: transform .45s ease; }
.product-card:hover img { transform: scale(1); }
.product-card p { color: rgba(255,255,255,.82); font-size: .94rem; }
.tag { align-self: flex-start; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.4); color: var(--leaf); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.product-card .tag { color: #d4c29c; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.media-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.media-steps img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; border-radius: var(--radius); margin-bottom: 18px; }
.image-band { min-height: 68vh; display: grid; align-items: end; color: var(--cream); background: linear-gradient(90deg, rgba(23,19,15,.84), rgba(23,19,15,.24)), var(--band-image) center / cover; }
.image-band h2 { max-width: 820px; margin-bottom: 26px; }
.product-detail { background: linear-gradient(90deg, var(--paper) 0 50%, var(--brand-dark) 50%); }
.product-layout { display: grid; grid-template-columns: minmax(280px, 48%) minmax(0, 1fr); gap: 2px; align-items: stretch; }
.product-image-panel { min-height: 680px; display: grid; place-items: center; padding: 42px; background: radial-gradient(circle at 50% 22%, #fff8e6, #d8cfbd 56%, #c7baa3); border: 1px solid var(--line); }
.product-image-panel img { width: 100%; max-height: 640px; object-fit: contain; filter: drop-shadow(0 32px 34px rgba(0,0,0,.28)); }
.product-layout > div:last-child { padding: clamp(34px, 6vw, 76px); background: var(--brand-dark); color: var(--cream); }
.product-layout > div:last-child p { color: rgba(255,255,255,.82); }
.meta-list { padding: 0; margin: 24px 0 0; list-style: none; border-top: 1px solid var(--line); }
.meta-list li { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.meta-list span { color: var(--muted); }
.dark-list { border-color: rgba(255,255,255,.24); }
.dark-list li { border-color: rgba(255,255,255,.24); }
.dark-list span { color: rgba(255,255,255,.62); }
.visit-page .page-hero {
  min-height: 48vh;
  padding: 150px 0 78px;
  text-align: center;
  align-items: center;
  background-image: linear-gradient(rgba(20,15,10,.42), rgba(20,15,10,.42)), var(--hero-image);
}
.visit-page .page-hero .narrow {
  margin-inline: auto;
}
.visit-map-section {
  display: grid;
  grid-template-columns: minmax(280px, 32%) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  border-top: 2px solid var(--paper);
  border-bottom: 2px solid var(--paper);
}
.visit-map-copy {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: clamp(34px, 5vw, 78px);
  background: #522E03;
  color: var(--paper);
  text-align: center;
}
.visit-map-copy h2,
.visit-map-copy h3 {
  margin: 0 0 18px;
  color: inherit;
  font-family: "Roboto Slab", Georgia, serif;
  line-height: 1.08;
}
.visit-map-copy h2 { font-size: clamp(1.45rem, 2.25vw, 2.2rem); }
.visit-map-copy h3 { margin-top: 24px; font-size: clamp(1.25rem, 1.9vw, 1.75rem); }
.visit-map-copy p {
  max-width: 440px;
  margin: 0 auto;
  color: rgba(255,255,255,.9);
  font-size: clamp(.88rem, 1vw, 1rem);
  line-height: 1.55;
}
.visit-map-copy p + p { margin-top: 10px; }
.visit-map-copy ul {
  max-width: 440px;
  margin: 16px auto 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.9);
  font-size: clamp(.86rem, .95vw, .98rem);
  line-height: 1.55;
}
.visit-map-link {
  width: fit-content;
  margin: 22px auto 0;
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
}
.visit-map-frame {
  min-height: 520px;
  background: #ded8c8;
}
.visit-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}
.pill-list, .check-list { padding-left: 20px; }
.pill-list li { margin: 8px 0; }
.note { margin-top: 24px; padding: 16px 18px; border-left: 4px solid var(--leaf); background: rgba(255,255,255,.12); }
.bio-logo { width: 98px; margin-top: 18px; }
.faq-item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.faq-item h2 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
.link-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.link-list a { padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; background: var(--white); }
.site-footer { padding: 70px 0; border-top: 1px solid rgba(255,255,255,.12); background: linear-gradient(rgba(23,19,15,.88), rgba(23,19,15,.88)), url('../img/brand/footer-landscape.jpg') center / cover; color: var(--paper); }
.footer-grid { width: min(1180px, calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.footer-logo { width: 150px; margin-bottom: 14px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.footer-links a { color: var(--paper); }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  pointer-events: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.footer-newsletter {
  grid-column: 1 / -1;
  max-width: 620px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(236,232,220,.24);
}
.footer-newsletter h2 {
  max-width: 560px;
  margin: 0 0 6px;
  color: var(--paper);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.25;
}
.footer-newsletter-consent {
  max-width: 620px;
  margin: 0 0 8px;
  color: rgba(236,232,220,.9);
  font-size: .92rem;
  font-style: italic;
  line-height: 1.45;
}
.footer-newsletter-consent a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 8px;
  align-items: stretch;
  max-width: 560px;
}
.footer-newsletter-form input {
  width: 100%;
  min-height: 42px;
  border: 2px solid rgba(236,232,220,.4);
  background: rgba(255,255,255,.96);
  color: var(--ink);
  padding: 0 14px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: .92rem;
  outline: none;
}
.footer-newsletter-form input::placeholder {
  color: rgba(23,19,15,.38);
}
.footer-newsletter-form input:focus {
  border-color: #87a4ee;
  box-shadow: 0 0 0 3px rgba(135,164,238,.35);
}
.footer-newsletter-form button {
  min-height: 42px;
  border: 0;
  background: rgba(255,255,255,.96);
  color: var(--brand);
  font-family: Montserrat, Arial, sans-serif;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.footer-newsletter-form button:disabled {
  cursor: wait;
  opacity: .65;
}
.footer-newsletter-form button:hover,
.footer-newsletter-form button:focus-visible {
  background: var(--paper);
}
.footer-newsletter-status {
  min-height: 1.5em;
  margin: 5px 0 0;
  color: rgba(236,232,220,.9);
  font-size: .78rem;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.small { color: #c9c0b1; font-size: .92rem; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
@media (max-width: 1060px) {
  .home-page .site-header { position: sticky; background: rgba(236, 232, 220, .92); }
  .home-page .brand img { filter: none; }
  .home-page .nav-links a { color: var(--muted); }
  .home-page .lang-toggle { border: 1px solid var(--line); background: var(--cream); color: var(--ink); font-family: Montserrat, Arial, sans-serif; min-width: 46px; }
  .nav { flex-wrap: wrap; padding: 12px 0; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links { display: flex; width: auto; flex-direction: row; align-items: center; gap: 10px; margin-left: auto; }
  .nav-links .nav-dropdown,
  .nav-links > a,
  .nav-links .header-bio { display: none; }
  .nav-links.is-open { width: 100%; flex-direction: column; align-items: stretch; gap: 2px; margin-left: 0; order: 10; }
  .nav-links.is-open .nav-dropdown,
  .nav-links.is-open > a { display: block; }
  .nav-links.is-open .header-bio { display: block; width: 82px; margin-top: 8px; }
  .nav-links a { padding: 12px 0; }
  .nav-dropdown { padding: 0; }
  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 4px 0 12px 16px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-links .dropdown-menu a,
  .home-page .nav-links .dropdown-menu a {
    padding: 7px 0;
    color: var(--muted);
  }
  .split, .split.wide, .product-layout, .footer-grid { grid-template-columns: 1fr; }
  .product-detail { background: var(--paper); }
  .product-image-panel { min-height: auto; }
  .footer-links { justify-content: flex-start; }
  .footer-newsletter-form { grid-template-columns: 1fr; }
  .footer-newsletter-form button { min-height: 60px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visit-map-section { grid-template-columns: 1fr; }
  .visit-map-copy { min-height: auto; }
  .visit-map-frame,
  .visit-map-frame iframe { min-height: 420px; }
}
@media (max-width: 640px) {
  .product-grid, .product-grid.compact, .feature-grid, .media-steps { grid-template-columns: 1fr; }
  .page-hero, section { padding: 52px 0; }
  .home-visual { padding: 46px 0 58px; }
  h1 { font-size: clamp(3rem, 16vw, 4.1rem); }
  .button { width: 100%; max-width: 280px; }
  .brand img { width: 136px; }
  .meta-list li { display: block; }
  .meta-list strong { display: block; margin-top: 4px; }
}

/* Clone graphique de l'ancien site, reconstruit en statique */
.home-page .page-hero {
  height: 800px;
  min-height: 800px;
  padding: 160px 0 96px;
  align-items: center;
  text-align: center;
  background-color: #17130f;
  background-image: none;
  overflow: hidden;
}
.home-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.34);
  pointer-events: none;
}
.home-hero-slideshow,
.home-hero-slideshow span {
  position: absolute;
  inset: 0;
}
.home-hero-slideshow {
  z-index: 0;
  overflow: hidden;
}
.home-hero-slideshow span {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity .7s ease;
}
.home-hero-slideshow span.is-active {
  opacity: 1;
}
.home-page .page-hero .narrow {
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.home-page .page-hero h1 {
  margin-inline: auto;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.25rem, 3.2vw, 3.15rem);
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0,0,0,.32);
}
.home-page .page-hero .lead {
  margin-inline: auto;
  margin-top: 4px;
  font-family: Raleway, sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-family: "Roboto Slab", Georgia, serif;
}
.home-page .page-hero .actions {
  justify-content: center;
}
.hero-product-links {
  margin-top: 28px;
  color: #fff;
}
.hero-product-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-product-links a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: Raleway, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0,0,0,.35);
}
.hero-product-links a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  margin-top: 3px;
  border-radius: 2px;
  background-color: #ebe7d9;
  transition: width .2s ease;
}
.hero-product-links a:hover::after,
.hero-product-links a:focus-visible::after {
  width: 100%;
}
.hero-product-links li {
  display: flex;
  align-items: center;
}
.hero-product-links li:not(:last-child)::after {
  content: "/";
  margin: 0 18px;
  color: rgba(255,255,255,.84);
  font-size: 1.8rem;
}
.old-duo,
.old-grid {
  display: grid;
  gap: 2px;
  padding: 2px;
  background: #fff;
}
.old-duo {
  grid-template-columns: 1fr 1fr;
}
.old-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.old-panel {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: #fff;
}
.old-panel.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .85s ease;
}
.old-panel.image-panel::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(0,0,0,.28);
  transition: opacity .35s ease;
}
.old-panel.image-panel:hover img {
  transform: scale(1.055);
}
.old-panel.image-panel:hover::after {
  opacity: .08;
}
.old-panel.large {
  min-height: 0;
}
.old-duo .old-panel {
  aspect-ratio: 1600 / 1064;
}
.old-grid .old-panel {
  aspect-ratio: 1600 / 952;
}
.old-grid .old-panel.large {
  aspect-ratio: 1600 / 952;
}
.panel-copy {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  max-width: min(440px, calc(100% - 50px));
}
.panel-copy strong {
  font-family: "Roboto Slab", Georgia, serif;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 1.6vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}
.panel-copy small {
  font-family: Raleway, sans-serif;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}
.haut-gauche { left: 25px; top: 25px; }
.bas-gauche { left: 25px; bottom: 25px; }
.bas-droit { right: 25px; bottom: 25px; text-align: right; }
.text-panel {
  display: grid;
  align-content: center;
  padding: clamp(40px, 7vw, 92px);
  border: 1px solid #fff;
}
.text-panel p {
  max-width: 560px;
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 300;
  line-height: 1.8;
}
.text-panel a {
  margin-top: 26px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 800;
}
.text-panel.green { background: #69550d; }
.text-panel.brown { background: #522e03; text-align: right; justify-items: end; }
.cream-signature {
  position: relative;
  padding: 66px 20px 76px;
  background: #ebe7d9;
  color: #683f09;
  text-align: center;
  overflow: hidden;
}
.cream-signature > div { position: relative; min-height: 230px; display: grid; place-items: center; align-content: center; }
.cream-signature p {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
}
.cream-signature span {
  display: block;
  color: #929755;
  font-size: 15px;
  margin: 12px 0;
}
.cream-signature strong {
  display: block;
  max-width: 470px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
}
.cream-signature .floral-left,
.cream-signature .floral-right {
  position: absolute;
  width: min(23vw, 250px);
  opacity: .62;
  top: 50%;
  transform: translateY(-50%);
}
.cream-signature .floral-left { left: 9%; }
.cream-signature .floral-right { right: 9%; }
.home-transmission-block {
  position: relative;
  min-height: 330px;
  padding: 46px 20px 54px;
  background: #e9e5d7;
  color: #684b2a;
  text-align: center;
  overflow: hidden;
}
.home-transmission-block > div {
  position: relative;
  z-index: 1;
  width: min(380px, 100%);
  margin: 0 auto;
}
.home-transmission-block h2 {
  margin: 0;
  font-family: Raleway, sans-serif;
  font-size: clamp(1rem, 1.18vw, 1.22rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.home-transmission-block span {
  display: block;
  margin: 9px 0 14px;
  color: #9aa05c;
  font-size: 14px;
  letter-spacing: .18em;
}
.home-transmission-block p {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(.88rem, 1.05vw, 1.04rem);
  font-weight: 700;
  line-height: 1.38;
}
.home-transmission-block strong {
  font-weight: 800;
}
.transmission-floral-left,
.transmission-floral-right {
  position: absolute;
  top: 50%;
  width: min(19vw, 220px);
  opacity: .82;
  transform: translateY(-50%);
}
.transmission-floral-left {
  left: clamp(38px, 10vw, 155px);
}
.transmission-floral-right {
  right: clamp(38px, 10vw, 155px);
}
.clone-range {
  background: #ebe7d9;
}
.clone-range .section-inner {
  width: 100%;
}
.clone-range h2,
.clone-range .eyebrow {
  width: min(1240px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
.clone-range .product-grid {
  margin-top: 36px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
}
.old-tile {
  min-height: 520px;
  padding: 0;
  border: 0;
  background: #513213;
}
.old-tile img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: .94;
}
.old-tile .tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.08) 58%, rgba(0,0,0,.18));
}
.old-tile .tile-copy {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  z-index: 2;
}
.old-tile strong {
  display: block;
  margin-top: 8px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 400;
  text-transform: uppercase;
}
.old-tile .tag {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.home-video-signature {
  position: relative;
  min-height: clamp(430px, 45vw, 560px);
  overflow: hidden;
  background: #312113;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.home-video-signature video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-video-signature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 14, .34);
}
.home-video-signature .video-copy {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  transform: translateY(-12%);
}
.home-video-signature h2 {
  margin: 0;
  color: #fff;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}
.home-video-signature p {
  margin: 8px 0 0;
  color: #fff;
  font-family: Raleway, sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.legacy-page .page-hero {
  min-height: 62vh;
  padding-top: 170px;
  background-position: center;
}
.legacy-page .page-hero h1 {
  max-width: 980px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.55rem, 5.1vw, 5.4rem);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}
.legacy-page .page-hero .lead {
  max-width: 760px;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 800;
}
.legacy-content {
  background: #ebe7d9;
  color: #4c321b;
}
.legacy-vertical {
  padding: 0;
}
.legacy-breadcrumb {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: #795530;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
}
.legacy-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.legacy-breadcrumb span {
  margin-left: 8px;
}
.legacy-video-block {
  position: relative;
  min-height: clamp(430px, 56vw, 760px);
  padding: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  background: #21170f;
}
.legacy-video-block video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.legacy-video-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 15, .38);
}
.legacy-video-block > div {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 40px));
}
.legacy-video-block h1 {
  max-width: 980px;
  margin: 0 auto;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.55rem, 5.1vw, 5.4rem);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}
.legacy-video-block p:not(.eyebrow) {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(1.2rem, 2.1vw, 1.9rem);
  font-weight: 800;
}
.legacy-text-block {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 7vw, 96px) 0;
}
.legacy-text-block.green,
.legacy-text-block.brown {
  width: 100%;
  margin: 0;
  padding: clamp(56px, 7vw, 98px) max(20px, calc((100vw - 980px) / 2));
  color: #fff;
}
.legacy-text-block.green { background: #617529; }
.legacy-text-block.brown { background: #5e3d23; }
.legacy-text-block h2 {
  margin: 0 0 24px;
  color: inherit;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}
.legacy-text-block p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.78;
}
.legacy-text-block p + p {
  margin-top: 18px;
}
.legacy-pair .legacy-text-block {
  background: #5e3d23;
  color: #fff;
}
.production-page .legacy-pair .legacy-text-block {
  background: #4a5220;
}
.legacy-pair .legacy-text-block.green {
  background: #617529;
}
.legacy-pair .legacy-text-block.brown {
  background: #5e3d23;
}
.legacy-feature,
.legacy-step,
.legacy-portrait {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 2px;
  padding: 2px;
  background: #fff;
}
.legacy-feature.reverse,
.legacy-step.reverse,
.legacy-portrait.reverse {
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
}
.legacy-feature.reverse .legacy-media,
.legacy-step.reverse .legacy-media,
.legacy-portrait.reverse .legacy-media {
  order: 2;
}
.legacy-media {
  min-height: clamp(430px, 48vw, 720px);
  overflow: hidden;
  background: #2f2115;
}
.legacy-step .legacy-media {
  min-height: clamp(360px, 40vw, 600px);
}
.legacy-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .8s ease;
}
.legacy-media:hover img {
  transform: scale(1.045);
}
.legacy-wide-media {
  padding: 2px;
  background: #fff;
}
.legacy-wide-media img {
  width: 100%;
  min-height: clamp(330px, 42vw, 620px);
  object-fit: cover;
}
@media (min-width: 1061px) {
  .legacy-page .legacy-video-block {
    min-height: clamp(330px, 32vw, 390px);
  }
  .legacy-page .legacy-video-block h1 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 500;
  }
  .legacy-page .legacy-video-block p:not(.eyebrow) {
    margin-top: 8px;
    font-size: clamp(.95rem, 1.15vw, 1.15rem);
    font-weight: 500;
  }
  .legacy-pair {
    display: grid;
    grid-template-columns: minmax(300px, 33.333%) minmax(0, 66.667%);
    align-items: stretch;
    gap: 0;
  }
  .legacy-pair.reverse {
    grid-template-columns: minmax(0, 66.667%) minmax(300px, 33.333%);
  }
  .legacy-pair.reverse .legacy-wide-media {
    order: -1;
    padding: 2px 0 2px 2px;
  }
  .legacy-pair .legacy-text-block {
    width: 100%;
    height: clamp(400px, 32vw, 470px);
    min-height: 0;
    margin: 0;
    padding: clamp(30px, 3.2vw, 44px) clamp(34px, 4vw, 54px);
    display: grid;
    align-content: center;
    background: #5e3d23;
    color: #fff;
  }
  .production-page .legacy-pair .legacy-text-block {
    background: #4a5220;
  }
  .legacy-pair .legacy-text-block.green {
    background: #617529;
  }
  .legacy-pair .legacy-text-block.brown {
    background: #5e3d23;
  }
  .legacy-pair .legacy-text-block h2 {
    margin-bottom: 18px;
    font-size: clamp(1.45rem, 1.85vw, 2rem);
    line-height: 1.08;
    text-transform: none;
  }
  .legacy-pair .legacy-text-block p {
    max-width: none;
    font-size: clamp(.72rem, .82vw, .88rem);
    line-height: 1.68;
  }
  .legacy-pair .legacy-text-block p + p {
    margin-top: 13px;
  }
  .legacy-pair .legacy-wide-media {
    height: clamp(400px, 32vw, 470px);
    min-height: 0;
    padding: 2px 2px 2px 0;
    display: grid;
    background: #fff;
  }
  .legacy-pair .legacy-wide-media img {
    height: 100%;
    min-height: 0;
    display: block;
  }
}
.legacy-pair .legacy-text-block.old-approach-brown,
.legacy-pair .legacy-text-block.old-people-brown {
  background: #522E03;
}
.legacy-pair .legacy-text-block.old-approach-olive,
.legacy-pair .legacy-text-block.old-people-olive {
  background: #69550D;
}
.legacy-pair .legacy-text-block.old-prod-cru {
  background: #485216;
}
.legacy-pair .legacy-text-block.old-prod-vineyard {
  background: #5B7615;
}
.legacy-pair .legacy-text-block.old-prod-distillation {
  background: #895018;
}
.legacy-pair .legacy-text-block.old-prod-aging,
.legacy-pair .legacy-text-block.old-prod-bottling {
  background: #69550D;
}
.legacy-pair .legacy-text-block.old-prod-blending {
  background: #895318;
}
.legacy-copy {
  display: grid;
  align-content: center;
  padding: clamp(40px, 6vw, 92px);
  background: #ebe7d9;
}
.legacy-feature.green .legacy-copy,
.legacy-step.green .legacy-copy,
.legacy-portrait.green .legacy-copy {
  background: #69550d;
  color: #fff;
}
.legacy-feature.brown .legacy-copy,
.legacy-step.brown .legacy-copy,
.legacy-portrait.brown .legacy-copy {
  background: #522e03;
  color: #fff;
}
.legacy-copy h2 {
  margin: 0 0 24px;
  color: inherit;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}
.legacy-copy p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.78;
}
.legacy-copy p + p {
  margin-top: 18px;
}
.legacy-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: clamp(34px, 5vw, 66px) 20px;
  background: #ebe7d9;
  color: #683f09;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.legacy-facts i {
  color: #929755;
  font-style: normal;
  letter-spacing: 0;
}
.legacy-facts strong {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  font-weight: 700;
}
.bottle-menu {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: clamp(16px, 3vw, 42px);
  padding: 18px 0;
}
.bottle-menu img {
  height: 82px;
  width: auto;
  transition: transform .35s ease;
}
.bottle-menu a:hover img {
  transform: translateY(-18px);
}
.product-menu-strip {
  padding: 0;
  background: #ebe7d9;
  border-bottom: 2px solid #fff;
}
.product-old-detail {
  display: grid;
  grid-template-columns: 7% 44% 49%;
  gap: 2px;
  padding: 0 0 2px;
  background: #fff;
  overflow: hidden;
}
.product-gallery-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0;
  background: var(--product-gallery);
}
.product-gallery-rail button {
  width: 100%;
  min-height: auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.product-gallery-rail button:hover,
.product-gallery-rail button:focus-visible {
  opacity: .78;
}
.product-gallery-rail img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-scene {
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(var(--product-gallery), #ebe7d9 20%);
}
.product-scene img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.product-info-block {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 2px;
  color: #fff;
  background: #fff;
}
.product-info-block > div {
  background: var(--product-top);
  padding: 40px 60px;
}
.product-info-block .product-bottle-inline { background: var(--product-mid); }
.product-info-block .product-sensory { background: var(--product-low); }
.product-info-block h1,
.product-info-block h2 {
  font-family: Raleway, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}
.product-info-block h3 {
  margin: 0 0 20px;
  font-family: Raleway, sans-serif;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--product-accent);
}
.product-info-block p {
  max-width: 60%;
  font-family: Raleway, sans-serif;
  font-size: .75rem;
  font-weight: 300;
  margin: 0;
}
.product-story {
  margin-top: 14px !important;
  font-size: .8rem !important;
  line-height: 1.6;
}
.norway-buy-link,
.denmark-buy-link,
.quebec-buy-link {
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.68);
  color: #fff;
  font-family: Raleway, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.norway-buy-link:hover,
.norway-buy-link:focus-visible,
.denmark-buy-link:hover,
.denmark-buy-link:focus-visible,
.quebec-buy-link:hover,
.quebec-buy-link:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--product-tone);
}
.product-medals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  width: 40%;
  margin-top: 15px;
}
.product-medals img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.product-bottle-inline {
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 0;
  align-items: stretch;
  padding: 0 !important;
}
.product-bottle-inline img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  margin: 0;
  filter: none;
}
.product-bottle-inline > div {
  padding: 40px 60px;
}
.product-sensory ul {
  display: grid;
  gap: 5px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.product-sensory li {
  display: block;
  width: 100%;
  max-width: 80%;
  font-size: .8rem;
}
.product-sensory span {
  font-weight: 800;
}
.product-sensory strong {
  font-weight: 300;
}
.product-sensory a {
  display: inline-block;
  margin-top: 28px;
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.nutrition-link {
  display: inline-block;
  margin-top: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.nutrition-dialog {
  width: min(920px, calc(100% - 34px));
  max-height: min(840px, calc(100vh - 34px));
  padding: clamp(22px, 4vw, 42px);
  border: 0;
  border-radius: 0;
  background: #ebe7d9;
  color: #522e03;
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}
.nutrition-dialog::backdrop {
  background: rgba(23,19,15,.68);
}
.nutrition-dialog form {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  margin: 0 0 12px;
}
.nutrition-dialog button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(82,46,3,.25);
  background: #fff;
  color: #522e03;
  font-size: 1.6rem;
  cursor: pointer;
}
.nutrition-dialog h2 {
  margin: 0 0 22px;
  color: #522e03;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
}
.nutrition-dialog img {
  width: 100%;
  height: auto;
  background: #fff;
}
.product-extra-gallery {
  padding: 2px 0 0;
  background: #fff;
}
.product-extra-gallery .section-inner {
  width: 100%;
}
.product-extra-gallery h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.product-extra-gallery .section-inner > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
}
.product-extra-gallery figure {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
}
.product-extra-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin-top: 34px;
  background: #fff;
}
.product-text-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-text-tile {
  min-height: 240px;
  display: grid;
  align-content: end;
  padding: 30px;
  color: #fff;
  background: var(--tile-tone);
  text-decoration: none;
  border: 1px solid #fff;
}
.product-text-tile span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.product-text-tile strong {
  margin-top: 8px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.55rem;
  text-transform: uppercase;
  font-weight: 400;
}
.product-text-tile em {
  margin-top: 16px;
  font-style: normal;
  font-size: .9rem;
  opacity: .85;
}
.page-duo {
  padding-top: 2px;
}
.cream-signature.compact {
  padding-block: 54px;
}
.table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: #fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}
caption {
  padding: 18px;
  color: #683f09;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.15rem;
  text-align: left;
}
th,
td {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  text-align: left;
}
thead th {
  background: #ebe7d9;
  color: #683f09;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.legacy-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  margin-top: 34px;
  background: #fff;
}
.legacy-gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: #522e03;
}
.legacy-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform .7s ease;
}
.legacy-gallery figure:hover img {
  transform: scale(1.05);
}
.legacy-gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  background: rgba(0,0,0,.48);
  color: #fff;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
@media (max-width: 1060px) {
  .old-duo,
  .old-grid,
  .legacy-feature,
  .legacy-feature.reverse,
  .legacy-step,
  .legacy-step.reverse,
  .legacy-portrait,
  .legacy-portrait.reverse,
  .clone-range .product-grid,
  .product-old-detail,
  .product-text-grid,
  .product-text-grid.compact {
    grid-template-columns: 1fr;
  }
  .legacy-feature.reverse .legacy-media,
  .legacy-step.reverse .legacy-media,
  .legacy-portrait.reverse .legacy-media {
    order: 0;
  }
  .legacy-media,
  .legacy-step .legacy-media {
    min-height: 420px;
  }
  .legacy-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .old-panel,
  .old-panel.large {
    min-height: 420px;
  }
  .product-gallery-rail {
    display: none;
  }
  .product-scene {
    min-height: 480px;
  }
  .product-bottle-inline {
    grid-template-columns: 1fr;
  }
  .product-bottle-inline img {
    min-height: 280px;
  }
  .product-bottle-inline > div {
    padding: 34px 28px;
  }
  .product-extra-gallery .section-inner > div {
    grid-template-columns: 1fr;
  }
  .product-extra-gallery figure {
    min-height: 300px;
  }
}
@media (max-width: 640px) {
  .home-page .page-hero {
    height: auto;
    min-height: 82vh;
    padding: 110px 0 70px;
    text-align: left;
    background-position: center center, center center;
    background-size: cover, cover;
  }
  .home-page .page-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }
  .home-page .page-hero .actions {
    justify-content: flex-start;
  }
  .old-panel,
  .old-panel.large {
    min-height: 360px;
  }
  .legacy-page .page-hero {
    min-height: 54vh;
  }
  .legacy-copy {
    padding: 34px 24px 42px;
  }
  .legacy-media,
  .legacy-step .legacy-media {
    min-height: 330px;
  }
  .legacy-facts {
    display: grid;
    gap: 10px;
  }
  .panel-copy {
    max-width: calc(100% - 34px);
  }
  .haut-gauche,
  .bas-gauche {
    left: 17px;
  }
  .bas-droit {
    right: 17px;
  }
  .text-panel {
    padding: 38px 30px;
  }
  .old-tile {
    min-height: 430px;
  }
  .home-transmission-block {
    min-height: 300px;
    padding: 42px 20px 48px;
  }
  .transmission-floral-left,
  .transmission-floral-right {
    width: 96px;
    opacity: .36;
  }
  .transmission-floral-left {
    left: 12px;
  }
  .transmission-floral-right {
    right: 12px;
  }
  .product-scene {
    min-height: 390px;
  }
  .product-info-block > div {
    padding: 34px 28px;
  }
  .product-info-block p,
  .product-sensory li {
    max-width: 100%;
  }
  .product-sensory li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .bottle-menu {
    overflow-x: auto;
    justify-content: flex-start;
    padding-inline: 20px;
  }
  .legacy-gallery {
    grid-template-columns: 1fr;
  }
}
