:root {
  --black: #07080a;
  --ink: #111216;
  --charcoal: #191a1f;
  --cream: #f4efe7;
  --white: #fff;
  --muted: #b9b9bd;
  --red: #c4141a;
  --deep-red: #c4141a;
  --red-light: #c4141a;
  --gold: #cbd1d8;
  --line: rgba(255, 255, 255, 0.15);
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.2rem, 3vw, 3.5rem);
  align-items: center;
  min-height: 98px;
  padding: 0 6vw;
  background: rgba(10, 10, 12, 0.96);
  border-bottom: 1px solid #232429;
  backdrop-filter: blur(18px);
}

.wordmark {
  justify-self: start;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.wordmark span {
  color: var(--red);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 0.75rem 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
}

.button-primary {
  background: var(--red);
  transition: background 160ms ease, transform 160ms ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #c4141a;
  transform: translateY(-2px);
}

.header-cta {
  justify-self: end;
}

.header-buy-widget {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 112px;
  min-height: 50px;
}

.header-buy-widget button,
.header-buy-widget a {
  min-height: 50px !important;
  padding: 0.8rem 1.5rem !important;
  color: var(--white) !important;
  background: var(--red) !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-family: var(--display) !important;
  font-size: 0.88rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 160ms ease, transform 160ms ease !important;
}

.header-buy-widget button:hover,
.header-buy-widget button:focus-visible,
.header-buy-widget a:hover,
.header-buy-widget a:focus-visible {
  background: #c4141a !important;
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

.hero {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero img {
  width: 100%;
  height: auto;
}

.section {
  padding: clamp(5rem, 9vw, 9rem) 7vw;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  background:
    radial-gradient(circle at 82% 20%, rgba(196, 20, 26, 0.17), transparent 30%),
    var(--black);
}

.product-image {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 2.2rem 2.2rem;
}

.product-image::before {
  position: absolute;
  z-index: 0;
  right: 2.2rem;
  bottom: 0;
  left: 0;
  height: 78%;
  content: "";
  border: 1px solid rgba(201, 166, 84, 0.6);
}

.product-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.03);
}

.vertical-note {
  position: absolute;
  z-index: 2;
  right: -2.6rem;
  bottom: 5.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  transform: rotate(-90deg);
  transform-origin: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.25rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pulse {
  display: inline-block;
  width: 40px;
  height: 12px;
  background: linear-gradient(90deg, transparent 0 9%, currentColor 9% 13%, transparent 13% 23%, currentColor 23% 31%, transparent 31% 42%, currentColor 42% 48%, transparent 48% 58%, currentColor 58% 74%, transparent 74% 84%, currentColor 84% 89%, transparent 89%);
  clip-path: polygon(0 45%, 10% 45%, 14% 10%, 19% 88%, 25% 45%, 38% 45%, 43% 22%, 48% 70%, 54% 45%, 65% 45%, 70% 5%, 76% 92%, 83% 45%, 100% 45%, 100% 58%, 84% 58%, 76% 100%, 69% 25%, 65% 58%, 53% 58%, 47% 84%, 41% 34%, 38% 58%, 24% 58%, 18% 100%, 13% 26%, 11% 58%, 0 58%);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 6.6vw, 7.5rem);
}

h1 em {
  color: var(--red);
  font-style: normal;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 6.8rem);
}

.lead {
  max-width: 720px;
  margin-bottom: 2rem;
  color: #d3d3d5;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.75;
}

.claim-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}

.claim-list span {
  padding: 0.65rem 0.9rem;
  color: #f2f2f3;
  border: 1px solid #3a3b41;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tasting-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 1.4rem;
  max-width: 700px;
  padding: 1.6rem;
  background: #111216;
  border-left: 3px solid var(--gold);
}

.tasting-note p {
  margin: 0;
  color: #c7c7ca;
}

.tasting-note strong {
  display: inline-block;
  min-width: 4.2rem;
  color: var(--white);
}

