:root {
  --v4-black: #040505;
  --v4-ink: #f8f2ea;
  --v4-muted: #d8d1c8;
  --v4-gold: #d39a43;
  --v4-copper: #9d5a16;
  --v4-shell: min(1470px, calc(100% - 96px));
  --v4-serif: Georgia, "Times New Roman", serif;
  --v4-sans: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--v4-black);
}

body {
  margin: 0;
  color: var(--v4-ink);
  background: var(--v4-black);
  font-family: var(--v4-sans);
}

a {
  color: inherit;
}

html.age-gate-pending,
html.age-gate-pending body {
  min-height: 100%;
  overflow: hidden;
  background: #040505;
}

html.age-gate-pending:not(.age-gate-revealing) atlas-navigation,
html.age-gate-pending:not(.age-gate-revealing) main,
html.age-gate-pending:not(.age-gate-revealing) .v4-footer {
  visibility: hidden;
}

.wfa-age-gate {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  overflow: auto;
  padding: 38px;
  color: #f8f2ea;
  background:
    linear-gradient(90deg, rgba(4, 5, 5, .98) 0%, rgba(4, 5, 5, .91) 43%, rgba(4, 5, 5, .63) 100%),
    url("landing_production_v4_assets/hero_scene.png") 56% center / cover no-repeat,
    #040505;
  opacity: 1;
  transition: opacity 320ms ease-in-out;
}

html.age-gate-pending .wfa-age-gate {
  display: grid;
}

.wfa-age-gate.is-leaving {
  pointer-events: none;
  opacity: 0;
}

.wfa-age-panel {
  width: min(1080px, 100%);
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(330px, .88fr) minmax(440px, 1.12fr);
  overflow: hidden;
  border: 1px solid rgba(201, 137, 56, .58);
  border-radius: 8px;
  background:
    radial-gradient(circle at 17% 28%, rgba(141, 75, 24, .18), transparent 32%),
    linear-gradient(135deg, rgba(21, 17, 13, .97), rgba(7, 9, 8, .985));
  box-shadow: 0 38px 100px rgba(0, 0, 0, .58), inset 0 1px 0 rgba(255, 238, 210, .06);
}

.wfa-age-crest {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 54px 32px;
  border-right: 1px solid rgba(201, 137, 56, .21);
  background:
    radial-gradient(circle, rgba(128, 67, 21, .19), transparent 59%),
    rgba(0, 0, 0, .12);
}

.wfa-age-crest img {
  width: min(340px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 27px rgba(0, 0, 0, .42));
}

.wfa-age-content {
  align-self: center;
  padding: 66px 72px;
}

.wfa-age-brand {
  margin: 0 0 20px;
  color: #d39a43;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.wfa-age-content h2 {
  max-width: 560px;
  margin: 0;
  color: #fffaf4;
  font: 700 clamp(44px, 4vw, 61px)/.99 var(--v4-serif);
  letter-spacing: -.038em;
}

.wfa-age-content > p:not(.wfa-age-brand) {
  max-width: 570px;
  margin: 24px 0 0;
  color: #d6ccc0;
  font-size: 16px;
  line-height: 1.62;
}

.wfa-age-content > p + p:not(.wfa-age-brand) {
  margin-top: 9px;
}

