:root {
  color-scheme: dark;
  --ink: #111317;
  --charcoal: #171717;
  --graphite: #22262a;
  --cream: #f6f1e8;
  --paper: #fffbf2;
  --muted: #a9a099;
  --line: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(17, 19, 23, 0.12);
  --gold: #d6a24a;
  --amber: #f0a02d;
  --copper: #a64322;
  --crimson: #8e1719;
  --emerald: #1f5d48;
  --steel: #5e7286;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--cream);
  overflow-x: hidden;
  max-width: 100vw;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

#amber-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.62;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 56px);
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(18, 18, 18, 0.86);
  border-color: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: none;
}

.brand-lockup img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.34));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(76px, 10vw, 130px) 0;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-dark {
  color: #fff;
}

.light-band {
  background:
    radial-gradient(circle at 14% 12%, rgba(214, 162, 74, 0.16), transparent 28%),
    linear-gradient(135deg, #fffaf0 0%, #f1eee8 46%, #dce2e1 100%);
  color: var(--ink);
}

.model-band {
  background:
    linear-gradient(110deg, rgba(17, 19, 23, 0.94), rgba(25, 30, 34, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 80px);
  overflow: hidden;
}

.activation-band,
.partners-band {
  background: var(--paper);
  color: var(--ink);
}

.dark-panel {
  background:
    radial-gradient(circle at 88% 10%, rgba(166, 67, 34, 0.35), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(31, 93, 72, 0.22), transparent 32%),
    #111317;
}

.cask-band {
  background:
    linear-gradient(135deg, rgba(22, 24, 27, 0.95), rgba(30, 38, 40, 0.96)),
    radial-gradient(circle at 80% 20%, rgba(214, 162, 74, 0.2), transparent 26%);
  overflow: hidden;
}

.contact-band {
  background: #0d0e10;
}

.hero {
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: clamp(98px, 12vw, 150px) 0 28px;
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroDrift 16s ease-in-out infinite alternate;
  filter: saturate(0.95) contrast(1.05);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.9) 0%, rgba(13, 13, 13, 0.66) 43%, rgba(13, 13, 13, 0.25) 100%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.96) 0%, transparent 48%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.hero-copy {
  max-width: 780px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow.dark {
  color: var(--crimson);
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(54px, 6.2vw, 92px);
  line-height: 0.93;
  letter-spacing: 0;
  max-width: 820px;
  color: #fff;
  overflow-wrap: anywhere;
  text-shadow: 0 18px 58px rgba(0, 0, 0, 0.48);
}

h1 span {
  display: block;
}

.hero-slogan {
  max-width: 10.6em;
  font-size: 0.66em;
  line-height: 1.05;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.75;
}

.light-band p,
.activation-band p,
.partners-band p {
  color: rgba(17, 19, 23, 0.7);
}

.hero-lede {
  max-width: 720px;
  font-size: clamp(17px, 1.6vw, 22px);
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--crimson), var(--copper) 54%, var(--gold));
  border-color: transparent;
  box-shadow: 0 16px 38px rgba(214, 118, 45, 0.27);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.whisky-stage {
  position: relative;
  min-height: 480px;
  perspective: 850px;
}

.hero-product {
  position: relative;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
  transform: translateZ(0);
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.42), transparent 42%),
    radial-gradient(circle at 72% 34%, rgba(240, 160, 45, 0.22), transparent 24%);
  pointer-events: none;
}

.hero-product img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center right;
  animation: premiumImageFloat 8s ease-in-out infinite;
}

.barrel-rail {
  position: absolute;
  right: 0;
  top: 88px;
  width: 330px;
  height: 190px;
  transform-style: preserve-3d;
  animation: floatStage 6s ease-in-out infinite;
}