.tasting-note .tasting-label {
  grid-row: 1 / 4;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.profile-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: end;
  padding: clamp(3.2rem, 5vw, 5.5rem) 7vw;
  color: var(--ink);
  background: var(--cream);
  border-top: 1px solid #d8d1c7;
  border-bottom: 1px solid #d8d1c7;
}

.profile-intro .eyebrow {
  margin-bottom: 0.8rem;
}

.profile-intro > p:last-child {
  max-width: 620px;
  margin: 0;
  color: #55565b;
  font-size: 1.05rem;
  line-height: 1.7;
}

.profile-strip ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(80px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #b8b1a7;
}

.profile-strip li {
  display: grid;
  gap: 1.8rem;
  min-height: 130px;
  padding: 1.1rem 0.7rem 0;
  border-right: 1px solid #b8b1a7;
  font-family: var(--display);
  font-size: clamp(0.8rem, 1.1vw, 1rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.profile-strip li:first-child {
  border-left: 1px solid #b8b1a7;
}

.profile-strip li span {
  color: var(--red);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 900;
}

.story-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--red);
}

.light-eyebrow {
  color: var(--white);
}

.light-pulse {
  color: var(--white);
}

.compact-heading h2 {
  max-width: 680px;
  margin: 0;
}

.story-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.65;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.process-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.2rem;
  padding: 1.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.step-number {
  padding-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-list h3 {
  margin-bottom: 0.35rem;
  font-family: var(--display);
  font-size: 1.3rem;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  color: #fff2f2;
}

.cocktail-section {
  color: var(--ink);
  background: var(--cream);
}

.cocktail-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.cocktail-heading h2 {
  margin: 0;
}

.cocktail-heading > p {
  max-width: 540px;
  margin-bottom: 0.6rem;
  color: #53545a;
  font-size: 1.1rem;
  line-height: 1.7;
}

.cocktail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.25rem;
}

.cocktail-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #131419;
}

.cocktail-card-tall {
  min-height: 680px;
}

.cocktail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.cocktail-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 7, 0.94));
}

.cocktail-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.card-caption {
  position: absolute;
  z-index: 2;
  right: 1.7rem;
  bottom: 1.7rem;
  left: 1.7rem;
  color: var(--white);
}

.card-caption span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.card-caption h3 {
  margin: 0.35rem 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.card-caption p {
  margin: 0;
  color: #dedee0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.life-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(420px, 1.38fr) minmax(230px, 0.7fr);
  grid-template-rows: auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
  background:
    radial-gradient(circle at 15% 10%, rgba(196, 20, 26, 0.24), transparent 28%),
    var(--black);
}

.life-copy {
  grid-row: 1 / 3;
  align-self: center;
  padding-right: clamp(1rem, 3vw, 4rem);
}

.life-copy h2 {
  margin-bottom: 1.8rem;
  font-size: clamp(3rem, 5.5vw, 6.4rem);
}

.life-copy h2 em {
  color: var(--red);
  font-style: normal;
}

.life-copy > p:last-child {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.life-photo {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.life-photo-wide {
  grid-row: 1 / 3;
}

.life-photo-portrait {
  grid-row: 1 / 3;
  margin-top: 5.5rem;
  margin-bottom: 5.5rem;
}

.life-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.life-photo-wide img {
  object-position: center;
}

.life-photo-portrait img {
  object-position: 48% center;
}

.life-photo::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(4, 4, 6, 0.9));
}

.life-photo:hover img {
  filter: saturate(1.08);
  transform: scale(1.02);
}

.life-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  text-transform: uppercase;
}

.life-photo figcaption span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold);
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.markets-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
  background:
    linear-gradient(120deg, rgba(196, 20, 26, 0.14), transparent 45%),
    var(--black);
}

.markets-intro > p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.market-list {
  border-top: 1px solid var(--line);
}