.wfa-age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.wfa-age-actions button {
  min-height: 52px;
  padding: 13px 25px;
  border-radius: 3px;
  font: 800 13px/1 var(--v4-sans);
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.wfa-age-enter {
  min-width: 188px;
  border: 1px solid #c27d29;
  color: #fff;
  background: linear-gradient(180deg, #d3913c, #9a5514);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .32);
}

.wfa-age-exit {
  min-width: 150px;
  border: 1px solid rgba(224, 208, 189, .58);
  color: #f8f2ea;
  background: rgba(0, 0, 0, .24);
}

.wfa-age-actions button:focus-visible,
.wfa-age-exit-message:focus-visible {
  outline: 2px solid #e0ad61;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .wfa-age-actions button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 29px rgba(0, 0, 0, .38);
  }
}

.wfa-age-panel.is-denied .wfa-age-actions,
.wfa-age-panel.is-denied .wfa-age-content > p:not(.wfa-age-brand),
.wfa-age-panel.is-denied .wfa-age-content > h2 {
  display: none;
}

.wfa-age-exit-message {
  margin-top: 28px;
}

.wfa-age-exit-message h3 {
  margin: 0;
  color: #fffaf4;
  font: 700 38px/1.05 var(--v4-serif);
  letter-spacing: -.025em;
}

.wfa-age-exit-message p {
  margin: 16px 0 0;
  color: #d6ccc0;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .wfa-age-gate {
    padding: 22px;
    background-position: 63% center;
  }

  .wfa-age-panel {
    width: min(620px, 100%);
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .wfa-age-crest {
    padding: 26px 28px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 137, 56, .16);
  }

  .wfa-age-crest img {
    width: 205px;
  }

  .wfa-age-content {
    padding: 34px 46px 44px;
    text-align: center;
  }

  .wfa-age-content h2,
  .wfa-age-content > p:not(.wfa-age-brand) {
    margin-right: auto;
    margin-left: auto;
  }

  .wfa-age-actions {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .wfa-age-gate {
    align-items: start;
    padding: 14px;
  }

  .wfa-age-panel {
    margin: auto 0;
  }

  .wfa-age-crest {
    padding: 18px 20px 5px;
  }

  .wfa-age-crest img {
    width: 150px;
  }

  .wfa-age-content {
    padding: 24px 23px 29px;
  }

  .wfa-age-brand {
    margin-bottom: 13px;
    font-size: 10px;
  }

  .wfa-age-content h2 {
    font-size: clamp(36px, 11.4vw, 46px);
  }

  .wfa-age-content > p:not(.wfa-age-brand) {
    margin-top: 18px;
    font-size: 14px;
  }

  .wfa-age-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .wfa-age-actions button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wfa-age-gate,
  .wfa-age-actions button {
    transition: none;
  }

  .wfa-age-actions button:hover {
    transform: none;
  }
}

.v4-shell {
  width: var(--v4-shell);
  margin-inline: auto;
}

.v4-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
}

.v4-nav {
  height: 88px;
  display: flex;
  align-items: center;
}

.v4-brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.v4-brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #9a641f;
  color: var(--v4-gold);
  font: 700 31px/1 var(--v4-serif);
}

.v4-brand-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.27;
  letter-spacing: .20em;
}

.v4-nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.v4-nav-links > a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.v4-search {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 7px;
  border: 1px solid rgba(176, 113, 38, .65);
  border-radius: 3px;
  background: rgba(8, 8, 7, .38);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.v4-search img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.v4-search span {
  color: #f5eadb;
  font-size: 12px;
  letter-spacing: .02em;
}

.v4-search:hover {
  transform: translateY(-3px);
  border-color: #d59a4a;
  background: rgba(32, 20, 11, .72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}

.v4-nav-links > .v4-nav-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 3px;
}

.v4-signin {
  min-width: 92px;
  border: 1px solid rgba(224, 208, 189, .72);
  background: rgba(0, 0, 0, .28);
}

.v4-nav-links > .v4-join {
  min-width: 104px;
  border: 1px solid #c27d29;
  background: linear-gradient(180deg, #d3913c, #9a5514);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .24);
}

.v4-menu {
  display: none;
}

.v4-brand:focus-visible,
.v4-nav-links > a:focus-visible,
.v4-search:focus-visible,
.v4-menu:focus-visible,
.v4-button:focus-visible {
  outline: 2px solid #e0ad61;
  outline-offset: 4px;
}

.v4-hero {
  height: clamp(650px, 42.5vw, 700px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 47%, rgba(90, 54, 21, .18), transparent 29%),
    #050606;
}

.v4-hero-scene {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  background: url("landing_production_v4_assets/hero_scene.png") 40% bottom / auto 91% no-repeat;
  filter: saturate(1.07) contrast(1.04);
}

.v4-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 57% 44%, rgba(177, 91, 24, .14), transparent 25%),
    linear-gradient(90deg, #040505 0%, #040505 25%, rgba(4, 5, 5, .94) 34%, rgba(4, 5, 5, .52) 47%, rgba(4, 5, 5, .08) 65%, rgba(4, 5, 5, 0) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, .25), transparent 30%, transparent 72%, rgba(0, 0, 0, .24));
}

.v4-hero-layout {
  height: 100%;
  position: relative;
  z-index: 2;
  padding-top: 154px;
}

.v4-hero-copy {
  width: 650px;
}

.v4-hero h1 {
  margin: 0;
  color: #fffaf4;
  font: 700 84px/.96 var(--v4-serif);
  letter-spacing: -.04em;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .38);
}

