@font-face {
  font-family: Inter;
  src: url("/fonts/inter.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/fonts/inter-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Newsreader;
  src: url("/fonts/newsreader.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --white: #fff;
  --ink: #282b26;
  --muted: #696d64;
  --gold: #a3844a;
  --line: #e2e3dc;
  --surface: #f7f7f3;
  --sans: Inter, Arial, sans-serif;
  --display: Newsreader, Georgia, serif;
  --gutter: clamp(24px, 5vw, 96px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 400 15px/1.75 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: -0.035em;
  line-height: 1.03;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button[hidden],
[hidden] {
  display: none !important;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
::selection {
  background: #e5d4b1;
  color: var(--ink);
}
.wrap {
  width: calc(100% - var(--gutter) * 2);
  max-width: 1200px;
  margin-inline: auto;
}
.eyebrow {
  font: 400 13px/1.5 var(--sans);
  letter-spacing: 0;
  color: var(--gold);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: -80px;
  left: 20px;
  padding: 12px 20px;
  background: white;
}
.skip-link:focus {
  top: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  line-height: 1.4;
}
.text-link span {
  font-size: 21px;
  transition: transform 0.3s;
}
.text-link:hover span {
  transform: translate(3px, -3px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  min-height: 52px;
  padding: 14px 25px;
  border: 1px solid var(--ink);
  font-size: 14px;
  line-height: 1.4;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button span {
  font-size: 23px;
}
.bottle {
  object-fit: contain;
  height: auto;
  max-width: 100%;
}
/* The original solid O gives the navigation its single point of focus. */
.site-header {
  position: relative;
  z-index: 30;
  background: white;
}
.header-inner {
  width: calc(100% - var(--gutter) * 2);
  max-width: 1440px;
  margin: auto;
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}
.desktop-nav {
  display: flex;
  gap: 32px;
}
.desktop-nav a,
.header-contact {
  font-size: 13px;
  line-height: 1.4;
}
.desktop-nav a:hover,
.header-contact:hover {
  color: var(--gold);
}
.desktop-nav a[aria-current] {
  color: var(--gold);
}
.header-symbol {
  width: 40px;
  height: 40px;
}
.brand {
  display: block;
  width: max-content;
}
.header-inner > .brand {
  justify-self: center;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}
.language {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  min-height: 44px;
}
.language span {
  opacity: 0.35;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  width: 30px;
  height: 44px;
  padding: 0;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 2px;
  right: 2px;
  height: 1px;
  background: var(--ink);
  transition:
    transform 0.25s,
    top 0.25s;
}
.menu-toggle span:first-child {
  top: 18px;
}
.menu-toggle span:last-child {
  top: 25px;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  padding: 25px var(--gutter) 40px;
  box-shadow: 0 18px 25px #141e1310;
}
.mobile-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font: 400 34px/1.2 var(--display);
}
.wordmark {
  display: block;
  width: 195px;
}
.wordmark img {
  width: 100%;
  height: auto;
}
/* An open cinematic frame, with readable type and no forced introduction. */
.hero {
  height: calc(100svh - 86px);
  min-height: 620px;
  max-height: 960px;
  position: relative;
  color: white;
  isolation: isolate;
  overflow: hidden;
}
.hero-film,
.hero-image,
.hero-video,
.film-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-film {
  z-index: -1;
  background: #56634f;
}
.hero-image,
.hero-video {
  object-fit: cover;
  object-position: center 52%;
}
.hero-video {
  opacity: 0;
  transition: opacity 1s;
}
.hero-video.is-playing {
  opacity: 1;
}
.film-shade {
  background:
    linear-gradient(90deg, #10201960, transparent 80%),
    linear-gradient(0deg, #09141065, transparent 75%);
}
.hero-copy {
  position: relative;
  height: 100%;
  max-width: 1440px;
  padding-top: 56px;
  padding-bottom: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.hero-wordmark {
  position: absolute;
  top: 48px;
  left: 0;
  width: 225px;
  height: auto;
}
.hero h1 {
  font-size: clamp(84px, 8.8vw, 142px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
  max-width: 750px;
  text-shadow: 0 2px 22px #10201820;
}
.hero-description {
  position: absolute;
  right: 0;
  bottom: 142px;
  width: 260px;
}
.hero-description p {
  font-size: 15px;
  line-height: 1.65;
}
.hero-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #ffffff99;
  padding: 12px 0;
  min-height: 48px;
  font-size: 14px;
  margin-top: 22px;
}
.hero-link span {
  font-size: 24px;
  transition: transform 0.3s;
}
.hero-link:hover span {
  transform: translate(3px, -3px);
}
.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  max-width: 1440px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
}
.hero-bottom > span:first-child {
  margin-right: auto;
}
.film-caption {
  opacity: 0.75;
  font-size: 10px;
}
.video-toggle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid #ffffff75;
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 11px;
}
.video-toggle:hover {
  background: #ffffff20;
}
/* Place and material precede the product reveal. */
.editorial {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: start;
  gap: clamp(60px, 9vw, 142px);
  padding-block: 115px 75px;
}
.editorial-main {
  height: 650px;
  overflow: hidden;
}
.editorial-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.editorial-copy {
  padding-top: 38px;
  position: relative;
}
.editorial-copy h2 {
  font-size: clamp(42px, 4.5vw, 68px);
  margin-top: 26px;
  line-height: 1.02;
}
.editorial-text {
  max-width: 380px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 28px;
}
.editorial-copy > .text-link {
  margin-top: 21px;
}
.editorial-detail {
  width: 195px;
  height: 190px;
  overflow: hidden;
  margin-top: 38px;
  margin-left: auto;
}
.editorial-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
/* One physical product composition; each formula has an equally clear destination. */
.campaign {
  padding-block: 60px 55px;
  scroll-margin-top: 55px;
}
.campaign-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}
.campaign-heading h2 {
  font-size: 70px;
  line-height: 1.05;
  margin-top: 16px;
}
.campaign-heading > p {
  max-width: 240px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  padding-bottom: 5px;
}
.campaign-scene {
  position: relative;
  overflow: hidden;
  background: #fff;
  display: flex;
  justify-content: center;
}
.campaign-scene > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9.6;
  object-fit: cover;
  object-position: center 56%;
}
.campaign-status {
  position: absolute;
  right: 30px;
  top: 23px;
  font-size: 12px;
  color: var(--muted);
}
.campaign-products {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
  padding-top: 25px;
}
.campaign-product {
  display: block;
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  padding-bottom: 15px;
}
.campaign-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.campaign-product h3 {
  font-size: 42px;
  letter-spacing: -0.035em;
}
.campaign-product-top > span {
  font: 400 25px var(--sans);
  transition: transform 0.3s;
}
.campaign-product:hover .campaign-product-top > span {
  transform: translate(3px, -3px);
}
.campaign-product p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 9px;
}
.campaign-discover {
  display: block;
  width: max-content;
  font-size: 12px;
  margin-top: 15px;
  border-bottom: 1px solid var(--gold);
}
/* Geographic detail stays quiet, accurate and accessible. */
.roots-split {
  padding-block: 60px 85px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
  max-width: 1060px;
}
.roots-copy h2 {
  font-size: 62px;
  margin: 22px 0;
}
.roots-copy > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 410px;
}
.roots-copy .text-link {
  margin-top: 24px;
}
.provenance-map {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: center;
}
.provenance-map > img {
  width: 100%;
  height: auto;
}
.provenance-map figcaption {
  position: absolute;
  top: 32.5%;
  left: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.provenance-map strong {
  font: 400 25px/1.2 var(--display);
  letter-spacing: -0.035em;
}
.provenance-map figcaption > span {
  font-size: 11px;
  color: var(--muted);
}
.map-credit {
  max-width: 390px;
  margin: 5px auto 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
  text-align: center;
}
.map-credit a:hover {
  text-decoration: underline;
}
/* Shared product, collection and information pages. */
.page-intro {
  padding-block: 75px 38px;
  text-align: center;
  max-width: 680px;
}
.page-intro h1 {
  font-size: 82px;
  margin: 20px 0;
}
.page-intro > p:not(.eyebrow) {
  max-width: 530px;
  margin: auto;
  color: var(--muted);
  line-height: 1.8;
}
.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--gold);
  margin-top: 24px;
}
.availability > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.collection {
  padding-block: 25px 50px;
}
.section-intro {
  margin-bottom: 40px;
}
.section-intro h2 {
  font-size: 65px;
  margin-top: 20px;
}
.section-description {
  max-width: 600px;
  margin-top: 20px;
  color: var(--muted);
}
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 45px;
}
.product-card {
  min-width: 0;
}
.product-info {
  padding-bottom: 20px;
}
.product-info h3 {
  font-size: 44px;
  margin-bottom: 12px;
}
.product-info p {
  font-size: 14px;
  color: var(--muted);
}
.product-visual {
  height: 510px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  overflow: hidden;
}
.product-visual .bottle {
  height: 470px;
  width: auto;
  mix-blend-mode: multiply;
  transition: transform 0.6s;
}
.product-visual:hover .bottle {
  transform: translateY(-6px);
}
.card-status {
  position: absolute;
  left: 25px;
  top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.visual-arrow {
  position: absolute;
  bottom: 20px;
  right: 22px;
  font-size: 26px;
}
.product-more {
  display: flex;
  align-items: center;
  gap: 35px;
  min-height: 44px;
  width: max-content;
  margin-top: 8px;
  font-size: 13px;
}
.product-more span {
  font-size: 22px;
}
.packaging-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
  max-width: 660px;
  margin: 24px auto 0;
}
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  padding-block: 55px 70px;
}
.product-stage {
  background: var(--surface);
  padding: 25px 25px 20px;
  min-width: 0;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.card-top .eyebrow,
.status {
  font-size: 12px;
}
.product-stage > .bottle {
  width: 100%;
  height: 500px;
  mix-blend-mode: multiply;
}
.product-stage .packaging-note {
  font-size: 10px;
  max-width: 390px;
  margin-top: 0;
}
.breadcrumb {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 45px;
}
.product-story h1 {
  font-size: 84px;
  margin: 20px 0 26px;
}
.product-lead {
  font-size: 16px;
  line-height: 1.9;
  max-width: 440px;
  color: var(--muted);
}
.ingredient-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-block: 18px;
  border-block: 1px solid var(--line);
  font-size: 13px;
  margin-top: 30px;
}
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}
.status {
  color: var(--gold);
}
.formula-section {
  background: var(--surface);
  padding-block: 65px;
}
.formula-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.formula-layout h2 {
  font-size: 58px;
  margin: 20px 0;
}
.formula-layout p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.formula-bar {
  display: flex;
}
.formula-bar > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 12px;
  border-right: 1px solid #d8dbd2;
}
.formula-bar > div:last-child {
  border-right: 0;
}
.formula-number {
  font: 400 62px/1 var(--display);
  color: var(--gold);
}
.formula-bar > div > span:last-child {
  font-size: 12px;
}
.formula-note {
  font-size: 11px !important;
  margin-top: 24px;
  text-align: center;
}
.other-product {
  padding-block: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.other-product h2 {
  font-size: 51px;
  margin: 20px 0;
}
.other-product > a {
  display: block;
  width: 200px;
  flex: none;
}
.other-product .bottle {
  height: 270px;
  width: 100%;
}
.faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  padding-block: 65px 100px;
  border-top: 1px solid var(--line);
}
.faq h2 {
  font-size: 56px;
  margin-top: 16px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 22px 0;
  cursor: pointer;
  font-size: 15px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 22px;
  font-weight: 400;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  padding-bottom: 22px;
}
.story-opening {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
  padding-block: 70px 85px;
}
.story-opening h1 {
  font-size: 74px;
  margin: 22px 0 32px;
}
.story-opening p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 20px;
}
.story-opening .text-link {
  margin-top: 25px;
}
.story-stone img {
  height: 620px;
  width: 100%;
  object-fit: cover;
}
.story-region {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
  padding-block: 40px 60px;
}
.story-region > figure > img {
  width: 100%;
  height: 630px;
  object-fit: cover;
}
.story-region h2 {
  font-size: 62px;
  margin: 20px 0;
}
.story-region > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}
.story-region .provenance-map {
  max-width: 350px;
  margin-top: 30px;
}
.story-closing {
  max-width: 650px;
  text-align: center;
  padding-block: 55px 90px;
}
.story-closing h2 {
  font-size: 62px;
  margin: 20px 0;
}
.story-closing > p:not(.eyebrow) {
  color: var(--muted);
}
.story-closing .text-link {
  margin-top: 25px;
}
.contact-page {
  max-width: 1040px;
  padding-block: 90px 110px;
}
.contact-page h1 {
  font-size: 105px;
  margin: 25px 0;
}
.contact-intro {
  color: var(--muted);
  font-size: 17px;
  max-width: 610px;
}
.contact-email {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 50px;
}
.contact-email > a {
  font: 400 64px/1.1 var(--display);
  letter-spacing: -0.035em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 12px;
}
.contact-email > a span {
  font: 400 30px var(--sans);
}
.copy-email {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: 12px;
  min-height: 44px;
}
.copy-status {
  font-size: 12px;
  color: var(--gold);
}
.contact-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding-top: 30px;
  font-size: 13px;
  color: var(--muted);
}
.legal-page {
  max-width: 760px;
  padding-block: 80px 100px;
}
.legal-page h1 {
  font-size: 86px;
  margin: 24px 0;
}
.legal-intro {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}
.legal-page section {
  padding-block: 25px;
  border-top: 1px solid var(--line);
}
.legal-page h2 {
  font-size: 31px;
  margin-bottom: 16px;
}
.legal-page section p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}
.updated {
  font-size: 12px;
  color: var(--muted);
  margin-top: 25px;
}
.site-footer {
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.65fr 1fr;
  gap: 60px;
  padding-block: 55px 35px;
}
.footer-line {
  font-size: 13px;
  color: var(--muted);
  margin-top: 23px;
  line-height: 1.8;
}
.footer-launch {
  font-size: 12px;
  color: var(--gold);
  margin-top: 14px;
}
.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}
.footer-links > .eyebrow,
.footer-contact > .eyebrow {
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--muted);
}
.footer-contact > a {
  font: 400 29px/1.3 var(--display);
  letter-spacing: -0.025em;
}
.footer-contact > span {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.footer-bottom {
  display: flex;
  gap: 25px;
  padding-block: 21px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom > span {
  margin-right: auto;
}
.imagery-note {
  font-size: 10px;
  line-height: 1.7;
  color: var(--muted);
  padding-bottom: 20px;
}
.imagery-note summary {
  cursor: pointer;
  width: max-content;
  min-height: 22px;
}
.imagery-note p {
  max-width: 650px;
  padding: 10px 0;
}
/* Motion enhances the composition but never gates content. */
@media (prefers-reduced-motion: no-preference) {
  .hero-wordmark {
    animation: arrive 1.1s ease both;
  }
  .hero h1 {
    animation: arrive 1.2s 0.12s ease both;
  }
  .hero-description {
    animation: arrive 1.2s 0.25s ease both;
  }
  .reveal.is-visible {
    animation: arrive 0.9s cubic-bezier(0.2, 0.65, 0.3, 1) both;
  }
  .editorial-main.is-visible img {
    animation: image-arrive 1.5s cubic-bezier(0.2, 0.65, 0.3, 1) both;
  }
  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes image-arrive {
    from {
      transform: scale(1.045);
    }
    to {
      transform: scale(1);
    }
  }
}
@media (min-width: 1700px) {
  .hero-copy {
    padding-bottom: 165px;
  }
  .hero-description {
    bottom: 170px;
  }
}
@media (max-width: 1050px) {
  .hero h1 {
    font-size: 105px;
  }
  .hero-description {
    width: 220px;
  }
  .editorial {
    gap: 65px;
    padding-top: 85px;
  }
  .editorial-main {
    height: 570px;
  }
  .editorial-copy {
    padding-top: 18px;
  }
  .editorial-copy h2 {
    font-size: 51px;
  }
  .editorial-detail {
    height: 160px;
    width: 165px;
  }
  .campaign-heading h2 {
    font-size: 62px;
  }
  .roots-split {
    gap: 60px;
  }
  .roots-copy h2 {
    font-size: 53px;
  }
  .product-visual {
    height: 440px;
  }
  .product-visual .bottle {
    height: 405px;
  }
  .product-story h1 {
    font-size: 65px;
  }
  .product-stage > .bottle {
    height: 430px;
  }
  .formula-layout {
    gap: 55px;
  }
  .story-opening,
  .story-region {
    gap: 65px;
  }
  .story-opening h1 {
    font-size: 63px;
  }
  .story-stone img {
    height: 530px;
  }
  .story-region > figure > img {
    height: 590px;
  }
  .story-region h2 {
    font-size: 52px;
  }
}
@media (max-width: 800px) {
  .header-inner {
    height: 74px;
    grid-template-columns: 1fr auto;
    gap: 20px;
  }
  .header-inner > .brand {
    justify-self: start;
  }
  .header-symbol {
    width: 34px;
    height: 34px;
  }
  .desktop-nav,
  .header-contact {
    display: none;
  }
  .header-actions {
    gap: 25px;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    height: calc(100svh - 74px);
    min-height: 630px;
    max-height: 870px;
  }
  .hero-copy {
    padding-top: 40px;
    padding-bottom: 210px;
  }
  .hero-wordmark {
    top: 35px;
    width: 195px;
  }
  .hero h1 {
    font-size: 95px;
  }
  .hero-description {
    left: 0;
    right: auto;
    bottom: 85px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
  }
  .hero-description p {
    font-size: 14px;
  }
  .hero-link {
    width: 190px;
    margin-top: 0;
    font-size: 13px;
  }
  .hero-bottom {
    bottom: 22px;
  }
  .hero-bottom > span:first-child {
    font-size: 10px;
  }
  .film-caption {
    display: none;
  }
  .editorial {
    gap: 40px;
    padding-block: 75px 50px;
  }
  .editorial-main {
    height: 550px;
  }
  .editorial-copy {
    padding-top: 10px;
  }
  .editorial-copy h2 {
    font-size: 44px;
  }
  .editorial-text {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 23px;
  }
  .editorial-detail {
    height: 150px;
    width: 140px;
    margin-top: 24px;
  }
  .campaign {
    padding-block: 40px;
  }
  .campaign-heading {
    gap: 25px;
  }
  .campaign-heading h2 {
    font-size: 53px;
  }
  .campaign-heading > p {
    max-width: 200px;
    font-size: 13px;
  }
  .campaign-products {
    gap: 35px;
  }
  .campaign-product h3 {
    font-size: 35px;
  }
  .campaign-product p {
    font-size: 13px;
  }
  .roots-split {
    gap: 35px;
    padding-block: 40px 70px;
  }
  .roots-copy h2 {
    font-size: 47px;
  }
  .roots-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .provenance-map strong {
    font-size: 21px;
  }
  .provenance-map figcaption > span {
    font-size: 10px;
  }
  .map-credit {
    font-size: 8px;
  }
  .footer-top {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-line br {
    display: none;
  }
  .footer-line {
    margin-top: 16px;
  }
  .product-grid {
    gap: 25px;
  }
  .product-visual {
    height: 360px;
  }
  .product-visual .bottle {
    height: 330px;
  }
  .product-info h3 {
    font-size: 37px;
  }
  .product-info p {
    font-size: 13px;
  }
  .card-status {
    font-size: 11px;
    top: 16px;
    left: 18px;
  }
  .product-hero {
    gap: 35px;
    padding-top: 35px;
  }
  .product-stage {
    padding: 20px 15px;
  }
  .product-stage > .bottle {
    height: 350px;
  }
  .product-story h1 {
    font-size: 54px;
  }
  .breadcrumb {
    margin-bottom: 25px;
  }
  .product-lead {
    font-size: 14px;
  }
  .ingredient-line {
    font-size: 11px;
  }
  .formula-layout {
    gap: 35px;
  }
  .formula-layout h2 {
    font-size: 48px;
  }
  .formula-number {
    font-size: 52px;
  }
  .other-product h2 {
    font-size: 44px;
  }
  .faq {
    gap: 40px;
  }
  .faq h2 {
    font-size: 48px;
  }
  .story-opening,
  .story-region {
    gap: 40px;
  }
  .story-opening h1 {
    font-size: 54px;
  }
  .story-opening p:not(.eyebrow) {
    font-size: 14px;
  }
  .story-stone img {
    height: 520px;
  }
  .story-region > figure > img {
    height: 560px;
  }
  .story-region h2 {
    font-size: 45px;
  }
  .story-region > div > p:not(.eyebrow) {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 23px;
  }
  .header-inner {
    height: 72px;
  }
  .header-actions {
    gap: 21px;
  }
  .hero {
    height: calc(100svh - 72px);
    min-height: 620px;
    max-height: 840px;
  }
  .hero-copy {
    padding-bottom: 215px;
  }
  .hero-wordmark {
    top: 34px;
    width: 180px;
  }
  .hero h1 {
    font-size: clamp(77px, 21vw, 110px);
    line-height: 0.94;
    letter-spacing: -0.04em;
  }
  .hero-description {
    bottom: 78px;
    display: block;
    width: 100%;
  }
  .hero-description p {
    font-size: 13px;
    line-height: 1.6;
  }
  .hero-link {
    width: 100%;
    max-width: 280px;
    margin-top: 13px;
    min-height: 45px;
    padding: 7px 0;
  }
  .hero-bottom {
    bottom: 18px;
  }
  .video-toggle {
    width: 34px;
    height: 34px;
  }
  .hero-image,
  .hero-video {
    object-position: 55% center;
  }
  .editorial {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 65px 35px;
  }
  .editorial-main {
    height: auto;
    aspect-ratio: 4/4.7;
  }
  .editorial-copy {
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr 95px;
    column-gap: 20px;
    align-items: start;
  }
  .editorial-copy > .eyebrow,
  .editorial-copy h2,
  .editorial-text {
    grid-column: 1/-1;
  }
  .editorial-copy h2 {
    font-size: 47px;
    margin-top: 20px;
  }
  .editorial-text {
    font-size: 14px;
    max-width: 440px;
    margin-top: 20px;
  }
  .editorial-copy > .text-link {
    margin-top: 28px;
    align-self: end;
  }
  .editorial-detail {
    width: 95px;
    height: 110px;
    margin-top: 25px;
    margin-left: 0;
  }
  .campaign {
    padding-block: 38px 35px;
  }
  .campaign-heading {
    display: block;
    margin-bottom: 25px;
  }
  .campaign-heading h2 {
    font-size: 52px;
    margin-top: 12px;
  }
  .campaign-heading > p {
    font-size: 13px;
    max-width: 300px;
    margin-top: 14px;
  }
  .campaign-scene {
    margin-inline: calc(var(--gutter) * -1);
  }
  .campaign-scene > img {
    aspect-ratio: 1.1;
    object-fit: cover;
    object-position: center 56%;
  }
  .campaign-status {
    top: 17px;
    right: 23px;
    font-size: 11px;
  }
  .campaign-products {
    gap: 22px;
    padding-top: 22px;
  }
  .campaign-product {
    padding-top: 18px;
    padding-bottom: 0;
  }
  .campaign-product h3 {
    font-size: 31px;
    letter-spacing: -0.04em;
  }
  .campaign-product-top {
    gap: 10px;
  }
  .campaign-product-top > span {
    font-size: 21px;
  }
  .campaign-product p {
    font-size: 12px;
    line-height: 1.65;
    min-height: 60px;
  }
  .campaign-discover {
    font-size: 11px;
    margin-top: 8px;
  }
  .roots-split {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 50px 55px;
  }
  .roots-copy h2 {
    font-size: 52px;
    margin: 20px 0;
  }
  .roots-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .roots-copy .text-link {
    margin-top: 18px;
  }
  .provenance-map {
    max-width: 350px;
  }
  .provenance-map strong {
    font-size: 23px;
  }
  .provenance-map figcaption > span {
    font-size: 10px;
  }
  .map-credit {
    font-size: 9px;
  }
  .page-intro {
    padding-block: 50px 30px;
  }
  .page-intro h1 {
    font-size: 60px;
  }
  .page-intro > p:not(.eyebrow) {
    font-size: 14px;
  }
  .collection {
    padding-top: 15px;
  }
  .product-grid {
    gap: 16px;
  }
  .product-info {
    padding-bottom: 16px;
  }
  .product-info h3 {
    font-size: 31px;
    margin-bottom: 8px;
  }
  .product-info p {
    font-size: 12px;
    min-height: 60px;
  }
  .product-visual {
    height: 245px;
  }
  .product-visual .bottle {
    height: 218px;
    max-width: none;
  }
  .product-visual:hover .bottle {
    transform: none;
  }
  .card-status {
    font-size: 9px;
    left: 11px;
    top: 12px;
  }
  .visual-arrow {
    right: 12px;
    bottom: 12px;
    font-size: 20px;
  }
  .product-more {
    font-size: 12px;
    gap: 25px;
  }
  .packaging-note {
    font-size: 10px;
    margin-top: 20px;
  }
  .product-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding-block: 25px 50px;
  }
  .product-story {
    display: contents;
  }
  .product-story .breadcrumb {
    order: 0;
    margin: 0;
  }
  .product-story > .eyebrow {
    display: none;
  }
  .product-story h1 {
    order: 1;
    font-size: 64px;
    margin: 0 0 4px;
  }
  .product-stage {
    order: 2;
    padding: 20px 16px;
  }
  .product-stage > .bottle {
    height: 390px;
  }
  .product-stage .packaging-note {
    font-size: 10px;
  }
  .product-story .product-lead {
    order: 3;
    max-width: none;
    font-size: 15px;
  }
  .product-story .ingredient-line {
    order: 4;
    margin: 0;
    font-size: 12px;
  }
  .product-story .product-actions {
    order: 5;
    margin: 0;
  }
  .formula-section {
    padding-block: 48px;
  }
  .formula-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .formula-layout h2 {
    font-size: 50px;
  }
  .formula-layout p {
    font-size: 14px;
  }
  .formula-number {
    font-size: 54px;
  }
  .formula-bar > div {
    padding-block: 15px;
  }
  .formula-note {
    font-size: 10px !important;
  }
  .other-product {
    gap: 15px;
    padding-block: 45px;
  }
  .other-product > div {
    flex: 1;
  }
  .other-product h2 {
    font-size: 38px;
    margin-top: 18px;
  }
  .other-product > a {
    width: 105px;
  }
  .other-product .bottle {
    height: 210px;
  }
  .other-product .text-link {
    font-size: 11px;
    gap: 14px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 40px 65px;
  }
  .faq h2 {
    font-size: 46px;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 20px;
  }
  .faq-list p {
    font-size: 13px;
  }
  .story-opening {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 50px;
  }
  .story-opening h1 {
    font-size: 61px;
  }
  .story-opening p:not(.eyebrow) {
    font-size: 15px;
  }
  .story-stone img {
    height: 450px;
  }
  .story-region {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 25px 45px;
  }
  .story-region > figure > img {
    height: 450px;
  }
  .story-region h2 {
    font-size: 52px;
  }
  .story-region > div > p:not(.eyebrow) {
    font-size: 15px;
  }
  .story-region .provenance-map {
    margin: 25px auto 0;
  }
  .story-closing {
    padding-block: 30px 60px;
  }
  .story-closing h2 {
    font-size: 50px;
  }
  .story-closing > p:not(.eyebrow) {
    font-size: 14px;
  }
  .contact-page {
    padding-block: 60px 75px;
  }
  .contact-page h1 {
    font-size: 82px;
    margin-block: 25px;
  }
  .contact-intro {
    font-size: 15px;
  }
  .contact-email {
    margin-top: 35px;
    gap: 20px;
  }
  .contact-email > a {
    font-size: 43px;
  }
  .contact-email > a span {
    font-size: 24px;
  }
  .contact-bottom {
    display: block;
    margin-top: 40px;
  }
  .contact-bottom > p {
    margin-top: 20px;
  }
  .legal-page {
    padding-block: 55px 75px;
  }
  .legal-page h1 {
    font-size: 68px;
  }
  .legal-intro {
    font-size: 17px;
  }
  .legal-page h2 {
    font-size: 29px;
  }
  .legal-page section p {
    font-size: 14px;
  }
  .footer-top {
    padding-block: 40px 30px;
    gap: 30px;
  }
  .wordmark {
    width: 180px;
  }
  .footer-links,
  .footer-contact {
    font-size: 12px;
    gap: 10px;
  }
  .footer-contact > a {
    font-size: 25px;
  }
  .footer-contact > span {
    font-size: 10px;
  }
  .footer-links > .eyebrow,
  .footer-contact > .eyebrow {
    font-size: 11px;
    margin-bottom: 5px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
    font-size: 10px;
  }
  .footer-bottom > span {
    width: 100%;
    margin-right: 0;
  }
  .imagery-note {
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  :root {
    --gutter: 19px;
  }
  .hero {
    min-height: 600px;
  }
  .hero h1 {
    font-size: 77px;
  }
  .hero-wordmark {
    width: 163px;
  }
  .editorial-copy h2 {
    font-size: 41px;
  }
  .editorial-detail {
    width: 80px;
    height: 100px;
  }
  .editorial-copy {
    grid-template-columns: 1fr 80px;
  }
  .campaign-heading h2 {
    font-size: 45px;
  }
  .campaign-products {
    gap: 16px;
  }
  .campaign-product h3 {
    font-size: 28px;
  }
  .campaign-product-top > span {
    font-size: 18px;
  }
  .campaign-product p {
    font-size: 11px;
    min-height: 60px;
  }
  .roots-copy h2 {
    font-size: 46px;
  }
  .provenance-map strong {
    font-size: 20px;
  }
  .product-info h3 {
    font-size: 28px;
  }
  .product-info p {
    font-size: 11px;
    min-height: 60px;
  }
  .product-visual {
    height: 220px;
  }
  .product-visual .bottle {
    height: 195px;
  }
  .card-status {
    font-size: 8px;
  }
  .product-stage > .bottle {
    height: 345px;
  }
  .contact-email > a {
    font-size: 38px;
  }
  .footer-contact > a {
    font-size: 22px;
  }
  .story-opening h1 {
    font-size: 51px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

/* Browser review: keep the gold wordmark on the darker land, above the title. */
.hero-wordmark {
  position: static;
  width: 205px;
  margin-bottom: 30px;
  flex: none;
}
@media (max-width: 600px) {
  .hero-wordmark {
    width: 172px;
    margin-bottom: 24px;
  }
  html[lang="pt-PT"] .hero h1 {
    font-size: clamp(66px, 17.6vw, 98px);
  }
}
@media (max-width: 360px) {
  .hero-wordmark {
    width: 158px;
  }
  html[lang="pt-PT"] .hero h1 {
    font-size: 64px;
  }
}

@media (max-width: 360px) {
  .campaign-product h3 {
    font-size: 26px;
  }
  .campaign-product-top {
    gap: 5px;
  }
  .campaign-product-top > span {
    font-size: 17px;
  }
}

.campaign-status {
  display: block;
  position: static;
  font-size: 12px;
  color: var(--gold);
  margin-top: 10px;
}
.campaign {
  scroll-margin-top: 0;
}
@media (min-width: 601px) {
  .campaign-scene > img {
    width: auto;
    max-width: 100%;
    height: clamp(470px, 43vw, 630px);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    mask-image: linear-gradient(
      90deg,
      transparent,
      #000 15%,
      #000 82%,
      transparent
    );
  }
}