.barrel {
  position: absolute;
  inset: 24px 0 0 0;
  border-radius: 46% / 34%;
  background:
    linear-gradient(90deg, rgba(64, 31, 16, 0.95), rgba(211, 132, 55, 0.94) 24%, rgba(103, 49, 23, 0.96) 50%, rgba(212, 133, 55, 0.94) 76%, rgba(57, 28, 15, 0.96)),
    repeating-linear-gradient(0deg, transparent 0 15px, rgba(255, 255, 255, 0.12) 15px 17px);
  box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.48), 0 35px 90px rgba(0, 0, 0, 0.42);
  transform: rotateX(10deg) rotateY(-22deg);
  animation: barrelRoll 9s ease-in-out infinite;
}

.barrel-end {
  position: absolute;
  right: -18px;
  top: 12px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  border: 10px solid rgba(75, 38, 24, 0.9);
  background:
    radial-gradient(circle, rgba(230, 160, 75, 0.96), rgba(94, 48, 26, 1) 68%),
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.08) 0 12deg, transparent 12deg 24deg);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.4);
}

.barrel-band {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #151719, #82909c 46%, #1e2428);
  opacity: 0.9;
}

.band-one {
  left: 52px;
}

.band-two {
  left: 138px;
}

.band-three {
  right: 84px;
}

.bottle {
  position: absolute;
  right: 184px;
  bottom: 18px;
  width: 128px;
  height: 310px;
  animation: bottlePulse 4.8s ease-in-out infinite;
}

.bottle-neck {
  position: absolute;
  left: 44px;
  top: 0;
  width: 40px;
  height: 92px;
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(38, 35, 31, 0.6), rgba(255, 255, 255, 0.15));
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.bottle-body {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 235px;
  border-radius: 36px 36px 16px 16px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02) 30%, rgba(255, 255, 255, 0.14));
  overflow: hidden;
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.16), 0 32px 80px rgba(214, 138, 42, 0.16);
}

.liquid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 63%;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 233, 134, 0.75), transparent 18%),
    linear-gradient(180deg, rgba(247, 168, 57, 0.86), rgba(111, 38, 13, 0.94));
  animation: liquidWave 4s ease-in-out infinite;
}

.label {
  position: absolute;
  left: 21px;
  right: 21px;
  top: 95px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 250, 240, 0.84);
  color: #5f1112;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
}

.glass {
  position: absolute;
  right: 72px;
  bottom: 14px;
  width: 90px;
  height: 126px;
  border-radius: 14px 14px 28px 28px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  overflow: hidden;
  transform: rotate(-4deg);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.12), 0 22px 58px rgba(0, 0, 0, 0.28);
}

.glass-liquid {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 38%;
  border-radius: 50% 50% 18px 18px;
  background: linear-gradient(180deg, rgba(248, 187, 67, 0.9), rgba(124, 44, 15, 0.96));
  animation: glassGlow 3s ease-in-out infinite;
}

.pour-line {
  position: absolute;
  right: 160px;
  bottom: 118px;
  width: 3px;
  height: 118px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 179, 58, 0.95), transparent);
  transform: rotate(23deg);
  filter: drop-shadow(0 0 12px rgba(240, 160, 45, 0.92));
  animation: pourFlicker 1.7s ease-in-out infinite;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: clamp(28px, 5vw, 58px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-metrics article {
  min-height: 112px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-metrics article:last-child {
  border-right: 0;
}

.hero-metrics strong {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 540px) minmax(0, 1fr);
}

.copy-block p {
  max-width: 720px;
}

.hero-grid > *,
.split > *,
.contact-grid > *,
.case-showcase > *,
.model-proof > * {
  min-width: 0;
}

.feature-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-card,
.case-card {
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.58);
  padding: 22px;
  box-shadow: 0 18px 60px rgba(17, 19, 23, 0.08);
}

.feature-card span,
.case-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--crimson);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3,
.case-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.feature-card p,
.case-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
}

.phone-showcase {
  position: relative;
  min-height: 650px;
}