.market-list > div {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.market-list span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.market-list strong {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.market-list small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.buy-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 620px;
  padding: clamp(6rem, 11vw, 11rem) 7vw;
  overflow: hidden;
  color: var(--ink);
  text-align: center;
  background: var(--gold);
}

.buy-section::before,
.buy-section::after {
  position: absolute;
  width: 34vw;
  height: 34vw;
  content: "";
  border: 1px solid rgba(17, 18, 22, 0.24);
  border-radius: 50%;
}

.buy-section::before {
  top: -23vw;
  left: -10vw;
}

.buy-section::after {
  right: -13vw;
  bottom: -25vw;
}

.buy-section > * {
  position: relative;
  z-index: 1;
}

.buy-section h2 {
  max-width: 1040px;
  margin-bottom: 1.6rem;
}

.buy-section > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.bottle-nexus-widget {
  min-width: 220px;
  min-height: 54px;
}

.bottle-nexus-widget button,
.bottle-nexus-widget a {
  min-height: 50px !important;
  padding: 0.8rem 1.5rem !important;
  color: var(--white) !important;
  background: var(--black) !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-family: var(--display) !important;
  font-size: 0.88rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.035em !important;
  text-transform: uppercase !important;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 6vw;
  color: #a9a9ad;
  background: #050506;
  border-top: 1px solid #222328;
  font-size: 0.83rem;
}

.footer-mark {
  color: var(--white);
  font-size: 1rem;
  grid-area: auto;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 1.25rem;
    padding-right: 3vw;
    padding-left: 3vw;
  }

  .wordmark {
    font-size: 1.05rem;
  }

  .desktop-nav {
    gap: 1rem;
    font-size: 0.78rem;
  }

  .header-buy-widget {
    min-height: 44px;
  }

  .header-buy-widget button,
  .header-buy-widget a {
    min-height: 44px !important;
    padding: 0.7rem 1.15rem !important;
    font-size: 0.78rem !important;
  }

  .product-section,
  .story-section,
  .profile-strip,
  .life-section,
  .markets-section {
    grid-template-columns: 1fr;
  }

  .profile-strip ul {
    grid-template-columns: repeat(5, 1fr);
  }

  .product-image {
    max-width: 690px;
  }

  .cocktail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cocktail-card-tall {
    grid-row: span 2;
  }

  .life-copy,
  .life-photo-wide,
  .life-photo-portrait {
    grid-row: auto;
  }

  .life-copy {
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .life-photo-wide {
    min-height: 560px;
  }

  .life-photo-portrait {
    max-height: 700px;
    margin: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-mark {
    justify-self: center;
  }

  .site-footer p:last-child {
    text-align: center;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.65rem;
    min-height: 82px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    padding: 0.65rem 1rem;
    border: 1px solid #45464b;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    display: grid;
    min-width: 220px;
    padding: 0.8rem;
    background: #111216;
    border: 1px solid #303138;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  }

  .mobile-menu nav a {
    padding: 0.8rem 0.9rem;
    font-weight: 800;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 0 1.25rem;
  }

  .wordmark {
    overflow: hidden;
    font-size: 0.88rem;
    letter-spacing: 0.065em;
    text-overflow: ellipsis;
  }

  .header-buy-widget {
    min-width: 88px;
    min-height: 40px;
  }

  .header-buy-widget button,
  .header-buy-widget a {
    min-height: 40px !important;
    padding: 0.6rem 0.9rem !important;
    font-size: 0.7rem !important;
  }

  .mobile-menu summary {
    padding: 0.58rem 0.75rem;
    font-size: 0.7rem;
  }

  .section {
    padding: 5rem 1.25rem;
  }

  .hero {
    overflow-x: auto;
  }

  .hero img {
    width: auto;
    min-width: 860px;
    max-width: none;
    height: 300px;
    object-fit: cover;
    object-position: left center;
  }

  .product-image {
    padding: 0 0 1rem 1rem;
  }

  .vertical-note {
    display: none;
  }

  .tasting-note {
    grid-template-columns: 1fr;
  }

  .tasting-note .tasting-label {
    grid-row: auto;
    writing-mode: initial;
    transform: none;
  }

  .profile-strip {
    gap: 2.3rem;
    padding: 4rem 1.25rem;
  }

  .profile-strip ul {
    grid-template-columns: 1fr;
    border-top: 1px solid #b8b1a7;
  }

  .profile-strip li,
  .profile-strip li:first-child {
    grid-template-columns: 2.4rem 1fr;
    gap: 0.8rem;
    min-height: auto;
    padding: 0.9rem 0;
    border-right: 0;
    border-bottom: 1px solid #b8b1a7;
    border-left: 0;
  }

  .cocktail-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .cocktail-grid {
    grid-template-columns: 1fr;
  }

  .cocktail-card,
  .cocktail-card-tall {
    min-height: 520px;
  }

  .life-photo-wide,
  .life-photo-portrait {
    min-height: 470px;
  }

  .market-list > div {
    grid-template-columns: 2.4rem 1fr;
  }

  .market-list small {
    grid-column: 2;
    text-align: left;
  }

  .buy-section {
    min-height: 560px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* V7: responsive hero, prominent embedded purchase CTA, age gate and QA refinements. */
[hidden] {
  display: none !important;
}

body.age-gate-open {
  overflow: hidden;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  color: var(--black);
  background: var(--white);
  border-radius: 0.35rem;
  font-weight: 900;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.age-gate {
  position: fixed;
  z-index: 250;
  inset: 0;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 1.25rem;
  overflow-y: auto;
  background:
    linear-gradient(115deg, rgba(8, 9, 11, 0.74), rgba(8, 9, 11, 0.98)),
    url("assets/bottles-on-bar.jpg") center 46% / cover no-repeat;
}

.age-gate-card {
  width: min(680px, 100%);
  padding: clamp(2rem, 6vw, 4rem);
  background: rgba(10, 11, 14, 0.96);
  border: 1px solid rgba(203, 209, 216, 0.42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.age-wordmark {
  margin: 0 0 clamp(2.5rem, 6vw, 4.5rem);
  font-family: var(--display);
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.age-wordmark span,
.wordmark span {
  color: var(--red-light);
}

.age-gate h1 {
  max-width: 600px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.age-gate-card > div > p:not(.eyebrow),
.age-gate #age-question > p:not(.eyebrow) {
  max-width: 540px;
  color: #d9dadd;
  font-size: 1.05rem;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 1.5rem;
}

.age-button {
  min-height: 50px;
  padding: 0.85rem 1.25rem;
  color: var(--white);
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 0;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.age-button-primary {
  background: var(--red);
  border-color: var(--red);
}

.age-button-primary:hover,
.age-button-primary:focus-visible {
  background: var(--deep-red);
}

.age-button-secondary:hover,
.age-button-secondary:focus-visible {
  color: var(--black);
  background: var(--gold);
}

.age-privacy {
  font-size: 0.8rem !important;
}

.age-privacy a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.site-header {
  z-index: 50;
  grid-template-areas: "mark nav buy";
  min-height: 92px;
  padding-right: 5vw;
  padding-left: 5vw;
}

.wordmark {
  grid-area: mark;
}

.desktop-nav {
  grid-area: nav;
}

.header-cta {
  grid-area: buy;
}

.header-buy-widget {
  min-width: 142px;
  min-height: 54px;
}

.header-buy-widget iframe {
  min-width: 142px !important;
  min-height: 48px !important;
}

.widget-status {
  display: block;
  max-width: 230px;
  color: var(--gold);
  font-size: 0.75rem;
  line-height: 1.3;
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(500px, 1.05fr);
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 34% 50%, rgba(196, 20, 26, 0.24), transparent 32%),
    var(--black);
}

.hero-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 7.5rem) clamp(2.5rem, 5.5vw, 7rem);
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(4rem, 7.5vw, 8.3rem);
}

.hero h1 em,
.product-copy h2 em,
.life-copy h2 em {
  color: var(--red-light);
  font-style: normal;
}

.hero-script {
  margin-bottom: 1.4rem;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  font-style: italic;
  letter-spacing: 0.01em;
}

.hero-script sup {
  font-family: var(--body);
  font-size: 0.45em;
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 1.6rem;
  color: #d8d9dc;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.hero-claims {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin: 0 0 1.25rem;
  padding: 1rem 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-claims li {
  position: relative;
  padding-left: 0.85rem;
  color: #f0f1f2;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-claims li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--red-light);
  border-radius: 50%;
}

.hero-proof {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  min-height: 680px;
  background-image:
    linear-gradient(90deg, var(--black), transparent 22%),
    url("assets/homepage-hero-clean.jpg");
  background-repeat: no-repeat;
  background-position: center, 85% 20%;
  background-size: 100% 100%, 235% auto;
}

#vodka,
#story,
#cocktails,
#markets,
#buy {
  scroll-margin-top: 108px;
}

.eyebrow {
  color: var(--red-light);
}

.profile-strip .eyebrow,
.cocktail-section .eyebrow,
.buy-section .eyebrow,
.privacy-content .eyebrow {
  color: var(--deep-red);
}

.product-image::before {
  border-color: rgba(203, 209, 216, 0.62);
}

.story-section {
  background: var(--deep-red);
}

.process-list p {
  color: #fff;
}

.profile-intro > p:last-child,
.cocktail-heading > p {
  color: #44454a;
}

.profile-strip li span {
  color: var(--deep-red);
}

.buy-section {
  background: var(--gold);
}

.bottle-nexus-widget {
  min-height: 56px;
}

.bottle-nexus-widget iframe {
  min-width: 220px !important;
  min-height: 54px !important;
}

.buy-disclosure {
  margin: 1.5rem 0 0;
  color: #33363a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  grid-template-columns: 1fr 1fr 1.4fr;
  color: #b6b7bb;
}

.site-footer .footer-mark {
  grid-area: auto;
}

.site-footer a:not(.wordmark) {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.privacy-main {
  min-height: calc(100vh - 190px);
  color: var(--ink);
  background: var(--cream);
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
}

.privacy-content h1 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.privacy-content h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.privacy-content p,
.privacy-content li {
  color: #3e4045;
  font-size: 1.05rem;
  line-height: 1.75;
}

.privacy-content a {
  color: var(--deep-red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.privacy-header {
  grid-template-columns: 1fr auto;
  grid-template-areas: "mark buy";
}

.privacy-home {
  grid-area: buy;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.65rem 1rem;
  border: 1px solid #5b5d64;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

:focus-visible {
  outline-color: #8bd9ff;
}

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

@media (max-width: 1024px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "mark menu"
      "buy buy";
    gap: 0.45rem 1rem;
    min-height: 132px;
    padding: 0.7rem 1.25rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    grid-area: menu;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0.65rem 1rem;
    border: 1px solid #5b5d64;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    top: calc(100% + 0.7rem);
    min-width: 230px;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
  }

  .header-buy-widget {
    justify-self: stretch;
    justify-content: center;
    width: 100%;
    min-height: 52px;
  }

  #vodka,
  #story,
  #cocktails,
  #markets,
  #buy {
    scroll-margin-top: 148px;
  }

  .hero {
    grid-template-columns: minmax(360px, 0.95fr) minmax(400px, 1.05fr);
    min-height: 620px;
  }

  .hero-copy {
    padding: 4.5rem 4vw;
  }

  .hero h1 {
    font-size: clamp(4rem, 8.5vw, 6.5rem);
  }

  .hero-visual {
    min-height: 620px;
    background-position: center, 86% 19%;
    background-size: 100% 100%, 245% auto;
  }

  .privacy-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "mark buy";
    min-height: 92px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-visual {
    order: -1;
    min-height: 580px;
    background-image:
      linear-gradient(180deg, rgba(8, 9, 11, 0.03), var(--black) 100%),
      url("assets/homepage-hero-clean.jpg");
    background-position: center, 86% 12%;
    background-size: 100% 100%, 185% auto;
  }

  .hero-copy {
    padding: 4.5rem 6vw;
  }
}

@media (max-width: 760px) {
  .wordmark {
    overflow: hidden;
    font-size: 0.9rem;
    letter-spacing: 0.065em;
    text-overflow: ellipsis;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
  }

  .hero-copy {
    padding: 4.2rem 1.25rem 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .hero-visual {
    order: -1;
    min-height: 390px;
    background-image:
      linear-gradient(180deg, rgba(8, 9, 11, 0.06), var(--black) 100%),
      url("assets/homepage-hero-clean.jpg");
    background-position: center, 86% 17%;
    background-size: 100% 100%, 245% auto;
  }

  .buy-section > p:not(.eyebrow, .buy-disclosure) {
    max-width: 720px;
  }
}

@media (max-width: 430px) {
  .age-actions {
    display: grid;
  }

  .age-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 350px;
    background-position: center, 86% 16%;
    background-size: 100% 100%, 250% auto;
  }

  .hero-claims {
    gap: 0.65rem 0.85rem;
  }

  .hero-claims li {
    font-size: 0.65rem;
  }

  h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }
}

/* V8 — flyer-led editorial story below the unchanged homepage hero */
.beet-story {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 18%, rgba(196, 20, 26, 0.13), transparent 23%),
    radial-gradient(circle at 11% 82%, rgba(196, 20, 26, 0.07), transparent 20%),
    #f4f1ec;
}

.beet-story::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: clamp(1.5rem, 4vw, 5rem);
  width: clamp(7rem, 14vw, 14rem);
  height: 9px;
  content: "";
  background: var(--red);
}

.beet-copy {
  max-width: 900px;
}

.beet-story .eyebrow {
  color: var(--deep-red);
}

.beet-copy h2 {
  max-width: 880px;
  margin-bottom: 1.1rem;
  color: #121216;
  font-size: clamp(3.2rem, 6.6vw, 7.4rem);
}

.beet-copy h2 span {
  display: block;
  color: var(--red);
}

.beet-script {
  margin: 0 0 1.35rem;
  color: var(--red);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  line-height: 1.05;
}

.beet-lead {
  max-width: 780px;
  margin-bottom: 2rem;
  color: #34343a;
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  line-height: 1.75;
}

.origin-note {
  display: grid;
  gap: 0.35rem;
  max-width: 760px;
  padding: 1.5rem 1.7rem;
  background: rgba(255, 255, 255, 0.6);
  border-left: 5px solid var(--red);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 22, 0.09);
}

.origin-note strong {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  text-transform: uppercase;
}

.origin-note span {
  color: #4d4d53;
}

.origin-note em {
  margin-top: 0.35rem;
  color: var(--red);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.5rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.8rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  color: #25252a;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-meta li:not(:last-child)::after {
  margin-left: 1.8rem;
  color: var(--red);
  content: "•";
}

.beet-product-photo {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 28px 70px rgba(30, 21, 22, 0.18);
}

.beet-product-photo::after {
  position: absolute;
  inset: 2rem -1rem -1rem 2rem;
  z-index: -1;
  content: "";
  border: 2px solid rgba(196, 20, 26, 0.34);
}

.beet-product-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.beet-product-photo figcaption {
  padding: 1rem 0.25rem 0.15rem;
  color: #27272c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.beet-product-photo figcaption span {
  margin: 0 0.5rem;
  color: var(--red);
}

.proof-strip {
  padding: clamp(4rem, 7vw, 7rem) 7vw;
  background:
    linear-gradient(125deg, rgba(196, 20, 26, 0.42), transparent 42%),
    #0c0c0f;
  border-top: 1px solid #2b2c31;
  border-bottom: 1px solid #2b2c31;
}

.proof-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.proof-heading .eyebrow {
  margin: 0;
  color: #dce0e5;
}

.proof-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 5.4vw, 6.1rem);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.proof-grid article {
  min-height: 230px;
  padding: 1.4rem 1.2rem 1.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-grid article > span {
  color: #cbd1d8;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.proof-grid h3 {
  margin: 2.2rem 0 0.7rem;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  text-transform: uppercase;
}

.proof-grid p {
  margin: 0;
  color: #c7c8cd;
  font-size: 0.92rem;
  line-height: 1.65;
}

.profile-strip {
  background: #e7e3dc;
}

.story-section {
  align-items: start;
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 20, 26, 0.46), transparent 30%),
    #130b0e;
}

.story-bottle {
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.story-bottle img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 450ms ease;
}

.story-bottle:hover img {
  transform: scale(1.025);
}

.tasting-note-dark {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.07);
  border-left-color: #cbd1d8;
}

.tasting-note-dark .tasting-label {
  color: #cbd1d8;
}

.cocktail-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 20, 26, 0.1), transparent 24%),
    #eeebe5;
}

