:root {
  --green: #10231b;
  --green-2: #172d23;
  --green-3: #20372c;
  --paper: #f4f0e6;
  --paper-2: #e9e3d6;
  --white: #fbf8f0;
  --ink: #11281f;
  --text: #f5f1e8;
  --muted: #b8c1ba;
  --muted-dark: #5b6a61;
  --copper: #d98f5d;
  --line: rgba(245, 241, 232, 0.18);
  --line-dark: rgba(17, 40, 31, 0.18);
  --radius: 22px;
  --radius-lg: 34px;
  --max: 1440px;
  --gutter: clamp(22px, 5vw, 76px);
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--green);
  color: var(--text);
  font: 400 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.locked {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}
address {
  font-style: normal;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}
h1 {
  font-size: clamp(4.6rem, 8vw, 8rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(3.1rem, 5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}
h3 {
  font-weight: 600;
}
code {
  font: inherit;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.08em 0.3em;
  border-radius: 0.35em;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -90px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  transition: top 0.15s;
}
.skip-link:focus {
  top: 12px;
}
:focus-visible {
  outline: 3px solid #f1b183;
  outline-offset: 4px;
}
::selection {
  background: var(--copper);
  color: var(--green);
}
.site-header {
  height: 86px;
  max-width: var(--max);
  margin: auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 35, 27, 0.91);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font: 500 2rem/0.9 var(--serif);
  letter-spacing: -0.04em;
}
.brand-sub {
  margin-top: 8px;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.76rem;
}
.nav > a {
  padding: 8px 0;
  position: relative;
}
.nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav > a:hover::after,
.nav > a:focus-visible::after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  padding: 11px;
  background: transparent;
  color: inherit;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.button {
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--copper);
  color: #14271f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: #e5a170;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.button-small {
  min-height: 40px;
  padding: 10px 17px;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: #fffaf0;
}
.button-full {
  width: 100%;
}
.text-link-arrow {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
}
.link-button,
.footer-link {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
}
.link-button {
  padding-bottom: 3px;
}
.kicker {
  margin-bottom: 22px;
  color: var(--copper);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: clamp(88px, 9vw, 140px) var(--gutter);
}
.section-light {
  max-width: none;
  background: var(--paper);
  color: var(--ink);
  padding-left: max(
    var(--gutter),
    calc((100vw - var(--max)) / 2 + var(--gutter))
  );
  padding-right: max(
    var(--gutter),
    calc((100vw - var(--max)) / 2 + var(--gutter))
  );
}
.hero {
  max-width: var(--max);
  margin: auto;
  padding: clamp(42px, 6vw, 84px) var(--gutter) 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  grid-template-areas: "copy figure" "meta figure";
  gap: 36px clamp(46px, 7vw, 112px);
  align-items: start;
}
.hero-copy {
  grid-area: copy;
  padding-top: 26px;
}
.hero h1 em {
  color: var(--copper);
  font-weight: 500;
}
.hero-lead {
  max-width: 560px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-figure {
  grid-area: figure;
  position: relative;
  min-height: 650px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-2);
}
.hero-figure img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center 47%;
  filter: saturate(0.82) contrast(1.03);
}
.hero-figure::after {
  content: "";
  position: absolute;
  inset: 58% 0 0;
  background: linear-gradient(transparent, rgba(7, 19, 13, 0.62));
  pointer-events: none;
}
.hero-figure figcaption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-meta {
  grid-area: meta;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-self: end;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.hero-meta > div {
  padding-right: 20px;
}
.hero-meta > div + div {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.hero-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
}
.hero-meta strong {
  font-size: 0.72rem;
  font-weight: 600;
}
.season-bar {
  max-width: var(--max);
  margin: 0 auto 0;
  padding: 18px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.68rem;
}
.season-bar span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.season-bar strong {
  font-weight: 400;
  text-align: right;
}
.intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(42px, 8vw, 130px);
}
.section-heading h2 {
  max-width: 680px;
}
.intro-copy {
  padding-top: 50px;
}
.intro-statement {
  font: 500 clamp(1.7rem, 2.7vw, 2.6rem)/1.16 var(--serif);
  margin-bottom: 28px;
}
.intro-copy > p:last-child {
  max-width: 600px;
  color: var(--muted-dark);
}
.method-list {
  grid-column: 1/-1;
  margin-top: 40px;
  border-top: 1px solid var(--line-dark);
}
.method-list article {
  display: grid;
  grid-template-columns: 150px 0.7fr 1fr;
  gap: 36px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
}
.method-label {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.method-list h3 {
  font: 500 1.8rem/1 var(--serif);
}
.method-list article > p:last-child {
  color: var(--muted-dark);
  font-size: 0.84rem;
  max-width: 430px;
}
.menu-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}
.menu-heading > p {
  max-width: 500px;
  color: var(--muted);
  justify-self: end;
}
.tasting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 70px;
}
.tasting {
  min-height: 190px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, 0.02);
}
.tasting-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: transparent;
}
.tasting-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.68;
  margin-bottom: 20px;
}
.tasting h3 {
  font: 500 2.8rem/1 var(--serif);
  margin-bottom: 12px;
}
.tasting div > p:last-child {
  max-width: 300px;
  font-size: 0.8rem;
  opacity: 0.72;
}
.tasting-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  white-space: nowrap;
}
.tasting-side strong {
  font: 500 2rem/1 var(--serif);
}
.menu-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(46px, 7vw, 105px);
  align-items: start;
}
.menu-photo {
  position: sticky;
  top: 112px;
}
.menu-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.78);
}
.menu-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 2px 0;
  color: var(--muted);
  font-size: 0.64rem;
}
.menu-card {
  padding-top: 4px;
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  background: transparent;
  color: inherit;
  font-size: 0.7rem;
}
.tabs button[aria-selected="true"] {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}
.dish {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.dish h3 {
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.dish p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.74rem;
}
.dish > span {
  color: var(--copper);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.fine-print {
  margin-top: 24px;
  max-width: 650px;
  color: var(--muted);
  font-size: 0.66rem;
}
.dining {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  background: var(--green-2);
  min-height: 700px;
}
.dining-photo {
  min-height: 700px;
}
.dining-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.85);
}
.dining-copy {
  align-self: center;
  padding: clamp(74px, 8vw, 120px) var(--gutter);
}
.dining-lead {
  max-width: 550px;
  margin: 28px 0 38px;
  color: var(--muted);
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion details {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  cursor: pointer;
  font: 500 1.45rem/1 var(--serif);
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span {
  transition: transform 0.18s;
}
.accordion details[open] summary span {
  transform: rotate(45deg);
}
.accordion details p {
  max-width: 520px;
  padding: 0 38px 22px 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.provenance {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.provenance-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 26px 0 34px;
  color: var(--muted-dark);
}
.provenance-list {
  border-top: 1px solid var(--line-dark);
}
.provenance-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dark);
}
.provenance-list dt {
  font-weight: 600;
  font-size: 0.78rem;
}
.provenance-list dd {
  color: var(--muted-dark);
  font-size: 0.78rem;
}
.provenance-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: saturate(0.76);
}
.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(54px, 9vw, 135px);
  align-items: start;
}
.contact-intro > p:not(.kicker) {
  max-width: 450px;
  margin: 28px 0 0;
  color: var(--muted);
}
.contact-intro .button {
  margin-top: 30px;
}
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.contact-details > div {
  min-height: 130px;
  padding: 24px 18px 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-details > div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.contact-details span {
  display: block;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.contact-details p,
.contact-details address {
  font-size: 0.84rem;
}
.contact-details a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer {
  max-width: var(--max);
  margin: auto;
  padding: 38px var(--gutter) 46px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 1fr auto auto;
  gap: 30px;
  align-items: end;
}
.footer .brand-name {
  font: 500 2rem/0.9 var(--serif);
}
.footer > div p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer > p,
.footer-link {
  font-size: 0.68rem;
}
.back-top {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
dialog {
  width: min(730px, calc(100% - 28px));
  max-height: 90dvh;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px;
  background: #14271f;
  color: var(--text);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.6);
}
dialog::backdrop {
  background: rgba(5, 12, 8, 0.76);
  backdrop-filter: blur(7px);
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1;
}
dialog h2 {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  padding-right: 34px;
}
.dialog-intro {
  max-width: 600px;
  margin: 18px 0 30px;
  color: var(--muted);
  font-size: 0.8rem;
}
label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.7rem;
}
label span {
  color: var(--muted);
}
input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0e1f18;
  color: var(--text);
  padding: 12px 13px;
}
textarea {
  min-height: 100px;
  resize: vertical;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid-three {
  grid-template-columns: 1.25fr 1fr 0.75fr;
}
.success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--copper);
  color: var(--green);
  font-size: 1.4rem;
}
.success h3 {
  font: 500 2.6rem/1 var(--serif);
  margin: 8px 0 18px;
}
.success > p:not(.kicker) {
  margin-bottom: 18px;
  color: var(--muted);
}
.success strong {
  color: var(--text);
}
.info-dialog {
  width: min(850px, calc(100% - 28px));
}
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0;
}
.download-card {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.18s;
}
.download-card:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}
.download-card > span {
  font: 500 1.7rem/1 var(--serif);
  margin-bottom: 18px;
}
.download-card strong {
  font-size: 0.7rem;
}
.download-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.65rem;
}
.download-card b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--copper);
  font-size: 0.68rem;
}
.tech-specs {
  border-top: 1px solid var(--line);
}
.tech-specs > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.tech-specs span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.tech-specs p {
  font-size: 0.72rem;
  color: var(--muted);
}
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 0.92fr 1.08fr;
    column-gap: 44px;
  }
  .hero-figure,
  .hero-figure img {
    height: 590px;
    min-height: 590px;
  }
  .hero-meta {
    grid-template-columns: 1fr;
  }
  .hero-meta > div {
    padding: 10px 0;
  }
  .hero-meta > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .menu-content {
    gap: 50px;
  }
  .intro {
    gap: 56px;
  }
  .contact {
    gap: 60px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 80px;
  }
  .site-header {
    height: 76px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 22px var(--gutter) 30px;
    background: #10231bf7;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .nav .button {
    width: 100%;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "figure" "meta";
    padding-top: 35px;
    padding-bottom: 54px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .hero h1 {
    font-size: clamp(4.1rem, 19vw, 6.3rem);
  }
  .hero-lead {
    font-size: 0.9rem;
  }
  .hero-figure,
  .hero-figure img {
    height: min(112vw, 560px);
    min-height: 0;
  }
  .hero-figure {
    border-radius: 26px;
  }
  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-meta > div {
    padding: 0 12px 0 0;
  }
  .hero-meta > div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 12px;
  }
  .hero-meta strong {
    font-size: 0.64rem;
  }
  .season-bar {
    flex-direction: column;
    gap: 6px;
  }
  .season-bar strong {
    text-align: left;
  }
  .intro,
  .menu-heading,
  .provenance,
  .contact {
    grid-template-columns: 1fr;
  }
  .intro-copy {
    padding-top: 0;
  }
  .method-list {
    margin-top: 18px;
  }
  .method-list article {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .method-list h3 {
    font-size: 1.65rem;
  }
  .menu-heading > p {
    justify-self: start;
  }
  .tasting-grid {
    grid-template-columns: 1fr;
  }
  .menu-content {
    grid-template-columns: 1fr;
  }
  .menu-photo {
    position: static;
  }
  .menu-photo img {
    aspect-ratio: 4/3;
  }
  .dining {
    grid-template-columns: 1fr;
  }
  .dining-photo {
    min-height: 390px;
    height: 390px;
  }
  .dining-copy {
    padding: 68px var(--gutter);
  }
  .provenance-photo {
    order: -1;
  }
  .contact-details {
    margin-top: 12px;
  }
  .footer {
    grid-template-columns: 1fr auto;
  }
  .footer > p {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .footer-link {
    justify-self: start;
  }
  .back-top {
    grid-column: 2;
    grid-row: 1;
  }
  .form-grid,
  .form-grid-three,
  .download-grid {
    grid-template-columns: 1fr;
  }
  .tech-specs > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  dialog {
    padding: 38px 22px 28px;
  }
}
@media (max-width: 430px) {
  h2 {
    font-size: 3.15rem;
  }
  .hero-actions {
    align-items: stretch;
  }
  .hero-actions .button,
  .hero-actions .text-link-arrow {
    width: 100%;
    justify-content: space-between;
  }
  .hero-meta {
    grid-template-columns: 1fr;
  }
  .hero-meta > div {
    padding: 10px 0;
  }
  .hero-meta > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .tasting {
    flex-direction: column;
  }
  .tasting-side {
    align-items: flex-start;
    gap: 20px;
  }
  .provenance-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .contact-details {
    grid-template-columns: 1fr;
  }
  .contact-details > div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
  .hero-figure figcaption {
    flex-direction: column;
    gap: 3px;
  }
  .download-card {
    min-height: 145px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

.section-light .kicker {
  color: #9f5830;
}