.phone {
  position: absolute;
  width: min(48vw, 255px);
  aspect-ratio: 390 / 844;
  border-radius: 34px;
  padding: 10px;
  background: #050505;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 96px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #050505;
  z-index: 2;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 26px;
}

.phone-one {
  right: 42%;
  top: 12px;
  transform: rotate(-8deg);
}

.phone-two {
  right: 8px;
  top: 112px;
  transform: rotate(7deg);
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline article {
  min-height: 280px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, background 180ms ease;
}

.timeline article:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #151515;
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.timeline p {
  font-size: 15px;
  line-height: 1.65;
}

.model-proof {
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.48fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.model-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-proof p {
  margin-bottom: 0;
}

.proof-visual {
  position: relative;
  margin: 0;
  height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms ease;
}

.proof-visual:hover img {
  transform: scale(1.04);
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #111;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 800ms ease;
}

.image-panel--portrait-focus img {
  object-position: center 24%;
}

.image-panel:hover img {
  transform: scale(1.04);
}

.image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(12px);
}

.image-caption strong,
.image-caption span {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.image-caption strong {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.image-caption span {
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(17, 19, 23, 0.74);
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--gold));
  box-shadow: 0 0 0 5px rgba(142, 23, 25, 0.09);
}

.activation-product-proof {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  margin: 28px 0 0;
  padding: 14px;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 251, 242, 0.7);
  box-shadow: 0 18px 44px rgba(17, 19, 23, 0.1);
}

.activation-product-proof img {
  width: 100%;
  aspect-ratio: 1 / 1.22;
  object-fit: cover;
  object-position: center 52%;
  border-radius: calc(var(--radius) - 2px);
}

.activation-product-proof figcaption {
  display: grid;
  gap: 8px;
}

.activation-product-proof strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.activation-product-proof span {
  color: rgba(17, 19, 23, 0.64);
  font-size: 13px;
  line-height: 1.55;
}

.case-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  margin-bottom: 18px;
}

.case-visual {
  overflow: hidden;
  border-radius: var(--radius);
}

.case-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.case-stats {
  display: grid;
  gap: 18px;
}

.case-stats article {
  display: grid;
  align-content: center;
  min-height: 128px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.case-stats strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.case-stats span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.case-card {
  min-height: 256px;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  color: #fff;
  box-shadow: none;
}

.case-card:nth-child(2n) {
  background: rgba(31, 93, 72, 0.18);
}

.case-card:nth-child(3n) {
  background: rgba(142, 23, 25, 0.18);
}

.case-card span {
  color: var(--gold);
}

.case-card p {
  color: rgba(255, 255, 255, 0.7);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.logo-card {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 234, 214, 0.7)),
    radial-gradient(circle at 0 0, rgba(214, 162, 74, 0.2), transparent 42%);
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 2vw, 23px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.logo-card:hover {
  transform: translateY(-4px);
  color: var(--crimson);
  border-color: rgba(142, 23, 25, 0.28);
}

.logo-card img {
  width: min(190px, 82%);
  max-height: 74px;
  object-fit: contain;
  filter: saturate(0.9) contrast(1.04);
}

.logo-card:nth-child(4) img,
.logo-card:nth-child(6) img {
  filter: brightness(0.62) sepia(0.18) saturate(1.2);
}

.logo-card-text span {
  color: #171717;
}

.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mini-metrics span {
  display: inline-grid;
  gap: 4px;
  min-width: 150px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.68);
}

.mini-metrics strong {
  color: var(--gold);
  font-size: 20px;
}

.cask-visual {
  position: relative;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
}

.cask-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms ease;
}

.cask-visual:hover img {
  transform: scale(1.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-style: normal;
}

.contact-card span {
  color: var(--gold);
  font-weight: 900;
  line-height: 1.45;
}

.contact-card a {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.12;
}

.contact-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.08) translate3d(-1%, 0, 0);
  }

  to {
    transform: scale(1.13) translate3d(1.5%, -1%, 0);
  }
}