.v4-hero-tagline {
  margin: 5px 0 21px;
  color: var(--v4-gold);
  font: 700 43px/1.04 var(--v4-serif);
  letter-spacing: -.018em;
}

.v4-hero-description {
  width: 465px;
  margin: 0 0 28px;
  color: #f3eee8;
  font-size: 17px;
  line-height: 1.5;
}

.v4-hero-actions {
  display: flex;
  gap: 17px;
}

.v4-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.v4-nav-action,
.v4-button,
.v4-join-actions a {
  transition: transform 240ms ease, box-shadow 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .v4-nav-action:hover,
  .v4-button:hover,
  .v4-join-actions a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .28);
  }
}

.v4-button-gold {
  min-width: 182px;
  border: 1px solid #be7728;
  background: linear-gradient(180deg, #d18b38, #9d5716);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .22);
}

.v4-button-outline {
  min-width: 214px;
  border: 1px solid rgba(221, 208, 193, .78);
  background: rgba(0, 0, 0, .28);
}

.v4-spirit-count {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.v4-count-seal {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid #a76a20;
  border-radius: 50%;
  color: var(--v4-gold);
  font: 700 15px var(--v4-serif);
  box-shadow: inset 0 0 0 3px #050606, inset 0 0 0 4px rgba(167, 106, 32, .55);
}

.v4-spirit-count strong {
  display: block;
  margin-top: -1px;
  color: #fff;
  font-size: 19px;
  line-height: 1.2;
}

.v4-spirit-count small {
  display: block;
  margin-top: 5px;
  color: #f0ebe5;
  font-size: 13px;
  line-height: 1.42;
}

@media (max-width: 1120px) {
  :root {
    --v4-shell: calc(100% - 56px);
  }

  .v4-nav {
    height: 82px;
  }

  .v4-menu {
    margin-left: auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #a86a21;
    border-radius: 2px;
    color: #fff;
    background: rgba(0, 0, 0, .42);
    font-weight: 700;
  }

  .v4-nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 28px;
    right: 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(167, 106, 32, .55);
    background: rgba(4, 5, 5, .97);
  }

  .v4-nav-links.is-open {
    display: flex;
  }

  .v4-nav-links > a {
    padding: 10px;
  }

  .v4-search {
    min-height: 48px;
    display: inline-flex;
    justify-content: flex-start;
    padding: 6px 10px;
  }

  .v4-search img {
    width: 36px;
    height: 36px;
  }

  .v4-search span {
    font-size: 13px;
  }

  .v4-hero {
    height: 660px;
  }

  .v4-hero-scene {
    width: 72%;
    opacity: .80;
    background-position: 45% center;
  }

  .v4-hero-shade {
    background: linear-gradient(90deg, #050606 0%, rgba(5, 6, 6, .94) 35%, rgba(5, 6, 6, .48) 66%, rgba(5, 6, 6, .12)), linear-gradient(0deg, rgba(0, 0, 0, .48), transparent 64%);
  }

  .v4-hero-layout {
    padding-top: 132px;
  }

  .v4-hero-copy {
    width: 540px;
  }

  .v4-hero h1 {
    font-size: 72px;
  }

  .v4-hero-tagline {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  :root {
    --v4-shell: calc(100% - 30px);
  }

  .v4-brand-mark {
    width: 42px;
    height: 42px;
    font-size: 27px;
  }

  .v4-brand-name {
    font-size: 11px;
  }

  .v4-hero {
    height: 760px;
  }

  .v4-hero-scene {
    width: 100%;
    height: 58%;
    top: auto;
    bottom: 0;
    opacity: .65;
    background-position: 48% center;
  }

  .v4-hero-shade {
    background: linear-gradient(180deg, #050606 0%, #050606 54%, rgba(5, 6, 6, .72) 69%, rgba(5, 6, 6, .18) 100%);
  }

  .v4-hero-layout {
    padding-top: 118px;
  }

  .v4-hero-copy,
  .v4-hero-description {
    width: 100%;
  }

  .v4-hero h1 {
    font-size: clamp(48px, 14.5vw, 64px);
  }

  .v4-hero-tagline {
    margin-bottom: 17px;
    font-size: clamp(27px, 8.2vw, 36px);
  }

  .v4-hero-description {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .v4-hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .v4-button {
    min-height: 49px;
  }

  .v4-spirit-count {
    margin-top: 24px;
  }

  .v4-spirit-count small {
    font-size: 11.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}

/* Featured Spirits — isolated section styles. */
.v4-featured-spirits {
  position: relative;
  overflow: hidden;
  padding: 112px 0 126px;
  color: #f8f2ea;
  background:
    radial-gradient(circle at 50% -8%, rgba(170, 93, 25, .18), transparent 31%),
    radial-gradient(circle at 9% 48%, rgba(110, 61, 23, .12), transparent 24%),
    linear-gradient(180deg, #0d1110 0%, #070909 72%, #050606 100%);
}

.v4-featured-spirits::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .012) 1px, transparent 1px);
  background-size: 100% 6px;
  opacity: .28;
}

.v4-featured-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.v4-featured-kicker {
  margin: 0 0 12px;
  color: var(--v4-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.v4-featured-heading h2 {
  margin: 0;
  color: #fffaf4;
  font: 700 clamp(48px, 4.1vw, 66px)/1 var(--v4-serif);
  letter-spacing: -.035em;
}

.v4-featured-heading > p:last-child {
  max-width: 650px;
  margin: 19px auto 0;
  color: #cfc6bb;
  font-size: 17px;
  line-height: 1.55;
}

.v4-featured-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.v4-spirit-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(202, 142, 67, .25);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(27, 23, 18, .94), rgba(10, 13, 12, .97));
  box-shadow: 0 24px 54px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 236, 205, .035);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.v4-spirit-stage {
  aspect-ratio: 4 / 3.35;
  display: grid;
  place-items: center;
  padding: 30px 38px 14px;
  border-bottom: 1px solid rgba(202, 142, 67, .16);
  background:
    radial-gradient(ellipse at 50% 76%, rgba(191, 105, 29, .25), transparent 35%),
    radial-gradient(circle at 50% 45%, rgba(91, 51, 20, .33), transparent 47%),
    linear-gradient(180deg, #161310, #0a0d0c);
}

.v4-spirit-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 16px rgba(0, 0, 0, .68)) drop-shadow(0 6px 10px rgba(172, 90, 23, .13));
  transform: scale(.97);
  transition: transform .22s ease;
}

.v4-spirit-copy {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 27px 29px 30px;
}

.v4-spirit-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
  color: var(--v4-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.v4-spirit-meta span:last-child {
  color: #a89d90;
  text-align: right;
}

.v4-spirit-card h3 {
  margin: 0 0 7px;
  color: #fffaf4;
  font: 700 29px/1.06 var(--v4-serif);
  letter-spacing: -.025em;
}

.v4-spirit-distillery {
  margin: 0;
  color: #b78a51;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

.v4-spirit-note {
  margin: 19px 0 25px;
  color: #cfc8bf;
  font-size: 14px;
  line-height: 1.55;
}

.v4-membership-availability {
  margin: 0;
  margin-top: auto;
  color: #b9aa98;
  font: 500 13px/1.5 var(--v4-sans);
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

@media (max-width: 1120px) {
  .v4-featured-spirits {
    padding: 92px 0 105px;
  }

  .v4-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .v4-spirit-stage {
    aspect-ratio: 4 / 3.5;
  }
}

@media (max-width: 650px) {
  .v4-featured-spirits {
    padding: 72px 0 82px;
  }

  .v4-featured-heading {
    margin-bottom: 39px;
    text-align: left;
  }

  .v4-featured-heading h2 {
    font-size: clamp(43px, 13vw, 56px);
  }

  .v4-featured-heading > p:last-child {
    margin-top: 15px;
    font-size: 15px;
  }

  .v4-featured-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .v4-spirit-stage {
    aspect-ratio: 4 / 3.6;
    padding-inline: 30px;
  }

  .v4-spirit-copy {
    min-height: 264px;
    padding: 24px 23px 26px;
  }

  .v4-spirit-card h3 {
    font-size: 27px;
  }
}

/* Production footer — quiet closing page treatment. */
.v4-footer {
  position: relative;
  color: #a99d8c;
  background:
    radial-gradient(circle at 18% 0, rgba(105, 57, 20, .10), transparent 27%),
    #060807;
}

.v4-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 117, 40, .52), transparent);
}

.v4-footer-sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.v4-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: 50px;
  padding: 72px 0 58px;
}

.v4-footer-brand {
  max-width: 315px;
}

.v4-footer-lockup {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #f8f3e9;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .19em;
  text-decoration: none;
  text-transform: uppercase;
}

.v4-footer-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #8a632d;
  color: var(--v4-gold);
  font: 700 27px/1 var(--v4-serif);
  letter-spacing: 0;
}

.v4-footer-brand p {
  max-width: 275px;
  margin: 22px 0 0;
  color: #8f8578;
  font-size: 13px;
  line-height: 1.65;
}

.v4-footer-nav {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.v4-footer-nav h3 {
  min-height: 34px;
  margin: 0 0 14px;
  color: #eee6da;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.v4-footer-nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: #a99d8c;
  font-size: 12.5px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .18s ease;
}

.v4-footer a:hover {
  color: #e0ad61;
}

.v4-footer a:focus-visible {
  outline: 2px solid #d4943b;
  outline-offset: 3px;
  color: #f8f3e9;
}

.v4-footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(138, 99, 45, .25);
}

.v4-footer-bottom p {
  margin: 0;
  color: #8f8578;
  font-size: 10.5px;
  letter-spacing: .04em;
}

.v4-footer-bottom > div {
  display: flex;
  gap: 25px;
}

.v4-footer-bottom a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  color: #8f8578;
  font-size: 10.5px;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .v4-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 45px 58px;
    padding: 64px 0 54px;
  }

  .v4-footer-brand {
    max-width: 520px;
    grid-column: 1 / -1;
  }

  .v4-footer-brand p {
    max-width: 430px;
  }
}

