:root {
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --bottle: #0a0a0a;
  --bottle-mid: #f4f4f2;
  --accent: #111111;
  --accent-text: #111111;
  --accent-bright: #f4f4f2;
  --parchment: #f4f4f2;
  --cream: #ffffff;
  --paper: #f4f4f2;
  --muted: #6e6e6e;
  --tint: #f4f4f2;
  --leaf: #f4f4f2;
  --citrus: #111111;
  --line: rgba(17, 17, 17, 0.22);
  --line-light: rgba(255, 255, 255, 0.22);
  --focus: #111111;
  --header-h: 5.6rem;
}

body {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0;
  background: var(--parchment);
}

/* Masthead: a small folio on the cover, a nameplate once the page moves. */

body.is-hero-dark .site-header:not(.is-scrolled):not(:has(.site-nav.is-open)) {
  color: var(--parchment);
  background: transparent;
  border: 0;
}

body.is-hero-dark .site-header:not(.is-scrolled) .brand-word {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

body.is-hero-dark .site-header:not(.is-scrolled) .brand-sub {
  display: none;
}

body.is-hero-dark .site-header.is-scrolled,
body:not(.is-hero-dark) .site-header {
  color: var(--ink);
  background: var(--parchment);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.brand-word {
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  letter-spacing: -0.03em;
}

.brand-sub {
  letter-spacing: 0.28em;
  font-size: 0.58rem;
}

.site-nav a,
.nav-toggle {
  font-family: var(--sans);
}

.nav-toggle {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

body.is-hero-dark .site-header:not(.is-scrolled):not(:has(.site-nav.is-open)) .site-nav a:hover,
body.is-hero-dark .site-header:not(.is-scrolled):not(:has(.site-nav.is-open)) .site-nav a[aria-current="page"] {
  color: #ffffff;
}

body.is-hero-dark .site-header:not(.is-scrolled) .nav-door,
body.is-hero-dark .site-header:not(.is-scrolled) .nav-door:hover,
body.is-hero-dark .site-header:not(.is-scrolled) .nav-door:focus-visible {
  background: var(--parchment);
  color: var(--bottle);
  border-color: var(--parchment);
}

.site-header.is-scrolled .nav-door,
.site-header.is-scrolled .nav-door:hover,
.site-header.is-scrolled .nav-door:focus-visible,
.site-header.is-scrolled .nav-door[aria-current="page"],
body:not(.is-hero-dark) .nav-door,
body:not(.is-hero-dark) .nav-door:hover,
body:not(.is-hero-dark) .nav-door:focus-visible {
  background: var(--ink);
  color: var(--parchment);
  border-color: var(--ink);
}

body.is-hero-dark .site-header:has(.site-nav.is-open) .nav-door-menu,
.site-header:has(.site-nav.is-open) .nav-door-menu {
  background: var(--ink);
  color: var(--parchment);
  border-color: var(--ink);
}

/* Cover */

.hero-cover,
.page-cover {
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  color: var(--parchment);
  background: var(--bottle);
}

.hero-cover {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(100svh, auto);
}

.hero-cover .hero-media {
  position: absolute;
  inset: 0;
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  min-height: 100%;
  opacity: 1;
  pointer-events: none;
}

.hero-cover .hero-media img,
.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.9);
  color: transparent;
}

.hero-cover .hero-media img {
  object-position: center 38%;
  transform: none;
}

.hero-cover .hero-media::after {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.72) 34%, rgba(10, 10, 10, 0.28) 62%, rgba(10, 10, 10, 0.16) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.42) 0%, rgba(10, 10, 10, 0.08) 28%, rgba(10, 10, 10, 0.08) 68%, rgba(10, 10, 10, 0.62) 100%);
}

.hero-cover .hero-copy,
.page-cover-copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: auto;
  max-width: none;
  margin: 0;
  padding: calc(var(--header-offset) + 1.25rem) 2.4rem 4.6rem var(--gutter);
}