@keyframes premiumImageFloat {
  0%,
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.06) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes floatStage {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes barrelRoll {
  0%,
  100% {
    transform: rotateX(10deg) rotateY(-22deg) rotateZ(0deg);
  }

  50% {
    transform: rotateX(10deg) rotateY(-8deg) rotateZ(2deg);
  }
}

@keyframes bottlePulse {
  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(214, 162, 74, 0.35));
  }

  50% {
    filter: drop-shadow(0 0 28px rgba(214, 162, 74, 0.72));
  }
}

@keyframes liquidWave {
  0%,
  100% {
    transform: translateY(0) skewY(0deg);
  }

  50% {
    transform: translateY(-5px) skewY(-2deg);
  }
}

@keyframes glassGlow {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.45) brightness(1.16);
  }
}

@keyframes pourFlicker {
  0%,
  100% {
    opacity: 0.45;
    transform: rotate(23deg) scaleY(0.78);
  }

  50% {
    opacity: 1;
    transform: rotate(23deg) scaleY(1);
  }
}

@keyframes caskMove {
  from {
    transform: translateX(0) rotate(0deg);
  }

  to {
    transform: translateX(540px) rotate(360deg);
  }
}

@keyframes caskHover {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .split.reverse,
  .contact-grid,
  .model-proof,
  .case-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-product {
    min-height: 420px;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-metrics,
  .timeline,
  .case-grid,
  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-metrics article:nth-child(2) {
    border-right: 0;
  }

  .hero-metrics article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-metrics article:nth-child(3),
  .hero-metrics article:nth-child(4) {
    border-bottom: 0;
  }

  .phone-showcase {
    min-height: 570px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand-lockup span {
    display: none;
  }

  .brand-lockup img {
    width: 58px;
    height: 58px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    position: fixed;
    top: 16px;
    right: 14px;
    z-index: 32;
    background: rgba(15, 15, 15, 0.72);
    backdrop-filter: blur(12px);
  }

  .site-nav {
    position: fixed;
    inset: 67px 14px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(15, 15, 15, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px;
    color: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .section-shell,
  .hero-grid,
  .hero-metrics {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 106px;
    padding-bottom: 18px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 10.8vw, 46px);
    line-height: 1;
  }

  .hero-slogan {
    max-width: 9.2em;
    font-size: 0.78em;
    line-height: 1.08;
  }

  .hero-copy,
  .hero-actions,
  .button {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-width: 0;
  }

  .hero-lede {
    width: 320px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-product {
    min-height: 310px;
  }

  .hero-product img {
    min-height: 310px;
  }

  .hero-metrics,
  .feature-grid,
  .timeline,
  .case-grid,
  .logo-wall {
    grid-template-columns: 1fr;
  }

  .hero-metrics article,
  .hero-metrics article:nth-child(3) {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-metrics article:last-child {
    border-bottom: 0;
  }

  .phone-showcase {
    min-height: 500px;
  }

  .phone {
    width: min(56vw, 220px);
  }

  .phone-one {
    right: 38%;
  }

  .phone-two {
    right: 0;
    top: 98px;
  }

  .timeline article {
    min-height: auto;
  }

  .image-caption {
    position: static;
    display: grid;
    background: #111;
  }

  .image-caption span {
    text-align: left;
  }

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

  .activation-product-proof img {
    aspect-ratio: 16 / 10;
  }

  .case-visual img {
    min-height: 280px;
  }

  .logo-card {
    min-height: 84px;
  }

  .contact-card {
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .hero-copy,
  .hero-lede,
  .hero-actions {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    font-size: 16px;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .phone-showcase {
    min-height: 430px;
  }

  .phone {
    width: 205px;
  }

  .phone-one {
    right: 34%;
  }

  .phone-two {
    right: -10px;
  }

  .feature-card,
  .case-card {
    padding: 18px;
  }

  .mini-metrics {
    display: grid;
  }

  .mini-metrics span {
    min-width: 0;
  }
}