@media (max-width: 650px) {
  .v4-footer-grid {
    gap: 36px 26px;
    padding: 55px 0 46px;
  }

  .v4-footer-nav h3 {
    min-height: 0;
    margin-bottom: 10px;
  }

  .v4-footer-nav a {
    width: 100%;
    min-height: 42px;
  }

  .v4-footer-bottom {
    min-height: 104px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 20px 0;
  }
}

@media (max-width: 460px) {
  .v4-footer-grid {
    grid-template-columns: 1fr;
  }

  .v4-footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v4-footer-nav a {
    transition: none;
  }
}

/* From the Journal — magazine-style editorial section. */
.v4-journal {
  position: relative;
  overflow: hidden;
  padding: 112px 0 126px;
  color: #f8f2ea;
  background:
    radial-gradient(circle at 50% -8%, rgba(173, 94, 24, .19), transparent 32%),
    radial-gradient(circle at 92% 72%, rgba(89, 48, 19, .16), transparent 25%),
    linear-gradient(180deg, #0e1110 0%, #070909 100%);
}

.v4-journal::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .012) 50%, transparent);
}

.v4-journal-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.v4-journal-kicker {
  margin: 0 0 12px;
  color: var(--v4-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.v4-journal-heading h2 {
  margin: 0;
  color: #fffaf4;
  font: 700 clamp(48px, 4vw, 64px)/1 var(--v4-serif);
  letter-spacing: -.038em;
}

.v4-journal-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  color: #c8beb2;
  font-size: 16px;
  line-height: 1.6;
}

.v4-journal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 31px;
}