.hero-cover .hero-copy {
  max-width: 36rem;
}

.hero-cover .eyebrow,
.page-cover .eyebrow {
  color: rgba(244, 244, 242, 0.72);
  letter-spacing: 0.32em;
}

.hero-cover .display,
.page-cover .display {
  max-width: none;
  font-size: clamp(3.4rem, 13.8vw, 12.5rem);
  line-height: 0.76;
  letter-spacing: -0.065em;
  color: var(--parchment);
}

.hero-cover .display {
  width: auto;
  white-space: normal;
  font-size: clamp(4rem, 7.2vw, 8.2rem);
  margin-left: -0.04em;
}

.hero-cover .display em {
  font-size: 0.34em;
  letter-spacing: 0;
  margin-left: -0.12em;
  vertical-align: 0.62em;
}

.page-cover .display {
  font-size: clamp(4.2rem, 16vw, 13rem);
  white-space: nowrap;
}

.hero-cover .hero-belief {
  position: relative;
  z-index: 1;
  max-width: 16rem;
  margin: 0.35rem 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.12;
  color: var(--parchment);
}

.hero-cover .measure,
.page-cover .lede {
  max-width: 26rem;
  margin-top: 1.4rem;
  color: rgba(244, 244, 242, 0.78);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.4;
}

.hero-cover .hero-spine {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: auto;
  margin: 0;
  padding: 0 0 1.15rem var(--gutter);
  border: 0;
  background: none;
  color: rgba(244, 244, 242, 0.86);
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
  transform: none;
}

.hero-cover .btn::after,
.page-cover .btn::after,
.btn::after {
  content: none;
}

.btn {
  border-radius: 0;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--parchment);
}

.btn:hover,
.btn:focus-visible {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.hero-cover .btn-cover {
  background: var(--parchment);
  color: var(--bottle);
  border-color: var(--parchment);
}

.hero-cover .btn-cover:hover,
.hero-cover .btn-cover:focus-visible {
  background: transparent;
  color: var(--parchment);
  border-color: var(--parchment);
}

.hero-cover .btn-cover-line {
  background: transparent;
  color: var(--parchment);
  border-color: transparent;
  border-bottom: 1px solid rgba(244, 244, 242, 0.75);
  padding-left: 0.15rem;
  padding-right: 0.15rem;
}

.hero-cover .btn-cover-line:hover,
.hero-cover .btn-cover-line:focus-visible {
  background: transparent;
  color: #ffffff;
  border-color: transparent;
  border-bottom-color: #ffffff;
}

.hero-cover :focus-visible,
.page-cover :focus-visible,
body.is-hero-dark .site-header:not(.is-scrolled) :focus-visible {
  outline-color: var(--parchment);
}

/* Broadsheet */

.section {
  border-top: 1px solid var(--ink);
}

.section-paper,
.section-dark,
.section-tint {
  --still-label: var(--parchment);
  color: var(--ink);
  background: var(--parchment);
}

.section-dark .eyebrow,
.section-tint .eyebrow,
.section-dark .chapter-num,
.section-tint .chapter-num,
.section .chapter-num,
.section .eyebrow {
  color: var(--ink);
}

.section-dark .muted,
.section-tint .muted,
.section-dark .award span,
.section-tint .award span {
  color: var(--muted);
}

.section-dark .award,
.section-tint .award {
  border-top-color: var(--line);
}

.section-title {
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.chapter-num {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
}

.scroll-progress {
  width: 1px;
  background: var(--ink);
}

.frame {
  background: transparent;
  border: 1px solid var(--line);
}

.ph figcaption {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bar {
  height: 2px;
  background: rgba(17, 17, 17, 0.16);
}

.bar > span {
  background: var(--ink);
}

.chip,
.section-dark .chip,
.section-tint .chip {
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  padding: 0.35rem 0;
  color: var(--muted);
}

.chip.is-on,
.chip[aria-pressed="true"],
.section-dark .chip.is-on,
.section-dark .chip[aria-pressed="true"],
.section-tint .chip.is-on,
.section-tint .chip[aria-pressed="true"] {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  border-bottom-color: var(--ink);
}

.chip-row {
  gap: 1.4rem 1.8rem;
}

.featured-card h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.featured-card span,
.drink-meta,
.fact dt,
.notes,
.ph-badge,
.still-kicker,
.still-hint,
.still-name,
.still-hub-label,
.footer-note {
  font-family: var(--sans);
}

@media (min-width: 980px) {
  .drink-grid.drink-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem 1.6rem;
  }
}

.drink-grid {
  gap: 0;
}

.drink-card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
}

.drink-head h3 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.drink-head::after {
  color: var(--ink);
}

.drink-body {
  max-width: 40rem;
}

.drink-origin,
.drink-method {
  font-size: 1.15rem;
}

/* Botanical dial, drawn in ink. */

#botanicals .still-lede,
#botanicals .still-read [data-detail-copy],
#botanicals .still-latin,
#botanicals .still-kicker-of {
  color: var(--ink-soft);
}