.cocktail-grid-five {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(345px, 1fr);
  gap: 1rem;
}

.cocktail-grid-five .cocktail-card {
  grid-column: span 3;
  min-height: 0;
}

.cocktail-grid-five .cocktail-card-featured {
  grid-column: span 6;
  grid-row: span 2;
}

.cocktail-grid-five .cocktail-card-wide {
  grid-column: span 3;
}

.cocktail-grid-five .cocktail-card img {
  object-position: center;
}

.cocktail-grid-five .card-caption span,
.life-gallery figcaption span {
  color: #e2e6eb;
}

.life-section {
  display: block;
  background:
    radial-gradient(circle at 7% 10%, rgba(196, 20, 26, 0.34), transparent 28%),
    #08090b;
}

.life-copy {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.62fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding: 0;
}

.life-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.3rem;
}

.life-copy h2 {
  margin: 0;
}

.life-copy > p:last-child {
  padding-bottom: 0.6rem;
}

.life-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 330px;
  gap: 1rem;
}

.life-gallery .life-photo {
  grid-column: span 7;
  min-height: 0;
  margin: 0;
}

.life-gallery .life-feature {
  grid-column: span 5;
  grid-row: span 2;
}

.life-gallery .life-photo:nth-child(3) {
  grid-column: span 4;
}