.v4-journal-article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(195, 137, 65, .23);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(23, 22, 19, .95), rgba(10, 12, 11, .98));
  box-shadow: 0 23px 52px rgba(0, 0, 0, .24);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.v4-journal-image {
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  background: #17110d;
}

.v4-journal-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.03) brightness(.88);
  transform: scale(1.001);
  transition: transform .3s ease, filter .3s ease;
}

.v4-journal-article:nth-child(1) .v4-journal-image img {
  object-position: center 54%;
}

.v4-journal-article:nth-child(2) .v4-journal-image img {
  object-position: 38% center;
}

.v4-journal-article:nth-child(3) .v4-journal-image img {
  object-position: 68% center;
}

.v4-journal-copy {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 27px 29px 29px;
}

.v4-journal-category {
  margin: 0 0 12px;
  color: var(--v4-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.v4-journal-article h3 {
  margin: 0;
  color: #fffaf4;
  font: 700 31px/1.08 var(--v4-serif);
  letter-spacing: -.03em;
}

.v4-journal-description {
  margin: 18px 0 27px;
  color: #c7bfb5;
  font-size: 14px;
  line-height: 1.58;
}

.v4-journal-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(195, 137, 65, .18);
}

.v4-journal-footer > .v4-membership-availability {
  margin: 0;
  color: #b9aa98;
  font: 500 13px/1.5 var(--v4-sans);
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1120px) {
  .v4-journal {
    padding: 92px 0 104px;
  }

  .v4-journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 650px) {
  .v4-journal {
    padding: 72px 0 82px;
  }

  .v4-journal-heading {
    margin-bottom: 39px;
    text-align: left;
  }

  .v4-journal-heading h2 {
    font-size: clamp(43px, 13vw, 56px);
  }

  .v4-journal-heading > p:last-child {
    margin-top: 16px;
    font-size: 15px;
  }

  .v4-journal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .v4-journal-copy {
    min-height: 270px;
    padding: 25px 23px 26px;
  }

  .v4-journal-article h3 {
    font-size: 28px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .v4-journal-article,
  .v4-journal-image img {
    transition: none;
  }
}

/* Join the Atlas — final primary invitation before the future footer. */
.v4-join {
  position: relative;
  padding: 104px 0 116px;
  color: #f8f2ea;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .78), transparent 40%),
    linear-gradient(180deg, #f7f1e7, #eee3d4);
}

.v4-join-panel {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  border: 1px solid rgba(138, 99, 45, .52);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 16%, rgba(142, 73, 20, .18), transparent 29%),
    linear-gradient(135deg, #17120f 0%, #0a0d0c 74%);
  box-shadow: 0 28px 65px rgba(62, 37, 17, .21), inset 0 1px 0 rgba(255, 241, 219, .04);
}

.v4-join-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 68px 70px 62px;
}

.v4-join-heading {
  max-width: 650px;
}

.v4-join-kicker {
  margin: 0 0 13px;
  color: var(--v4-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.v4-join-heading h2 {
  margin: 0;
  color: #fffaf4;
  font: 700 clamp(54px, 4.3vw, 70px)/.98 var(--v4-serif);
  letter-spacing: -.04em;
}

.v4-join-heading > p:last-child {
  max-width: 610px;
  margin: 22px 0 0;
  color: #cec4b8;
  font-size: 16px;
  line-height: 1.62;
}

.v4-join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.v4-join-actions a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 25px;
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.v4-join-primary {
  min-width: 236px;
  border: 1px solid #bf7728;
  background: linear-gradient(180deg, #d28c38, #965012);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .26);
}

.v4-join-secondary {
  min-width: 184px;
  border: 1px solid rgba(213, 184, 147, .64);
  background: rgba(0, 0, 0, .18);
}

.v4-join-actions a:focus-visible {
  outline: 2px solid #e0ad61;
  outline-offset: 4px;
}

.v4-join-benefits {
  margin-top: auto;
  padding-top: 38px;
}

.v4-join-benefits article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid rgba(209, 157, 84, .17);
}

.v4-join-benefits article > div {
  grid-column: 2;
}

.v4-join-benefits h3 {
  margin: 0 0 4px;
  color: #f8f2ea;
  font: 700 20px/1.1 var(--v4-serif);
}

.v4-join-benefits p {
  margin: 0;
  color: #aaa095;
  font-size: 12.5px;
  line-height: 1.45;
}

.v4-join-image {
  min-width: 0;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #1b100a;
}

.v4-join-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #0a0d0c 0%, rgba(10, 13, 12, .54) 10%, transparent 35%),
    linear-gradient(0deg, rgba(0, 0, 0, .25), transparent 45%);
}

.v4-join-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 69% center;
  filter: saturate(.91) contrast(1.05) brightness(.80);
}

@media (max-width: 1120px) {
  .v4-join {
    padding: 88px 0 98px;
  }

  .v4-join-panel {
    grid-template-columns: 1.12fr .88fr;
  }

  .v4-join-content {
    padding: 56px 46px 51px;
  }
}

@media (max-width: 900px) {
  .v4-join-panel {
    grid-template-columns: 1fr;
  }

  .v4-join-image {
    min-height: 410px;
    order: -1;
  }

  .v4-join-image::before {
    background: linear-gradient(0deg, #0a0d0c 0%, rgba(10, 13, 12, .12) 36%, transparent 64%);
  }

  .v4-join-content {
    min-height: 610px;
  }
}

@media (max-width: 650px) {
  .v4-join {
    padding: 66px 0 76px;
  }

  .v4-join-image {
    min-height: 290px;
  }

  .v4-join-content {
    min-height: 0;
    padding: 40px 23px 35px;
  }

  .v4-join-heading h2 {
    font-size: clamp(46px, 14vw, 60px);
  }

  .v4-join-heading > p:last-child {
    margin-top: 17px;
    font-size: 15px;
  }

  .v4-join-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 25px;
  }

  .v4-join-actions a {
    width: 100%;
    min-width: 0;
    min-height: 51px;
  }

  .v4-join-benefits {
    margin-top: 33px;
    padding-top: 0;
  }

  .v4-join-benefits article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 16px 0;
  }
}

/* Why Whiskey Flavor Atlas — editorial trust section. */
.v4-why {
  position: relative;
  padding: 110px 0 122px;
  color: #171512;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .78), transparent 38%),
    linear-gradient(180deg, #faf6ef 0%, #f4eee4 100%);
}

.v4-why::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 117, 40, .58), transparent);
}