#botanicals .still-dial {
  --still-hand-from: #111111;
}

#botanicals .still-dial::before {
  background: none;
}

#botanicals .still-ticks {
  background: repeating-conic-gradient(#111111 0 0.6deg, transparent 0.6deg 5deg);
}

#botanicals .still-plate {
  box-shadow: none;
}

#botanicals .still-plate::before,
#botanicals .still-plate::after {
  border-color: rgba(17, 17, 17, 0.28);
}

#botanicals .still-hand span {
  background: #111111;
}

#botanicals .still-hand span::after {
  border-color: #111111;
}

#botanicals .still-node {
  background: transparent;
  border-color: #111111;
  color: #111111;
}

#botanicals .still-name {
  color: #111111;
}

#botanicals .still-node.is-on,
#botanicals .still-node.is-hot {
  background: #111111;
  border-color: #111111;
  color: #111111;
  box-shadow: 0 0 0 0.4rem rgba(17, 17, 17, 0.1);
}

#botanicals .still-node.is-on .still-name,
#botanicals .still-node.is-hot .still-name {
  color: #111111;
}

#botanicals .still-dial.is-previewing .still-node.is-on:not(.is-hot) {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px #111111;
}

#botanicals .still-hub {
  color: #111111;
  background: transparent;
  border-color: rgba(17, 17, 17, 0.45);
  box-shadow: none;
}

#botanicals .still-hub.is-on,
#botanicals .still-hub.is-hot {
  background: #111111;
  color: var(--parchment);
  border-color: #111111;
}

#botanicals .still-dial.is-previewing .still-hub.is-on:not(.is-hot) {
  background: transparent;
  color: #111111;
  box-shadow: inset 0 0 0 1px #111111;
}

#botanicals .still-read,
#botanicals .still-glass {
  border-top-color: rgba(17, 17, 17, 0.22);
}

#botanicals .still-read h3,
#botanicals .still-glass em,
#botanicals .still-kicker,
#botanicals .still-glass span {
  color: #111111;
}

#botanicals .still-hint {
  color: var(--muted);
}

#botanicals .still-kicker-rule {
  background: rgba(17, 17, 17, 0.35);
}

.site-footer .eyebrow {
  color: var(--muted);
}

.site-footer a,
.site-footer a:hover {
  color: var(--parchment);
}

.age-gate {
  background: var(--bottle);
  color: var(--parchment);
}

.age-gate .btn,
.age-gate .btn-light {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(244, 244, 242, 0.45);
}

.age-gate .btn:hover,
.age-gate .btn:focus-visible,
.age-gate .btn-light:hover,
.age-gate .btn-light:focus-visible {
  background: var(--parchment);
  color: var(--bottle);
  border-color: var(--parchment);
}