.life-gallery .life-photo:nth-child(4) {
  grid-column: span 3;
}

.life-gallery .bottle-life-photo {
  grid-column: 1 / -1;
  min-height: 430px;
}

.life-gallery .life-photo img {
  object-position: center 38%;
}

.life-gallery .life-feature img {
  object-position: center;
}

.life-gallery .bottle-life-photo img {
  object-position: center 52%;
}

.site-address {
  display: inline-block;
  margin-top: 1.4rem;
  color: #222329;
  font-family: var(--display);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-address:hover,
.site-address:focus-visible {
  color: var(--red);
}

.buy-section .widget-status {
  color: #222329;
}

@media (max-width: 1100px) {
  .beet-story {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 3rem;
  }

  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-grid article:nth-child(4),
  .proof-grid article:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .cocktail-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .cocktail-grid-five .cocktail-card,
  .cocktail-grid-five .cocktail-card-wide {
    grid-column: span 1;
    min-height: 520px;
  }

  .cocktail-grid-five .cocktail-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 680px;
  }
}

@media (max-width: 820px) {
  .beet-story {
    grid-template-columns: 1fr;
  }

  .beet-product-photo {
    width: min(100%, 520px);
  }

  .proof-heading,
  .life-copy {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .life-copy .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-strip {
    grid-template-columns: 1fr;
  }

  .life-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .life-gallery .life-photo,
  .life-gallery .life-photo:nth-child(3),
  .life-gallery .life-photo:nth-child(4) {
    grid-column: span 1;
    min-height: 360px;
  }

  .life-gallery .life-feature,
  .life-gallery .bottle-life-photo {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 560px;
  }
}

@media (max-width: 620px) {
  .beet-story,
  .proof-strip {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .beet-copy h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .beet-script {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .product-meta {
    display: grid;
    gap: 0.7rem;
  }

  .product-meta li:not(:last-child)::after {
    content: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof-grid h3 {
    margin-top: 1.2rem;
  }

  .cocktail-grid-five {
    grid-template-columns: 1fr;
  }

  .cocktail-grid-five .cocktail-card,
  .cocktail-grid-five .cocktail-card-featured,
  .cocktail-grid-five .cocktail-card-wide {
    grid-column: auto;
    min-height: 520px;
  }

  .life-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .life-gallery .life-photo,
  .life-gallery .life-feature,
  .life-gallery .life-photo:nth-child(3),
  .life-gallery .life-photo:nth-child(4),
  .life-gallery .bottle-life-photo {
    grid-column: auto;
    min-height: 510px;
  }
}

/* Preserve the approved hero artwork as one exact, uncropped composition. */
.hero.hero-exact {
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.hero.hero-exact img {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

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

/* Lively editorial additions */
.proof-stage {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(430px, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.proof-stage .proof-heading {
  display: block;
  margin: 0;
}

.proof-stage .proof-heading h2 {
  margin: 0.5rem 0 1rem;
}

.proof-lead {
  max-width: 26rem;
  margin: 0;
  color: #d7d8dc;
  font-size: 1.08rem;
  line-height: 1.65;
}

.proof-visual,
.profile-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.proof-visual {
  min-height: 420px;
}

.proof-visual::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--red);
}

.proof-visual::after,
.profile-visual::after {
  position: absolute;
  inset: 48% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(5, 5, 7, 0.86));
}

.proof-visual img,
.profile-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.proof-visual img {
  min-height: 420px;
}

.proof-visual:hover img,
.profile-visual:hover img {
  filter: saturate(1.05);
  transform: scale(1.02);
}

.proof-visual figcaption,
.profile-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.4rem;
  left: 1.5rem;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-visual figcaption span,
.profile-visual figcaption span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--red);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.proof-grid {
  margin-top: 1rem;
}

.proof-grid article {
  border-top: 3px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.proof-grid article:hover {
  border-top-color: var(--red);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.profile-strip {
  grid-template-columns: minmax(330px, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 7vw, 7rem) 7vw;
  background:
    radial-gradient(circle at 78% 18%, rgba(196, 20, 26, 0.11), transparent 24%),
    #e7e3dc;
}

.profile-visual {
  min-height: 420px;
  border-color: rgba(34, 35, 41, 0.16);
}

.profile-visual img {
  min-height: 420px;
}

.profile-content {
  display: grid;
  gap: 2.2rem;
}

.profile-intro > p:last-child {
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.7;
}

.profile-content ul {
  width: 100%;
}

.life-gallery .life-team-photo {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: clamp(420px, 46vw, 680px);
  border-top: 5px solid var(--red);
}

.life-gallery .life-team-photo img {
  object-position: center 42%;
}

.life-gallery .life-community-photo {
  grid-column: span 7;
}

.life-gallery .life-hospitality-photo {
  grid-column: span 4;
}

.life-gallery .life-lifestyle-photo {
  grid-column: span 3;
}

.life-gallery .life-team-photo figcaption span {
  color: var(--red);
}

@media (max-width: 980px) {
  .proof-stage,
  .profile-strip {
    grid-template-columns: 1fr;
  }

  .proof-stage .proof-heading {
    max-width: 46rem;
  }

  .profile-content {
    gap: 1.5rem;
  }
}

@media (max-width: 820px) {
  .life-gallery .life-team-photo,
  .life-gallery .life-feature,
  .life-gallery .bottle-life-photo {
    grid-column: 1 / -1;
  }

  .life-gallery .life-community-photo,
  .life-gallery .life-hospitality-photo,
  .life-gallery .life-lifestyle-photo {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .proof-visual,
  .proof-visual img,
  .profile-visual,
  .profile-visual img {
    min-height: 300px;
  }

  .proof-visual figcaption,
  .profile-visual figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }

  .life-gallery .life-team-photo,
  .life-gallery .life-community-photo,
  .life-gallery .life-hospitality-photo,
  .life-gallery .life-lifestyle-photo {
    grid-column: auto;
  }

  .life-gallery .life-team-photo {
    min-height: 340px;
  }
}

/* Final launch-readiness refinements */
main > section[id] {
  scroll-margin-top: 108px;
}

.site-header > .wordmark,
.footer-mark,
.site-address {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.light-eyebrow {
  color: #e2e6eb;
}

.light-eyebrow .light-pulse {
  color: var(--red);
}

@media (max-width: 1100px) {
  main > section[id] {
    scroll-margin-top: 140px;
  }
}

@media (max-width: 430px) {
  .privacy-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "mark"
      "buy";
    gap: 0.55rem;
    min-height: 132px;
    padding: 0.7rem 1.25rem;
  }

  .privacy-header .wordmark {
    justify-self: center;
  }

  .privacy-home {
    width: 100%;
    justify-content: center;
  }
}