.v4-why-heading {
  max-width: 850px;
  margin: 0 auto 64px;
  text-align: center;
}

.v4-why-kicker {
  margin: 0 0 13px;
  color: #9a5d1e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.v4-why-heading h2 {
  margin: 0;
  color: #171512;
  font: 700 clamp(48px, 4vw, 64px)/1 var(--v4-serif);
  letter-spacing: -.038em;
}

.v4-why-heading > p:last-child {
  max-width: 780px;
  margin: 21px auto 0;
  color: #62594f;
  font-size: 16px;
  line-height: 1.65;
}

.v4-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(138, 99, 45, .28);
  border-bottom: 1px solid rgba(138, 99, 45, .28);
}

.v4-why-block {
  min-width: 0;
  min-height: 230px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 31px;
  align-items: center;
  padding: 5px 38px;
  transition: background-color .2s ease;
}

.v4-why-block:nth-child(odd) {
  border-right: 1px solid rgba(138, 99, 45, .25);
}

.v4-why-block:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(138, 99, 45, .25);
}

.v4-why-icon {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  transition: filter .2s ease;
}

.v4-why-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.v4-why-block h3 {
  margin: 3px 0 12px;
  color: #211c17;
  font: 700 29px/1.08 var(--v4-serif);
  letter-spacing: -.025em;
}