@media (max-width: 800px) {
  .hero-cover,
  .page-cover {
    grid-template-columns: 1fr;
  }

  .hero-cover .hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    max-width: none;
  }

  .hero-cover .hero-media {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 100%;
  }

  .hero-cover .hero-media::after {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.38) 42%, rgba(10, 10, 10, 0.78) 100%);
  }

  .hero-cover .hero-spine {
    left: 0;
    right: 0;
    bottom: 0;
  }

  .hero-cover .display,
  .page-cover .display {
    width: auto;
    white-space: normal;
    font-size: clamp(3.35rem, 16vw, 5.4rem);
    letter-spacing: -0.045em;
  }

  .hero-cover .hero-belief {
    margin-top: 0.8rem;
  }
}

@media (min-width: 801px) {
  .hero-cover .hero-copy {
    transform: none;
  }
}

/* Front page: one broadsheet, not a stack of matching chapters. */

.hero-cover {
  grid-template-rows: minmax(100svh, auto);
}

.ph-badge {
  display: none;
}

.gg-paper .section:not(.hero) {
  padding: 1.2rem 0 1.35rem;
  border-top: 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.gg-paper .lede {
  font-size: 1.08rem;
  line-height: 1.45;
}

.gg-sheet,
.gg-desk,
#botanicals .wrap {
  width: min(44rem, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.gg-paper .section.gg-lead {
  border-top: 3px double var(--ink);
  background: var(--parchment);
}

.gg-lead .section-title {
  max-width: 18em;
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
}

.gg-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 1.75rem;
}

.gg-cols > p {
  margin: 0;
}

.gg-cols > p:not(:first-child) {
  padding-left: 1.75rem;
  border-left: 1px solid var(--line);
}

.gg-cols .lede::first-letter {
  float: left;
  margin: 0.06em 0.08em 0 0;
  font-size: 2.15rem;
  line-height: 0.8;
}

.gg-paper .section.gg-strengths {
  border-top: 1px solid var(--ink);
}

.gg-strengths-head {
  margin-bottom: 0.9rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--ink);
}

.gg-strengths-head .section-title {
  max-width: 22em;
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
}

.gg-strengths-head .chip-row {
  gap: 1.15rem;
  margin: 0;
}

.gg-edition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 11rem;
  gap: 0.85rem 1.25rem;
  align-items: start;
}

.gg-degree {
  margin: 0 0 0.15rem;
  font-family: var(--serif);
  font-size: 2.05rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.gg-paper .ph.gg-cut,
.gg-paper .ph.gg-desk-photo {
  margin: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.gg-paper .ph.gg-cut {
  width: 11rem;
  max-width: 100%;
}

.gg-paper .ph.gg-desk-photo {
  width: 100%;
}

.gg-paper .ph.gg-cut img,
.gg-paper .ph.gg-desk-photo img {
  display: block;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.gg-paper .ph.gg-cut img {
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: grayscale(1) contrast(1.08);
}

.gg-paper .ph.gg-desk-photo img {
  height: 9rem;
}

.gg-paper .ph.gg-henrik {
  width: min(16rem, 100%);
  margin-bottom: 1.05rem;
}

.gg-paper .ph.gg-henrik img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% center;
}

.gg-paper .ph.gg-henrik .gg-archive {
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.gg-paper .ph figcaption {
  margin-top: 0.4rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

#botanicals.section {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
  border-top: 1px solid var(--ink);
}

#botanicals .section-title {
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
}

#botanicals .wrap {
  width: min(68rem, calc(100% - var(--gutter) * 2));
}

@media (min-width: 800px) {
  #botanicals .still {
    grid-template-columns: minmax(16rem, 1.15fr) minmax(18rem, 0.85fr);
    grid-template-areas: "dial story";
    align-items: center;
  }

  #botanicals .still-dial {
    width: min(32rem, 100%);
  }
}

.gg-paper .section.gg-briefs {
  border-top: 1px solid var(--ink);
}