.v4-why-block p {
  max-width: 500px;
  margin: 0;
  color: #645b51;
  font-size: 14px;
  line-height: 1.62;
}

@media (max-width: 1120px) {
  .v4-why {
    padding: 90px 0 102px;
  }

  .v4-why-heading {
    margin-bottom: 50px;
  }

  .v4-why-block {
    min-height: 250px;
    grid-template-columns: 174px minmax(0, 1fr);
    gap: 25px;
    padding: 27px 30px;
  }

  .v4-why-icon {
    width: 174px;
    height: 174px;
  }

  .v4-why-block h3 {
    font-size: 26px;
  }
}

@media (max-width: 900px) {
  .v4-why-grid {
    grid-template-columns: 1fr;
  }

  .v4-why-block {
    min-height: 230px;
    grid-template-columns: 190px minmax(0, 1fr);
    padding: 20px 42px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(138, 99, 45, .25);
  }

  .v4-why-block:last-child {
    border-bottom: 0;
  }

  .v4-why-icon {
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 650px) {
  .v4-why {
    padding: 72px 0 78px;
  }

  .v4-why-heading {
    margin-bottom: 39px;
    text-align: left;
  }

  .v4-why-heading h2 {
    font-size: clamp(42px, 12.5vw, 54px);
  }

  .v4-why-heading > p:last-child {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.58;
  }

  .v4-why-grid {
    grid-template-columns: 1fr;
  }

  .v4-why-block {
    min-height: 0;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    padding: 25px 4px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(138, 99, 45, .25);
  }

  .v4-why-icon {
    width: 132px;
    height: 132px;
  }

  .v4-why-block:last-child {
    border-bottom: 0;
  }

  .v4-why-block h3 {
    margin-top: 1px;
    font-size: 25px;
  }

  .v4-why-block p {
    font-size: 13.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v4-nav-action,
  .v4-button,
  .v4-join-actions a,
  .v4-why-block,
  .v4-why-icon {
    transition: none;
  }

  .v4-nav-action:hover,
  .v4-button:hover,
  .v4-join-actions a:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v4-spirit-card,
  .v4-spirit-stage img {
    transition: none;
  }
}

/* Start Your Journey — inserted between the frozen hero and Featured Spirits. */
.v4-journey {
  position: relative;
  padding: 72px 0 82px;
  color: #171512;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, .78), transparent 40%),
    linear-gradient(180deg, #faf6ef, #f4eee4);
}

.v4-journey::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 99, 45, .42), transparent);
}

.v4-journey-heading {
  margin-bottom: 36px;
  text-align: center;
}

.v4-journey-heading h2 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #171512;
  font: 700 clamp(42px, 3.45vw, 55px)/1 var(--v4-serif);
  letter-spacing: -.035em;
}

.v4-journey-heading h2::before,
.v4-journey-heading h2::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(184, 117, 40, .64));
}

.v4-journey-heading h2::after {
  transform: scaleX(-1);
}

.v4-journey-heading > p {
  margin: 14px 0 0;
  color: #756a5d;
  font-size: 15px;
  line-height: 1.5;
}

.v4-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.v4-journey-card {
  min-width: 0;
  min-height: 216px;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(138, 99, 45, .24);
  border-radius: 7px;
  background: rgba(255, 252, 247, .54);
  box-shadow: 0 15px 35px rgba(73, 43, 18, .055), inset 0 1px 0 rgba(255, 255, 255, .72);
}

.v4-journey-icon {
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
}

.v4-journey-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.v4-journey-copy {
  min-width: 0;
  padding-top: 0;
}

.v4-journey-card h3 {
  margin: 0;
  color: #171512;
  font: 700 27px/1.05 var(--v4-serif);
  letter-spacing: -.025em;
}

.v4-journey-copy > p {
  margin: 10px 0 17px;
  color: #554d44;
  font-size: 13px;
  line-height: 1.48;
}

@media (max-width: 1120px) {
  .v4-journey {
    padding: 64px 0 72px;
  }

  .v4-journey-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .v4-journey-card {
    min-height: 188px;
    grid-template-columns: 154px minmax(0, 1fr);
    gap: 28px;
    padding: 20px 32px;
  }

  .v4-journey-icon {
    width: 154px;
    height: 154px;
  }
}

@media (max-width: 650px) {
  .v4-journey {
    padding: 54px 0 62px;
  }

  .v4-journey-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .v4-journey-heading h2 {
    display: block;
    font-size: clamp(40px, 12vw, 52px);
  }

  .v4-journey-heading h2::before,
  .v4-journey-heading h2::after {
    display: none;
  }

  .v4-journey-heading > p {
    margin-top: 11px;
    font-size: 14px;
  }

  .v4-journey-grid {
    gap: 16px;
  }

  .v4-journey-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 26px 23px 24px;
  }

  .v4-journey-icon {
    width: 132px;
    height: 132px;
    margin-inline: auto;
  }

  .v4-journey-card h3 {
    font-size: 26px;
  }

}