#drinks .gg-sheet {
  width: min(68rem, calc(100% - var(--gutter) * 2));
}

.gg-briefs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.8rem;
}

.gg-briefs-head .section-title {
  max-width: 16em;
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
}

.gg-briefs-head .btn {
  padding: 0.1rem 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

.gg-briefs-note {
  max-width: 38rem;
  margin: 0 0 1.4rem;
}

.gg-briefs .drink-grid.drink-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.gg-briefs .featured-card {
  min-height: 100%;
  padding: 0 1.15rem;
  border: 0;
  border-left: 1px solid var(--line);
}

.gg-briefs .featured-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.gg-briefs .featured-card span {
  margin-top: auto;
  padding-top: 0.85rem;
}

.gg-briefs .featured-card h3 {
  font-size: 1.45rem;
}

.gg-desk {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1.05fr;
  gap: 0;
  width: min(76rem, calc(100% - var(--gutter) * 2));
  margin: 0 auto 2.4rem;
  border-top: 1px solid var(--ink);
}

.gg-paper .gg-desk > .section {
  padding: 1.5rem 1.75rem 1.8rem;
  border-left: 1px solid var(--line);
}

.gg-paper .gg-desk > .section:first-child {
  padding-left: 0;
  border-left: 0;
}

.gg-paper .gg-desk > .section:last-child {
  padding-right: 0;
}

.gg-desk .fact,
.gg-desk .award {
  padding: 0.15rem 0 0;
  border-top: 0;
}

.gg-desk .fact-grid,
.gg-desk .award-strip {
  gap: 0.85rem;
  margin-top: 1rem;
}

.gg-desk .section-title {
  font-size: clamp(1.45rem, 1.6vw, 1.75rem);
}

.gg-desk .fact-grid,
.gg-desk .award-strip {
  grid-template-columns: 1fr;
}

.gg-desk-photo {
  margin-top: 0.9rem;
}

.gg-desk .house-mark img {
  width: 6.5rem;
}

.page-cover {
  display: block;
  min-height: 0;
  padding: calc(var(--header-offset) + 3.2rem) 0 1.6rem;
  overflow: visible;
  color: var(--ink);
  background: var(--parchment);
}

.page-cover .page-cover-copy {
  width: min(44rem, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  padding: 0;
}

.page-cover .eyebrow,
.page-cover .lede {
  color: var(--ink-soft);
}

.page-cover .display {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  white-space: normal;
}

.page-cover + .section .wrap {
  width: min(44rem, calc(100% - var(--gutter) * 2));
}

.page-cover .hero-spine {
  display: block;
  width: min(44rem, calc(100% - var(--gutter) * 2));
  margin: 1.3rem auto 0;
  padding: 0.7rem 0 0;
  border: 0;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-align: left;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
  transform: none;
  background: none;
}

@media (max-width: 720px) {
  .gg-cols,
  .gg-edition,
  .gg-desk {
    grid-template-columns: 1fr;
  }

  .gg-paper .ph.gg-cut {
    width: min(100%, 11rem);
  }

  .gg-paper .ph.gg-desk-photo {
    width: min(100%, 9.25rem);
  }

  .gg-paper .ph.gg-henrik {
    width: min(16rem, 100%);
  }

  .gg-cols > p:not(:first-child) {
    margin-top: 1rem;
    padding-top: 1rem;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .gg-strengths-head,
  .gg-briefs-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gg-strengths-head .chip-row {
    align-items: flex-start;
  }

  .gg-briefs .drink-grid.drink-grid-4 {
    grid-template-columns: 1fr;
  }

  .gg-briefs .featured-card,
  .gg-briefs .featured-card:first-child {
    padding: 0.9rem 0 0;
    border: 0;
  }

  .gg-desk {
    margin-bottom: 0;
  }

  .gg-desk > .section,
  .gg-desk > .section:first-child,
  .gg-desk > .section:last-child {
    padding: 1.6rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
