@font-face {
  font-family: 'Righteous';
  src: url('../fonts/Righteous-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Oxanium';
  src: url('../fonts/Oxanium-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: 'Oxanium';
  src: url('../fonts/Oxanium-SemiBold.ttf') format('truetype');
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

/* ========================================================================== 
   Vibe n Pour design tokens
   ========================================================================== */
:root {
  --ink: #0b0b0c;
  --ink-soft: #131314;
  --ink-raise: #19191a;
  --line: rgba(242, 237, 226, 0.09);
  --line-strong: rgba(242, 237, 226, 0.18);

  --cream: #f2ede2;
  --cream-dim: #b6ac9d;
  --cream-faint: #7b7369;

  --red: #c11f2b;
  --red-bright: #e6394a;
  --purple: #bf40bf;

  --font-display: 'Righteous', 'Cinzel Decorative', fantasy;
  --font-body: 'Oxanium', 'Manrope', sans-serif;

  --wrap: 1180px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 2026 neon Vibe n Pour identity */
:root {
  --ink: #05030d;
  --ink-soft: #0d0920;
  --ink-raise: #17102f;
  --cream: #faf7ff;
  --cream-dim: #bdb4d2;
  --cream-faint: #817794;
  --red: #9d2cff;
  --red-bright: #38d8ff;
  --purple: #f22bd5;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(165, 118, 255, 0.35);
}
body {
  background:
    radial-gradient(circle at 85% 5%, rgba(62, 69, 255, 0.16), transparent 26%),
    radial-gradient(circle at 8% 50%, rgba(189, 42, 255, 0.1), transparent 22%), var(--ink);
}
.brand__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 11px rgba(151, 65, 255, 0.5));
}
/* Slow purple ribbons orbit the logo; the transparent centre keeps it crisp. */
.site-header .brand {
  position: relative;
  isolation: isolate;
  border-radius: 50%;
}
.site-header .brand::before,
.site-header .brand::after {
  content: '';
  position: absolute;
  inset: -9px;
  padding: 2px;
  border-radius: 46% 54% 50% 50% / 53% 46% 54% 47%;
  pointer-events: none;
  z-index: -1;
  transform-origin: center;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: opacity 0.4s ease;
}
.site-header .brand::before {
  background: conic-gradient(
    from 18deg,
    transparent 0deg 24deg,
    #36104f 42deg,
    #6e239c 66deg,
    #9636c7 84deg,
    transparent 112deg 158deg,
    #40125e 179deg,
    #7827a4 207deg,
    transparent 243deg 285deg,
    #642080 312deg,
    transparent 345deg
  );
  filter: blur(0.65px);
  opacity: 0.68;
  animation:
    logoPurpleOrbit 10s linear infinite,
    logoPurpleWave 5.4s ease-in-out infinite;
}
.site-header .brand::after {
  inset: -6px;
  padding: 3px;
  background: conic-gradient(
    from 96deg,
    transparent 0deg 35deg,
    #4b125f 62deg,
    #84268f 93deg,
    transparent 132deg 210deg,
    #622080 250deg,
    transparent 297deg
  );
  filter: blur(2.5px);
  opacity: 0.46;
  animation:
    logoPurpleOrbit 16s linear reverse infinite,
    logoPurpleWave 7s ease-in-out -2s infinite;
}
.site-header .brand__logo {
  position: relative;
  z-index: 1;
  filter: brightness(0.94) drop-shadow(0 0 3px rgba(99, 33, 145, 0.22));
}
.site-header .brand:hover::before,
.site-header .brand:focus-visible::before {
  opacity: 0.8;
}
.site-header .brand:hover::after,
.site-header .brand:focus-visible::after {
  opacity: 0.56;
}
.site-header .brand:focus-visible {
  outline: 1px solid #9652ba;
  outline-offset: 12px;
}
@keyframes logoPurpleOrbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes logoPurpleWave {
  0%,
  100% {
    border-radius: 46% 54% 50% 50% / 53% 46% 54% 47%;
  }
  33% {
    border-radius: 54% 46% 55% 45% / 46% 54% 47% 53%;
  }
  66% {
    border-radius: 49% 51% 45% 55% / 55% 48% 52% 45%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header .brand::before,
  .site-header .brand::after {
    animation: none;
    transform: none;
    transition: none;
  }
  .site-header .brand::after {
    transform: rotate(70deg);
  }
}
@media (forced-colors: active) {
  .site-header .brand::before,
  .site-header .brand::after {
    display: none;
  }
  .site-header .brand__logo {
    filter: none;
  }
}
.site-header {
  background: rgba(5, 3, 13, 0.88);
}
.nav a.active {
  color: #fff;
}
.nav a.active::after {
  width: 100%;
  background: linear-gradient(90deg, var(--purple), var(--red-bright));
}
.btn--primary {
  background: linear-gradient(110deg, #6419d8, #bd28da 58%, #2173ff);
  box-shadow: 0 10px 30px rgba(123, 43, 220, 0.24);
}
.btn--primary:hover {
  background: linear-gradient(110deg, #7921ef, #df31e8 58%, #3588ff);
  box-shadow: 0 12px 38px rgba(123, 43, 220, 0.45);
}
.text-red {
  color: transparent;
  background: linear-gradient(90deg, #f22bd5, #9d2cff, #38d8ff);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__glow {
  background: radial-gradient(circle, rgba(98, 43, 255, 0.34), transparent 65%);
}
.glass-outline,
.glass-base,
.glass-stem {
  stroke: #b987ff;
}
.liquid {
  fill: #742ee9;
}
.liquid-surface,
.drip circle {
  fill: #38d8ff;
}
.card__media--1 {
  background:
    radial-gradient(circle at 70% 25%, rgba(241, 43, 213, 0.48), transparent 32%),
    linear-gradient(135deg, #160b34, #071b41);
}
.card__media--2 {
  background:
    radial-gradient(circle at 30% 70%, rgba(51, 120, 255, 0.55), transparent 35%),
    linear-gradient(135deg, #170a32, #080513);
}
.card__media--3 {
  background:
    radial-gradient(circle at 70% 25%, rgba(157, 44, 255, 0.55), transparent 35%),
    linear-gradient(135deg, #21114b, #06030d);
}
.page-hero {
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  padding: 85px 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(75, 68, 255, 0.28), transparent 28%),
    linear-gradient(130deg, #05030d, #170b38 65%, #061c42);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.96;
  margin: 0;
  max-width: 900px;
}
.page-hero p {
  max-width: 650px;
  color: var(--cream-dim);
  margin-top: 20px;
}
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.page-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--ink-raise), #080512);
  transition: 0.25s;
}
.page-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}
.page-card b {
  font-family: var(--font-display);
  color: var(--red-bright);
  letter-spacing: 0.08em;
}
.page-card h3 {
  font-family: var(--font-display);
  font-size: 25px;
  text-transform: uppercase;
  margin: 45px 0 10px;
}
.page-card p {
  color: var(--cream-dim);
  font-size: 14px;
}
.page-copy {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  align-items: start;
}
.page-copy > p {
  color: var(--cream-dim);
  font-size: 17px;
  margin: 0;
}
.page-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.page-list li {
  padding: 20px;
  background: var(--ink-soft);
  color: var(--cream-dim);
}
.page-list strong {
  color: var(--cream);
  display: block;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.service-catalog__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}
.service-catalog__heading .display {
  margin-bottom: 0;
}
.service-catalog__heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--cream-dim);
  font-size: 15px;
  line-height: 1.75;
}
.service-grid .page-card {
  min-height: 235px;
}
.service-grid .page-card h3 {
  margin-top: 34px;
}
.service-grid--extras .page-card {
  background: linear-gradient(145deg, rgba(22, 9, 34, 0.96), rgba(4, 4, 12, 0.98));
}
.page-grid .service-image-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card__media {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #090411;
}
.service-card__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(5, 2, 11, 0.62));
  pointer-events: none;
}
.service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.7s ease;
}
.service-image-card:hover .service-card__media img {
  transform: scale(1.045);
  filter: saturate(1.08);
}
.service-card__body {
  flex: 1;
  padding: 23px 25px 27px;
}
.page-grid .service-image-card h3 {
  margin: 17px 0 9px;
  font-size: 23px;
}
.page-grid .service-image-card p {
  line-height: 1.65;
}
.staffing-catalog {
  position: relative;
  background:
    radial-gradient(circle at 82% 16%, rgba(32, 93, 135, 0.14), transparent 30%),
    linear-gradient(145deg, #05020b, #090418 58%, #020b14);
}
.service-grid--staffing .page-card {
  border-color: rgba(68, 115, 158, 0.25);
  background: linear-gradient(145deg, rgba(8, 18, 31, 0.94), rgba(7, 3, 15, 0.98));
}
.service-grid--staffing .page-card:hover {
  border-color: rgba(77, 163, 202, 0.5);
}
.service-grid--staffing .page-card b {
  color: #59cbe8;
}
.service-terms-note {
  margin: 4px 0 26px;
  padding: 15px 18px;
  border-left: 2px solid rgba(89, 203, 232, 0.65);
  background: linear-gradient(90deg, rgba(41, 91, 119, 0.13), transparent);
  color: #9d92aa;
  font-size: 12px;
  line-height: 1.65;
}
.service-terms-note strong {
  color: #d8f6ff;
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Mixed-orientation gallery. Real photos keep their full, natural proportions. */
.gallery-real {
  column-count: 3;
  column-gap: 18px;
}
.gallery-real .gallery-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  min-width: 0;
  margin: 0 0 18px;
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080510;
  isolation: isolate;
}
.gallery-real .gallery-item:empty {
  background: linear-gradient(145deg, #0e0818, #070c16);
}
.gallery-item--portrait {
  aspect-ratio: 3/4;
}
.gallery-item--landscape {
  aspect-ratio: 3/2;
}
.gallery-real img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: var(--gallery-fit, cover);
  object-position: var(--gallery-focus, 50% 50%);
  transition:
    transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.75s ease;
}
.gallery-real figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}
.gallery-real .gallery-item--photo {
  aspect-ratio: auto;
  transition: border-color 0.35s ease;
}
.gallery-real .gallery-item--photo img {
  position: static;
  height: auto;
  object-fit: contain;
}
.gallery-real .gallery-item--photo:hover {
  border-color: rgba(77, 163, 202, 0.5);
}
.gallery-real .gallery-item--photo:hover img {
  transform: none;
  filter: none;
}
@media (max-width: 800px) {
  .page-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-copy,
  .service-catalog__heading {
    grid-template-columns: 1fr;
  }
  .service-catalog__heading {
    gap: 18px;
    align-items: start;
  }
  .gallery-real {
    column-count: 2;
    column-gap: 14px;
  }
  .gallery-real .gallery-item {
    margin-bottom: 14px;
  }
}
@media (max-width: 520px) {
  .page-grid {
    grid-template-columns: 1fr;
  }
  .service-grid .page-card {
    min-height: 220px;
  }
  .gallery-real {
    column-count: 1;
  }
  .page-hero {
    min-height: 390px;
    padding: 60px 0;
  }
  .brand__logo {
    width: 44px;
    height: 44px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

.text-red {
  color: var(--red-bright);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  font-weight: 700;
  margin: 0 0 10px;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  line-height: 0.98;
  color: var(--cream);
}
.display span {
  display: block;
}
.display--sm {
  font-size: clamp(28px, 4vw, 46px);
}

/* A quieter closing title, with the home page's neon accent treatment. */
.display.closing-title {
  max-width: 20ch;
  margin: 0 0 28px;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
  text-transform: none;
  text-wrap: balance;
  overflow-wrap: break-word;
  text-shadow: none;
}
.display.closing-title > .text-red {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 16px;
  padding: 4px 0 7px 16px;
  border-left: 2px solid #4dc9e5;
  color: #79cee7;
  background: none;
  font-family: 'Oxanium', 'Manrope', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: 0.065em;
  line-height: 1.3;
  text-transform: uppercase;
  text-shadow: none;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .display.closing-title > .text-red {
    color: transparent;
    background: linear-gradient(100deg, #79dff1, #68b8df 62%, #b18add);
    -webkit-background-clip: text;
    background-clip: text;
  }
}
.display.closing-title > .text-red::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, rgba(82, 217, 242, 0.65), rgba(153, 100, 203, 0.45), transparent);
}
.about-promise .display.closing-title {
  max-width: 26ch;
}
.about-promise .closing-title > .text-red {
  margin-inline: auto;
}
@media (max-width: 600px) {
  .display.closing-title {
    margin-bottom: 24px;
  }
  .display.closing-title > .text-red {
    margin-top: 13px;
    padding-left: 12px;
    letter-spacing: 0.04em;
  }
  .display.closing-title > .text-red::after {
    left: 12px;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 rgba(193, 31, 43, 0);
}
.btn--primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(230, 57, 74, 0.55);
}
.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--cream);
}
.btn--ghost:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 11px 20px;
  font-size: 12px;
}
.btn--block {
  width: 100%;
  padding: 17px 20px;
  font-size: 14px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    gap 0.2s var(--ease);
}
.link-arrow::after {
  content: '→';
  transition: transform 0.2s var(--ease);
}
.link-arrow:hover {
  color: var(--red-bright);
  border-color: var(--red-bright);
  gap: 10px;
}

/* ==========================================================================
   Announcement bar
   ========================================================================== */
.announce {
  position: relative;
  border-bottom: 1px solid rgba(127, 87, 162, 0.22);
  background:
    radial-gradient(ellipse at 14% 0, rgba(106, 43, 161, 0.22), transparent 50%),
    linear-gradient(110deg, #10061d, #0d091c 55%, #061727);
  color: #d8cee3;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.announce::after {
  content: '';
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(170, 82, 223, 0.6) 30%,
    rgba(76, 197, 222, 0.5) 70%,
    transparent
  );
  pointer-events: none;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding-block: 9px;
}
.announce__badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid rgba(91, 189, 214, 0.28);
  border-radius: 30px;
  background: rgba(46, 99, 130, 0.1);
  color: #a6e3ef;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.announce__badge::before {
  content: '';
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #72d5e7;
  box-shadow: 0 0 9px rgba(96, 207, 231, 0.5);
}
.announce__ticker {
  flex: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  line-height: 1.55;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.announce__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
  animation: announceTicker 24s linear infinite;
}
.announce__track > span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding-inline: 30px;
}
.announce__track i {
  color: #72d5e7;
  font-style: normal;
  text-shadow: 0 0 9px rgba(96, 207, 231, 0.6);
}
.announce:hover .announce__track {
  animation-play-state: paused;
}
.announce__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@keyframes announceTicker {
  to {
    transform: translateX(-50%);
  }
}
.announce__link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 9px;
  min-height: 32px;
  padding: 5px 0 5px 16px;
  border-left: 1px solid rgba(170, 151, 201, 0.22);
  color: #f1eaf8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.065em;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.announce__link span {
  color: #8fd9eb;
  transition: transform 0.2s var(--ease);
}
.announce__link:hover,
.announce__link:focus-visible {
  color: #a3e7f3;
}
.announce__link:hover span {
  transform: translate(2px, -2px);
}
@media (max-width: 640px) {
  .announce__inner {
    flex-wrap: wrap;
    gap: 4px 12px;
    padding-block: 8px;
  }
  .announce__ticker {
    order: 3;
    flex-basis: 100%;
    padding-top: 2px;
    font-size: 10px;
  }
  .announce__track {
    animation-duration: 20s;
  }
  .announce__badge {
    font-size: 8px;
    padding: 5px 9px;
  }
  .announce__link {
    font-size: 9px;
    min-height: 30px;
    padding-left: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .announce__track {
    animation: none;
    transform: none;
  }
  .announce__link,
  .announce__link span {
    transition: none;
  }
  .announce__link:hover span {
    transform: none;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--cream-dim);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.nav a:hover {
  color: var(--cream);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s var(--ease);
}
.nav a:hover::after {
  width: 100%;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--cream);
  transition:
    transform 0.25s var(--ease),
    opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 88px 0 60px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(193, 31, 43, 0.3), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero__copy .display {
  font-size: clamp(40px, 6.4vw, 84px);
  margin: 14px 0 22px;
}
.hero__lede {
  max-width: 46ch;
  color: var(--cream-dim);
  font-size: 16px;
  margin-bottom: 30px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.hero__stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stats strong {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red-bright);
}
.hero__stats span {
  font-size: 12px;
  color: var(--cream-faint);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__visual {
  display: flex;
  justify-content: center;
}
.glass-anim {
  width: min(100%, 340px);
  height: auto;
}
.glass-outline {
  fill: none;
  stroke: var(--cream);
  stroke-width: 3;
  stroke-linejoin: round;
  opacity: 0.9;
}
.glass-base,
.glass-stem {
  stroke: var(--cream);
  stroke-width: 3;
  opacity: 0.9;
}
.liquid {
  transform: translateY(220px);
  animation: pourFill 3.2s var(--ease) 0.4s forwards;
}
.liquid-surface {
  opacity: 0;
  animation: surfaceIn 3.2s var(--ease) 0.4s forwards;
}
@keyframes pourFill {
  0% {
    transform: translateY(220px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes surfaceIn {
  0%,
  60% {
    opacity: 0;
    transform: translateY(220px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.garnish {
  opacity: 0;
  animation: fadeIn 0.6s var(--ease) 3.2s forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.drip circle {
  fill: var(--red-bright);
}
.drip {
  opacity: 0;
}
.drip--1 {
  animation: drip 2.6s var(--ease) 0.1s infinite;
}
.drip--2 {
  animation: drip 2.6s var(--ease) 0.9s infinite;
}
.drip--3 {
  animation: drip 2.6s var(--ease) 1.7s infinite;
}
@keyframes drip {
  0% {
    opacity: 0;
    transform: translate(180px, 60px);
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform: translate(180px, 150px);
  }
  85% {
    opacity: 0;
    transform: translate(180px, 160px);
  }
  100% {
    opacity: 0;
  }
}

/* ==========================================================================
   Marquee divider
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  background: var(--ink-soft);
}
.marquee__track {
  display: inline-flex;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream-faint);
  animation: marquee2 42s linear infinite;
}
.marquee__track span:nth-child(4n + 1) {
  color: var(--red-bright);
}
@keyframes marquee2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: 90px 0;
}
.section--alt {
  background: var(--ink-soft);
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.section__intro {
  color: var(--cream-dim);
  max-width: 50ch;
  margin-top: 12px;
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Card row (featured services) */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}
.card__media {
  position: relative;
  height: 200px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.card__media--1 {
  background-image:
    linear-gradient(180deg, rgba(2, 1, 7, 0.02), rgba(2, 1, 7, 0.16)),
    url('../images/featured-international-standard-drinks.jpg');
  background-position: center 56%;
}
.card__media--2 {
  isolation: isolate;
  background: #09040f;
}
.card__media--2::before,
.card__media--2::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.card__media--2::before {
  inset: -18px;
  z-index: -2;
  background: url('../images/featured-vibenpour-specials.png') center 48% / cover no-repeat;
  filter: blur(15px) brightness(0.54) saturate(0.85);
  transform: scale(1.08);
}
.card__media--2::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 2, 10, 0.18), transparent 24% 76%, rgba(5, 2, 10, 0.18)),
    url('../images/featured-vibenpour-specials.png') center/contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(18, 5, 25, 0.75));
}
.card__media--3 {
  background-image:
    linear-gradient(180deg, rgba(2, 1, 7, 0.02), rgba(2, 1, 7, 0.16)), url('../images/featured-customized-drinks.jpg');
  background-position: center 54%;
}
.card__zoom {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.55);
  color: var(--cream);
  font-size: 16px;
  backdrop-filter: blur(4px);
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.card:hover .card__zoom {
  background: var(--red);
  transform: scale(1.08);
}
.card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.card p {
  color: var(--cream-dim);
  font-size: 14px;
  margin-bottom: 18px;
}

/* Full services grid */
.grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tile {
  background: var(--ink);
  padding: 34px 28px;
  transition: background 0.25s var(--ease);
}
.section--alt .tile {
  background: var(--ink-soft);
}
.tile:hover {
  background: var(--ink-raise);
}
.tile--image {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tile__media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #080510;
}
.tile__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgba(5, 2, 11, 0.58));
  pointer-events: none;
}
.tile__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.7s ease;
}
.tile--image:hover .tile__media img {
  transform: scale(1.045);
  filter: saturate(1.08);
}
.tile__body {
  flex: 1;
  padding: 24px 28px 30px;
}
.tile__num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--red-bright);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.tile h3 {
  font-family: var(--font-display);
  font-size: 19px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tile p {
  color: var(--cream-dim);
  font-size: 14px;
}

/* About */
.about__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.about__copy p {
  color: var(--cream-dim);
  margin: 18px 0 22px;
  max-width: 52ch;
}
.about__inner--intro {
  grid-template-columns: 1fr;
  max-width: 860px;
}
.about__inner--intro .about__copy p {
  max-width: 74ch;
}
.about__points {
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--cream-dim);
}
.about__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
}
.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.ring-mark {
  width: 100%;
  max-width: 300px;
}
.ring-mark__circle {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 1;
}
.ring-mark__circle--spin {
  stroke: var(--red);
  stroke-width: 2;
  stroke-dasharray: 12 26;
  transform-origin: center;
  animation: spin 26s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.about__stat-card {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink-soft);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 18px 22px;
  width: min(240px, 80%);
  text-align: center;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
}
.about__stat-card strong {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--red-bright);
}
.about__stat-card strong span {
  font-size: 16px;
  color: var(--cream-faint);
}
.about__stat-card p {
  font-size: 12px;
  color: var(--cream-dim);
  margin-top: 6px;
}

/* Contact */
.contact__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
.contact__copy p {
  color: var(--cream-dim);
  margin: 18px 0 26px;
  max-width: 44ch;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
.contact__details a {
  font-weight: 700;
  transition: color 0.2s var(--ease);
}
.contact__details a:hover {
  color: var(--red-bright);
}
.contact__details span {
  color: var(--cream-faint);
  font-size: 14px;
}
.social-feature {
  max-width: 520px;
  padding: 20px;
  border: 1px solid rgba(94, 72, 128, 0.42);
  background: linear-gradient(135deg, rgba(25, 8, 41, 0.76), rgba(4, 14, 27, 0.74));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}
.social-feature__heading {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}
.social-feature__heading > strong {
  font-family: 'Oxanium', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.social-feature__heading > small {
  color: var(--cream-faint);
  font-size: 11px;
  line-height: 1.5;
}
.contact__social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact__social .social-profile {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: rgba(4, 2, 9, 0.66);
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.social-profile img {
  width: 21px;
  height: 21px;
  filter: invert(1);
  opacity: 0.9;
}
.social-profile span {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.social-profile span strong {
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.social-profile span small {
  overflow: hidden;
  color: var(--cream-faint);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.social-profile > i {
  color: #5dcee7;
  font-size: 13px;
  font-style: normal;
}
.contact__social .social-profile--instagram {
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    135deg,
    #405de6 0%,
    #5851db 15%,
    #833ab4 32%,
    #c13584 49%,
    #e1306c 64%,
    #fd1d1d 79%,
    #f56040 90%,
    #fcaf45 100%
  );
  box-shadow: 0 12px 30px rgba(193, 53, 132, 0.28);
}
.contact__social .social-profile--instagram > i {
  color: #fff;
}
.contact__social .social-profile--instagram span small {
  color: rgba(255, 255, 255, 0.82);
}
.contact__social .social-profile--tiktok {
  border-color: rgba(62, 212, 224, 0.6);
  background:
    radial-gradient(circle at 100% 0, rgba(237, 42, 123, 0.2), transparent 42%),
    linear-gradient(125deg, rgba(9, 91, 108, 0.42), rgba(4, 8, 18, 0.9));
  box-shadow:
    inset 3px 0 #42d5e5,
    0 10px 28px rgba(23, 119, 137, 0.17);
}
.contact__social .social-profile--tiktok > i {
  color: #59e4ee;
}
.contact__social .social-profile--tiktok span small {
  color: #9dd9dd;
}
.contact__social .social-profile:hover {
  border-color: rgba(104, 190, 216, 0.56);
  background: linear-gradient(120deg, rgba(96, 25, 130, 0.25), rgba(23, 91, 124, 0.2));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}
.contact__social .social-profile--instagram:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(
    135deg,
    #4969ee 0%,
    #625be4 15%,
    #913dc0 32%,
    #d04092 49%,
    #ee3978 64%,
    #ff2f2f 79%,
    #ff704e 90%,
    #ffbd55 100%
  );
  box-shadow: 0 16px 38px rgba(208, 52, 137, 0.42);
}
.contact__social .social-profile--tiktok:hover {
  border-color: #64e7ed;
  background:
    radial-gradient(circle at 100% 0, rgba(242, 45, 123, 0.29), transparent 42%),
    linear-gradient(125deg, rgba(10, 117, 132, 0.55), rgba(4, 10, 21, 0.95));
  box-shadow:
    inset 3px 0 #57e0eb,
    0 14px 34px rgba(23, 129, 146, 0.27);
}
@media (max-width: 520px) {
  .contact__social {
    grid-template-columns: 1fr;
  }
  .social-feature {
    padding: 16px;
  }
}

.form {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s var(--ease);
}
.field textarea {
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.field__error {
  display: none;
  color: var(--red-bright);
  font-size: 12px;
  margin-top: 6px;
}
.field.has-error input,
.field.has-error select {
  border-color: var(--red-bright);
}
.field.has-error .site-select__trigger {
  border-color: #cf43a8;
  box-shadow: 0 0 0 3px rgba(173, 45, 139, 0.14);
}
.field.has-error .field__error {
  display: block;
}

/* Site-wide custom dropdowns */
.field.dropdown-open {
  position: relative;
  z-index: 90;
}
.field select.site-select__native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  white-space: nowrap !important;
}
.site-select {
  position: relative;
  width: 100%;
}
.site-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(100, 76, 128, 0.72);
  border-radius: 3px;
  background: linear-gradient(112deg, #08030f, #050812 68%, #07101b);
  color: #f4edf7;
  font-family: var(--font-body);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  outline: 0;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.025),
    0 8px 24px rgba(0, 0, 0, 0.15);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s,
    color 0.25s;
}
.site-select.has-placeholder .site-select__trigger {
  color: #a398ad;
}
.site-select__trigger span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-select__trigger i {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin: -5px 3px 0 0;
  border-right: 2px solid #56d7f3;
  border-bottom: 2px solid #a856f0;
  transform: rotate(45deg);
  filter: drop-shadow(0 0 5px rgba(86, 215, 243, 0.32));
  transition:
    margin 0.34s var(--ease),
    transform 0.34s var(--ease);
}
.site-select__trigger:hover,
.site-select__trigger:focus-visible,
.site-select.is-open .site-select__trigger {
  border-color: rgba(153, 76, 208, 0.92);
  background: linear-gradient(112deg, #10051b, #060b18 68%, #071828);
  color: #fff;
  box-shadow:
    0 0 0 3px rgba(121, 43, 171, 0.13),
    0 14px 34px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(99, 36, 150, 0.06);
}
.site-select.is-open .site-select__trigger i {
  margin-top: 5px;
  transform: rotate(225deg);
}
.site-select.is-disabled {
  opacity: 0.5;
}
.site-select.is-disabled .site-select__trigger {
  cursor: not-allowed;
}
.site-select__menu {
  position: absolute;
  z-index: 110;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-height: min(360px, 52vh);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid rgba(123, 70, 161, 0.76);
  border-radius: 5px;
  background:
    radial-gradient(circle at 5% 0, rgba(116, 33, 155, 0.24), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(31, 119, 157, 0.14), transparent 38%), rgba(5, 2, 11, 0.985);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.72),
    0 0 30px rgba(93, 40, 139, 0.13);
  backdrop-filter: blur(18px);
  transform-origin: top;
  scrollbar-width: thin;
  scrollbar-color: #713f93 #0a0610;
}
.site-select__menu[hidden] {
  display: none;
}
.site-select__menu::-webkit-scrollbar {
  width: 7px;
}
.site-select__menu::-webkit-scrollbar-track {
  background: #0a0610;
}
.site-select__menu::-webkit-scrollbar-thumb {
  border: 2px solid #0a0610;
  border-radius: 8px;
  background: linear-gradient(#8748b0, #2d89a5);
}
.site-select__option {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 46px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: #b8aebf;
  font-family: var(--font-body);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  outline: 0;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.site-select__option b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(111, 91, 144, 0.38);
  border-radius: 50%;
  color: #7f7489;
  font-family: 'Oxanium', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.site-select__option span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-select__option:hover,
.site-select__option:focus-visible {
  border-color: rgba(116, 102, 185, 0.48);
  background: linear-gradient(110deg, rgba(114, 31, 148, 0.2), rgba(25, 100, 134, 0.14));
  color: #fff;
  transform: translateX(2px);
}
.site-select__option.is-selected {
  border-color: rgba(81, 191, 218, 0.52);
  background: linear-gradient(110deg, rgba(112, 31, 150, 0.27), rgba(18, 100, 139, 0.22));
  color: #fff;
}
.site-select__option.is-selected b {
  border-color: #57cee8;
  background: rgba(47, 148, 178, 0.14);
  color: #72ddf4;
  box-shadow: 0 0 12px rgba(87, 206, 232, 0.12);
}
.site-select__option.is-placeholder:not(.is-selected) {
  color: #756b7c;
}
.site-select__option:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}
@media (max-width: 520px) {
  .site-select__menu {
    max-height: 46vh;
  }
  .site-select__option {
    min-height: 44px;
    font-size: 12px;
  }
}

.form__success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(193, 31, 43, 0.12);
  border: 1px solid rgba(193, 31, 43, 0.4);
  font-size: 14px;
  color: var(--cream);
}
.form__success.is-visible {
  display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  position: relative;
  border-top: 1px solid rgba(112, 79, 151, 0.24);
  padding: 52px 0 24px;
  background:
    radial-gradient(ellipse at 5% 0, rgba(75, 22, 111, 0.18), transparent 55%),
    linear-gradient(115deg, #08040f, #040b13);
  font-family: 'Manrope', sans-serif;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(133, 67, 199, 0.65) 30%,
    rgba(69, 166, 197, 0.55) 70%,
    transparent
  );
  pointer-events: none;
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.6fr);
  align-items: start;
  gap: 36px 64px;
}
.footer__brand-block {
  min-width: 0;
}
.footer .brand--footer {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  max-width: 100%;
}
.footer .brand__logo {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  object-fit: contain;
}
.footer__identity {
  display: grid;
  gap: 6px;
}
.footer__identity strong {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: var(--cream);
}
.footer__identity small {
  font-size: 8px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9b91ad;
}
.footer__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: fit-content;
  margin-top: 23px;
  padding: 7px 0;
  color: #94cfdf;
  font-size: 11px;
  font-weight: 600;
  transition: color 0.25s var(--ease);
}
.footer__contact span {
  font-size: 16px;
  transition: transform 0.25s var(--ease);
}
.footer__contact:hover {
  color: #e4f7ff;
}
.footer__contact:hover span {
  transform: translate(2px, -2px);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
  min-width: 0;
}
.footer__label {
  grid-column: 1/-1;
  margin: 0 0 8px;
  padding-left: 13px;
  color: #8f819f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.footer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid transparent;
  border-bottom-color: rgba(113, 92, 141, 0.2);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: #bcb3c9;
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.footer__nav a > span:last-child {
  flex-shrink: 0;
  color: #788da6;
  font-size: 16px;
  opacity: 0.65;
  transition:
    transform 0.25s var(--ease),
    color 0.25s var(--ease),
    opacity 0.25s var(--ease);
}
.footer__nav a:hover,
.footer__nav a:focus-visible,
.footer__nav a[aria-current='page'] {
  border-color: rgba(103, 95, 162, 0.34);
  background: linear-gradient(110deg, rgba(66, 27, 94, 0.3), rgba(19, 63, 84, 0.22));
  color: #f7f2fc;
}
.footer__nav a:hover > span:last-child,
.footer__nav a:focus-visible > span:last-child,
.footer__nav a[aria-current='page'] > span:last-child {
  color: #78d5e9;
  opacity: 1;
  transform: translate(2px, -2px);
}
.footer__contact:focus-visible,
.footer__nav a:focus-visible {
  outline: 2px solid #64c8e0;
  outline-offset: 3px;
}
.footer__meta {
  grid-column: 1/-1;
  width: 100%;
  margin-top: 4px;
  border-top: 1px solid rgba(113, 92, 141, 0.2);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px 28px;
  flex-wrap: wrap;
}
.footer__meta p {
  margin: 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.8;
  color: #93879f;
}
.footer__note {
  max-width: 62ch;
  text-align: right;
}
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__brand-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .footer__contact {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .footer {
    padding-top: 38px;
  }
  .footer__brand-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer .brand__logo {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .footer__identity strong {
    font-size: 21px;
  }
  .footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 12px;
  }
  .footer__nav a {
    padding: 11px 10px;
    font-size: 12px;
  }
  .footer__label {
    padding-left: 10px;
  }
  .footer__meta {
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
  }
  .footer__note {
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer__contact,
  .footer__contact span,
  .footer__nav a,
  .footer__nav a > span:last-child {
    transition: none;
  }
  .footer__contact:hover span,
  .footer__nav a:hover > span:last-child,
  .footer__nav a:focus-visible > span:last-child {
    transform: none;
  }
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    visibility 0.25s;
  z-index: 90;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--red-bright);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 92;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 8px 17px 8px 8px;
  border: 1px solid rgba(111, 91, 177, 0.5);
  border-radius: 32px;
  background:
    radial-gradient(circle at 0 50%, rgba(57, 185, 132, 0.18), transparent 44%),
    linear-gradient(110deg, rgba(31, 6, 53, 0.98), rgba(12, 20, 56, 0.98));
  color: #fff;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(90, 42, 176, 0.15);
  text-decoration: none;
  transform: translateZ(0);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(80, 203, 153, 0.16);
  border-radius: inherit;
  opacity: 0.65;
  animation: whatsappPulse 3s ease-out infinite;
  pointer-events: none;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  border-color: rgba(93, 213, 166, 0.72);
  color: #fff;
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.54),
    0 0 36px rgba(58, 183, 135, 0.18),
    0 0 26px rgba(99, 49, 188, 0.2);
  outline: 0;
  transform: translateY(-3px);
}
.whatsapp-float__icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(138, 255, 207, 0.55);
  border-radius: 50%;
  background: linear-gradient(145deg, #2fc77f, #168e5d);
  color: #fff;
  font-family: 'Oxanium', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.22),
    0 0 20px rgba(48, 194, 126, 0.2);
}
.whatsapp-float__icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.whatsapp-float__copy {
  display: grid;
  gap: 1px;
  min-width: 92px;
}
.whatsapp-float__copy strong {
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.whatsapp-float__copy small {
  color: #968ba2;
  font-size: 8px;
  letter-spacing: 0.025em;
}
.to-top {
  bottom: 94px;
}
@keyframes whatsappPulse {
  0% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  65%,
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before {
    animation: none;
  }
}

/* ========================================================================== 
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    order: -1;
  }
  .about__inner {
    grid-template-columns: 1fr;
  }
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .card-row {
    grid-template-columns: 1fr 1fr;
  }
  .grid-6 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.2s var(--ease),
      transform 0.2s var(--ease),
      visibility 0.2s;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle {
    display: flex;
  }
  .site-header__actions .btn {
    display: none;
  }

  .card-row {
    grid-template-columns: 1fr;
  }
  .grid-6 {
    grid-template-columns: 1fr;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero__stats {
    gap: 22px;
  }
  .section {
    padding: 64px 0;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    min-height: 54px;
    padding: 5px;
    border-radius: 50%;
  }
  .whatsapp-float__icon {
    width: 42px;
    height: 42px;
  }
  .whatsapp-float__copy {
    display: none;
  }
  .to-top {
    right: 21px;
    bottom: 82px;
  }
}

/* Final brand-layer overrides */
.btn--primary {
  background: linear-gradient(110deg, #6419d8, #bd28da 58%, #2173ff);
  box-shadow: 0 10px 30px rgba(123, 43, 220, 0.24);
}
.btn--primary:hover {
  background: linear-gradient(110deg, #7921ef, #df31e8 58%, #3588ff);
  box-shadow: 0 12px 38px rgba(123, 43, 220, 0.45);
}
.eyebrow,
.tile__num {
  color: var(--red-bright);
}
.about__points li::before,
.contact__social a:hover,
.to-top {
  background: linear-gradient(135deg, var(--purple), var(--red));
}
.ring-mark__circle--spin {
  stroke: var(--purple);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
}

/* Advanced neon cocktail animation */
.hero__visual {
  position: relative;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.45));
}
.glass-anim {
  overflow: visible;
  animation: glassFloat 5.8s ease-in-out infinite;
  transform-origin: 50% 80%;
}
.glass-shadow {
  fill: none;
  stroke: #732cff;
  stroke-width: 10;
  opacity: 0.22;
  filter: url(#neonGlow);
}
.glass-outline,
.glass-base,
.glass-stem {
  stroke: url(#liquidGrad);
  stroke-width: 3.2;
  filter: url(#neonGlow);
}
.glass-outline {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation:
    drawGlass 1.8s cubic-bezier(0.22, 0.8, 0.3, 1) forwards,
    glassPulse 3.6s ease-in-out 2s infinite;
}
.glass-base,
.glass-stem {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawGlass 0.8s ease-out 1.25s forwards;
}
.liquid {
  opacity: 0.28;
  transform: translateY(235px);
  animation:
    pourFill 3.4s cubic-bezier(0.2, 0.75, 0.22, 1) 0.65s forwards,
    liquidGlow 3s ease-in-out 4s infinite;
}
.wave {
  transform: translateY(235px);
  transform-origin: center;
  animation: waveRise 3.4s cubic-bezier(0.2, 0.75, 0.22, 1) 0.65s forwards;
}
.wave--back {
  opacity: 0.85;
  animation:
    waveRise 3.4s cubic-bezier(0.2, 0.75, 0.22, 1) 0.65s forwards,
    waveBack 4.2s ease-in-out 4s infinite;
}
.wave--front {
  opacity: 0.82;
  animation:
    waveRise 3.4s cubic-bezier(0.2, 0.75, 0.22, 1) 0.65s forwards,
    waveFront 3.4s ease-in-out 4s infinite;
}
.liquid-surface {
  filter: url(#neonGlow);
  animation:
    surfaceIn 3.4s cubic-bezier(0.2, 0.75, 0.22, 1) 0.65s forwards,
    surfacePulse 2.2s ease-in-out 4s infinite;
}
.pour-stream {
  fill: none;
  stroke: #3ee4ff;
  stroke-width: 4;
  stroke-linecap: round;
  opacity: 0;
  animation: streamCycle 6.8s ease-in-out 0.15s infinite;
}
.pour-stream circle {
  fill: #e838ff;
  stroke: none;
}
.bubbles circle {
  fill: #74f1ff;
  opacity: 0;
}
.bubbles circle:nth-child(1) {
  animation: bubbleRise 3.1s ease-in 3.5s infinite;
}
.bubbles circle:nth-child(2) {
  animation: bubbleRise 3.7s ease-in 4.3s infinite;
}
.bubbles circle:nth-child(3) {
  animation: bubbleRise 4.2s ease-in 3.8s infinite;
}
.bubbles circle:nth-child(4) {
  animation: bubbleRise 3.4s ease-in 5s infinite;
}
.bubbles circle:nth-child(5) {
  animation: bubbleRise 4.5s ease-in 4.8s infinite;
}
.glass-shine {
  opacity: 0;
  mix-blend-mode: screen;
  animation: shineSweep 4.8s ease-in-out 3.7s infinite;
}
.garnish {
  transform-origin: 228px 70px;
  animation:
    garnishDrop 0.75s cubic-bezier(0.18, 0.9, 0.25, 1.35) 3.1s both,
    garnishTurn 8s ease-in-out 4s infinite;
}
.drip circle {
  fill: #44e5ff;
  filter: url(#neonGlow);
}
@keyframes drawGlass {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes glassPulse {
  50% {
    opacity: 0.72;
    filter: url(#neonGlow);
  }
}
@keyframes glassFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.35deg);
  }
  50% {
    transform: translateY(-11px) rotate(0.55deg);
  }
}
@keyframes waveRise {
  from {
    transform: translateY(235px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes waveBack {
  0%,
  100% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(12px) translateY(3px);
  }
}
@keyframes waveFront {
  0%,
  100% {
    transform: translateX(10px) translateY(2px);
  }
  50% {
    transform: translateX(-14px) translateY(-3px);
  }
}
@keyframes liquidGlow {
  50% {
    opacity: 0.48;
  }
}
@keyframes surfacePulse {
  50% {
    transform: scaleX(0.96);
    opacity: 0.72;
  }
}
@keyframes streamCycle {
  0%,
  8%,
  55%,
  100% {
    opacity: 0;
    stroke-dasharray: 0 170;
    stroke-dashoffset: 0;
  }
  14% {
    opacity: 1;
    stroke-dasharray: 85 170;
  }
  30% {
    opacity: 1;
    stroke-dasharray: 150 170;
    stroke-dashoffset: -12;
  }
  46% {
    opacity: 0.85;
    stroke-dasharray: 12 170;
    stroke-dashoffset: -155;
  }
}
@keyframes bubbleRise {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.5);
  }
  15% {
    opacity: 0.85;
  }
  80% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: translateY(-135px) scale(1.15);
  }
}
@keyframes shineSweep {
  0%,
  20%,
  100% {
    opacity: 0;
    transform: translateX(-70px) rotate(12deg);
  }
  42% {
    opacity: 0.6;
  }
  70% {
    opacity: 0;
    transform: translateX(190px) rotate(12deg);
  }
}
@keyframes garnishDrop {
  from {
    opacity: 0;
    transform: translate(25px, -40px) rotate(90deg) scale(0.6);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes garnishTurn {
  0%,
  100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(18deg);
  }
}

/* More expressive typography */
h1,
h2,
.display,
.page-hero h1 {
  font-family: var(--font-display);
  text-shadow: 0 8px 28px rgba(80, 38, 165, 0.22);
}
.nav a,
.btn,
.eyebrow,
.link-arrow {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
}
.hero__copy .display span:first-child,
.page-hero h1 {
  letter-spacing: 0.045em;
}

/* Page-to-page transition */
body > main,
body > .site-header,
body > header {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: opacity, transform;
}
body.page-ready > main,
body.page-ready > .site-header,
body.page-ready > header {
  opacity: 1;
  transform: none;
}
body.page-leaving > main,
body.page-leaving > .site-header,
body.page-leaving > header {
  opacity: 0;
  transform: translateY(-14px) scale(0.992);
  transition-duration: 0.42s;
}
.page-transition {
  position: fixed;
  inset: -10%;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: linear-gradient(115deg, #05030d 20%, #180840 48%, #081c48 78%);
  transform: translateX(-115%) skewX(-8deg);
  transition: transform 1.15s cubic-bezier(0.72, 0, 0.18, 1);
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
}
.page-transition::before,
.page-transition::after {
  content: '';
  position: absolute;
  inset: 0;
}
.page-transition::before {
  background: linear-gradient(
    90deg,
    transparent 30%,
    rgba(242, 43, 213, 0.25) 48%,
    rgba(56, 219, 255, 0.3) 52%,
    transparent 70%
  );
  transform: translateX(-45%);
  animation: transitionGlow 2.2s linear infinite;
}
.page-transition::after {
  inset: auto 0 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f22bd5, #38dbff, transparent);
  box-shadow: 0 0 24px #9d2cff;
}
.page-transition img {
  position: relative;
  z-index: 2;
  width: 110px;
  height: 110px;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.65) rotate(-12deg);
  filter: drop-shadow(0 0 20px rgba(153, 63, 255, 0.85));
  transition:
    opacity 0.42s ease 0.38s,
    transform 0.78s cubic-bezier(0.18, 0.9, 0.25, 1.3) 0.3s;
}
.page-transition__beam {
  position: absolute;
  z-index: 1;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(93, 186, 255, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 50px rgba(157, 44, 255, 0.28),
    inset 0 0 45px rgba(56, 219, 255, 0.12);
  opacity: 0;
  transform: scale(0.4);
  transition: 0.45s ease 0.18s;
}
body.page-leaving .page-transition {
  transform: translateX(0) skewX(0);
  pointer-events: all;
}
body.page-leaving .page-transition img {
  opacity: 1;
  transform: scale(1) rotate(0);
}
body.page-leaving .page-transition__beam {
  opacity: 1;
  transform: scale(1);
  animation: transitionRing 1.8s linear infinite;
}
@keyframes transitionGlow {
  to {
    transform: translateX(45%);
  }
}
@keyframes transitionRing {
  to {
    transform: scale(1) rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  body > main,
  body > .site-header,
  body > header {
    opacity: 1 !important;
    transform: none !important;
  }
  .page-transition {
    display: none !important;
  }
}

/* Individual animated emblems for inner-page heroes */
.page-hero .wrap {
  position: relative;
  padding-right: 390px;
}
.page-emblem {
  position: absolute;
  right: 25px;
  top: 50%;
  width: 290px;
  height: 290px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 49, 224, 0.28), rgba(9, 5, 24, 0.2) 58%, transparent 70%);
  filter: drop-shadow(0 0 28px rgba(88, 70, 255, 0.28));
  animation: emblemFloat 5.5s ease-in-out infinite;
}
.page-emblem::before,
.page-emblem::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74, 213, 255, 0.28);
}
.page-emblem::before {
  inset: 22px;
  box-shadow: inset 0 0 35px rgba(157, 44, 255, 0.14);
  animation: emblemSpin 13s linear infinite;
}
.page-emblem::after {
  inset: 48px;
  border-color: rgba(238, 48, 224, 0.3);
  border-style: dashed;
  animation: emblemSpin 9s linear reverse infinite;
}
.emblem-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border-top: 2px solid #38dbff;
  border-right: 2px solid transparent;
  border-bottom: 2px solid #d926ee;
  border-left: 2px solid transparent;
  filter: drop-shadow(0 0 8px #8e49ff);
  animation: emblemSpin 7s linear infinite;
}
.page-emblem > i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #53e8ff;
  box-shadow: 0 0 12px #53e8ff;
}
.page-emblem > i:nth-last-child(3) {
  top: 25px;
  left: 88px;
  animation: particleBob 2.5s ease-in-out infinite;
}
.page-emblem > i:nth-last-child(2) {
  right: 27px;
  bottom: 92px;
  background: #ee42ed;
  animation: particleBob 3s ease-in-out 0.4s infinite;
}
.page-emblem > i:nth-last-child(1) {
  left: 42px;
  bottom: 60px;
  width: 5px;
  height: 5px;
  animation: particleBob 2.2s ease-in-out 0.8s infinite;
}
.icon-cocktail {
  position: relative;
  width: 115px;
  height: 95px;
  border: 5px solid #b878ff;
  border-top-color: #45e7ff;
  clip-path: polygon(0 0, 100% 0, 64% 72%, 64% 100%, 88% 100%, 88% 100%, 36% 100%, 36% 96%, 48% 96%, 48% 72%);
  filter: drop-shadow(0 0 9px #7b45ff);
  animation: iconPulse 2.8s ease-in-out infinite;
}
.icon-cocktail::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 35px;
  height: 5px;
  background: #38dbff;
  box-shadow: 0 0 12px #38dbff;
  animation: miniWave 2s ease-in-out infinite;
}
.icon-blueprint {
  width: 112px;
  height: 112px;
  border: 4px solid #55dbff;
  background:
    linear-gradient(rgba(78, 198, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 198, 255, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  box-shadow:
    0 0 20px rgba(56, 219, 255, 0.55),
    inset 0 0 22px rgba(157, 44, 255, 0.22);
  animation: iconPulse 3s ease-in-out infinite;
}
.blueprint-pen {
  position: absolute;
  width: 14px;
  height: 128px;
  border-radius: 8px;
  background: linear-gradient(#f044e9, #794aff, #48e7ff);
  transform: rotate(42deg);
  box-shadow: 0 0 15px #a64cff;
  animation: penDraw 3.5s ease-in-out infinite;
}
.icon-cart {
  position: relative;
  width: 135px;
  height: 76px;
  border: 5px solid #a960ff;
  border-top: 8px solid #43e4ff;
  border-radius: 4px 4px 14px 14px;
  box-shadow: 0 0 18px rgba(125, 74, 255, 0.7);
  animation: cartMove 3.2s ease-in-out infinite;
}
.icon-cart::before,
.icon-cart::after {
  content: '';
  position: absolute;
  bottom: -28px;
  width: 22px;
  height: 22px;
  border: 4px solid #42e4ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #42e4ff;
}
.icon-cart::before {
  left: 12px;
}
.icon-cart::after {
  right: 12px;
}
.icon-cart b {
  position: absolute;
  left: 50%;
  top: -48px;
  width: 36px;
  height: 43px;
  border: 4px solid #f03ee7;
  border-bottom-width: 10px;
  clip-path: polygon(0 0, 100% 0, 70% 65%, 70% 100%, 30% 100%, 30% 65%);
  transform: translateX(-50%);
  filter: drop-shadow(0 0 7px #f03ee7);
}
.emblem-logo {
  position: relative;
  z-index: 2;
  width: 145px;
  height: 145px;
  object-fit: contain;
  filter: drop-shadow(0 0 17px rgba(255, 255, 255, 0.48)) drop-shadow(0 0 35px rgba(157, 44, 255, 0.65));
  animation: logoBreathe 3.4s ease-in-out infinite;
}
.icon-aperture {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 10deg,
    #41e2ff 0 8deg,
    transparent 9deg 46deg,
    #9a4cff 47deg 55deg,
    transparent 56deg 90deg
  );
  box-shadow:
    0 0 20px #8646ff,
    inset 0 0 26px #05030d;
  animation: apertureSpin 8s linear infinite;
}
.icon-aperture::after {
  content: '';
  position: absolute;
  inset: 101px;
  border: 6px solid #f044e9;
  border-radius: 50%;
  background: #070411;
  box-shadow: 0 0 13px #f044e9;
}
@keyframes emblemFloat {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-10px);
  }
}
@keyframes emblemSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes particleBob {
  50% {
    transform: translateY(-13px) scale(1.3);
    opacity: 0.55;
  }
}
@keyframes iconPulse {
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 15px #8c48ff);
  }
}
@keyframes miniWave {
  50% {
    transform: translateY(5px) scaleX(0.88);
  }
}
@keyframes penDraw {
  0%,
  100% {
    transform: rotate(42deg) translateY(-8px);
  }
  50% {
    transform: rotate(42deg) translateY(12px);
  }
}
@keyframes cartMove {
  0%,
  100% {
    transform: translateX(-7px);
  }
  50% {
    transform: translateX(7px);
  }
}
@keyframes logoBreathe {
  50% {
    transform: scale(1.08) rotate(2deg);
  }
}
@keyframes apertureSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 900px) {
  .page-hero .wrap {
    padding-right: 310px;
  }
  .page-emblem {
    right: 10px;
    width: 240px;
    height: 240px;
    transform: translateY(-50%) scale(0.82);
  }
}
@media (max-width: 700px) {
  .page-hero .wrap {
    padding-right: 24px;
    padding-bottom: 250px;
  }
  .page-emblem {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translate(50%, 0) scale(0.72);
  }
  @keyframes emblemFloat {
    0%,
    100% {
      transform: translate(50%, 0) scale(0.72);
    }
    50% {
      transform: translate(50%, -9px) scale(0.72);
    }
  }
}

/* Dark-plum palette */
:root {
  --ink: #020107;
  --ink-soft: #08050f;
  --ink-raise: #10091a;
  --red: #541078;
  --red-bright: #3190ad;
  --purple: #741779;
  --line: rgba(213, 194, 231, 0.07);
  --line-strong: rgba(103, 57, 130, 0.36);
}
body {
  background:
    radial-gradient(circle at 85% 5%, rgba(35, 23, 87, 0.18), transparent 27%),
    radial-gradient(circle at 8% 50%, rgba(76, 16, 88, 0.11), transparent 23%), #020107;
}
.site-header {
  background: rgba(2, 1, 7, 0.94);
}
.text-red {
  background: linear-gradient(90deg, #a642a8, #6d2ca2, #2b809e);
  -webkit-background-clip: text;
  background-clip: text;
}
.btn--primary {
  background: linear-gradient(110deg, #310759, #66106e 58%, #103c72);
  box-shadow: 0 10px 30px rgba(39, 10, 68, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(110deg, #440a71, #801783 58%, #16518f);
  box-shadow: 0 12px 38px rgba(60, 14, 81, 0.48);
}
.hero__glow {
  background: radial-gradient(circle, rgba(56, 18, 105, 0.34), transparent 67%);
}
.page-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(44, 24, 105, 0.22), transparent 29%),
    linear-gradient(130deg, #020107, #0d0619 66%, #031025);
}
.page-card,
.glass-panel,
.form {
  background: linear-gradient(145deg, #0e0718, #040208);
}
.page-emblem {
  background: radial-gradient(circle, rgba(65, 21, 101, 0.24), rgba(5, 2, 12, 0.38) 58%, transparent 70%);
  filter: brightness(0.82) saturate(0.86) drop-shadow(0 0 25px rgba(42, 23, 80, 0.3));
}
.glass-anim {
  filter: brightness(0.82) saturate(0.9) drop-shadow(0 26px 44px rgba(0, 0, 0, 0.55));
}

/* Cinematic iris page transition */
.page-transition {
  inset: 0;
  transform: none;
  clip-path: circle(0 at 50% 50%);
  background: radial-gradient(circle at center, #23072f 0, #0c0416 32%, #020107 68%);
  transition: clip-path 1.28s cubic-bezier(0.72, 0, 0.18, 1);
  overflow: hidden;
}
.page-transition::before {
  inset: 50%;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 0 20vw rgba(47, 11, 67, 0.15),
    0 0 0 34vw rgba(18, 7, 38, 0.3),
    0 0 0 50vw rgba(1, 1, 6, 0.5);
  transform: none;
  animation: irisRings 2.4s ease-in-out infinite;
}
.page-transition::after {
  inset: 50% auto auto 50%;
  width: 64vmin;
  height: 64vmin;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(92, 44, 117, 0.45);
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, transparent 0 38deg, rgba(76, 31, 99, 0.18) 39deg 44deg);
  box-shadow:
    0 0 45px rgba(58, 21, 82, 0.42),
    inset 0 0 60px rgba(3, 1, 9, 0.8);
  animation: irisRotate 9s linear infinite;
}
.page-transition__beam {
  width: 240px;
  height: 240px;
  border-color: rgba(87, 44, 115, 0.45);
  box-shadow:
    0 0 38px rgba(70, 20, 89, 0.38),
    inset 0 0 35px rgba(30, 72, 101, 0.12);
}
.page-transition img {
  width: 105px;
  height: 105px;
  filter: brightness(0.88) drop-shadow(0 0 17px rgba(91, 37, 113, 0.75));
}
body.page-leaving .page-transition {
  transform: none;
  clip-path: circle(150vmax at 50% 50%);
}
@keyframes irisRings {
  50% {
    box-shadow:
      0 0 0 24vw rgba(47, 11, 67, 0.1),
      0 0 0 40vw rgba(18, 7, 38, 0.22),
      0 0 0 58vw rgba(1, 1, 6, 0.4);
  }
}
@keyframes irisRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Immersive mobile-bar home entrance */
.hero {
  min-height: calc(100vh - 105px);
  background-image:
    linear-gradient(
      90deg,
      rgba(2, 1, 7, 0.98) 0%,
      rgba(2, 1, 7, 0.88) 35%,
      rgba(2, 1, 7, 0.28) 64%,
      rgba(2, 1, 7, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(2, 1, 7, 0.88), transparent 42%), url('../images/mobile-bar-hero-v3.webp');
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 45%, rgba(27, 7, 43, 0.22) 70%, rgba(5, 24, 43, 0.15));
  pointer-events: none;
}
.hero__glow {
  top: auto;
  right: 8%;
  bottom: -280px;
  width: 720px;
  height: 720px;
  opacity: 0.5;
}
.hero__inner {
  min-height: inherit;
  grid-template-columns: 1.25fr 0.75fr;
}
.hero__copy {
  position: relative;
  z-index: 3;
  padding: 34px 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.75);
}
/* Home display title */
.hero__copy .display {
  font-size: clamp(54px, 7vw, 96px);
  max-width: 760px;
}
.hero__copy .display .hero__tagline {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-top: 20px;
  padding: 5px 0 6px 20px;
  border-left: 3px solid #4dc9e5;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(24px, 3.15vw, 43px);
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.13;
  text-shadow: 0 0 24px rgba(58, 170, 202, 0.22);
  filter: drop-shadow(0 8px 22px rgba(14, 5, 27, 0.5));
}
.hero__copy .display .hero__tagline::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: linear-gradient(90deg, rgba(80, 211, 235, 0.7), rgba(139, 68, 185, 0.42), transparent);
}

/* Shared inner-page hero typography, based on the home hero. */
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(92, 194, 221, 0.2);
  border-radius: 999px;
  background: rgba(5, 16, 27, 0.5);
  color: #9addec;
  font-size: 9px;
  letter-spacing: 0.18em;
  backdrop-filter: blur(8px);
}
.page-hero .eyebrow::before {
  content: '';
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5bdaf4;
  box-shadow: 0 0 11px rgba(91, 218, 244, 0.78);
}
.page-hero .page-hero-title {
  max-width: 850px;
  margin: 0;
  font-size: clamp(44px, 5.8vw, 78px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.94;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.9);
}
.page-hero-title__lead {
  display: block;
}
.page-hero .page-hero-title__accent {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 17px;
  padding: 6px 0 8px 18px;
  border-left: 3px solid #4dc9e5;
  color: transparent;
  background: linear-gradient(90deg, #59dff5, #3299be 66%, #7654ae);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: 0.085em;
  line-height: 1.13;
  text-shadow: none;
}
.page-hero-title__accent::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(90deg, rgba(82, 217, 242, 0.78), rgba(108, 75, 166, 0.48), transparent);
}
.page-hero .wrap > p:last-child {
  max-width: 610px;
  margin-top: 29px;
  color: #d1c7dc;
  font-size: 15px;
  line-height: 1.8;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
}
.hero__lede {
  font-size: 17px;
  line-height: 1.75;
  color: #d4cddd;
  max-width: 54ch;
}
.hero__promise {
  display: block;
  margin-top: 13px;
  color: #d9d1e3;
  font-size: 0.92em;
  line-height: 1.65;
}
.hero__promise strong {
  color: #91d7e7;
  font-weight: 600;
}
.hero__stats {
  width: max-content;
  max-width: 100%;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 2, 9, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}
.hero__visual {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-content: flex-end;
  opacity: 0.68;
  transform: translate(30px, 45px) scale(0.72);
  transform-origin: bottom right;
  mix-blend-mode: screen;
}
.hero__visual::before {
  content: 'SIGNATURE POUR';
  position: absolute;
  right: 50px;
  bottom: 55px;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Oxanium', sans-serif;
  font-size: 9px;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}
@media (max-width: 980px) {
  .hero {
    min-height: 780px;
    background-position: 64% center;
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    position: absolute;
    right: 8px;
    bottom: 10px;
    width: 220px;
    order: initial;
    opacity: 0.48;
    transform: scale(0.62);
    transform-origin: bottom right;
  }
  .hero__copy {
    max-width: 670px;
  }
  .hero__stats {
    margin-right: 170px;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 760px;
    background-image:
      linear-gradient(180deg, rgba(2, 1, 7, 0.76), rgba(2, 1, 7, 0.94) 68%, #020107),
      url('../images/mobile-bar-hero-v3.webp');
    background-position: 67% center;
  }
  .hero__copy .display {
    font-size: 50px;
  }
  .hero__copy .display .hero__tagline {
    margin-top: 15px;
    padding-left: 14px;
    border-left-width: 2px;
    font-size: clamp(21px, 7.2vw, 30px);
    letter-spacing: 0.055em;
    line-height: 1.18;
  }
  .hero__copy .display .hero__tagline::after {
    left: 14px;
  }
  .hero__lede {
    font-size: 15px;
  }
  .hero__visual {
    display: none;
  }
  .hero__stats {
    width: 100%;
    margin-right: 0;
    padding: 16px;
    gap: 18px;
  }
  .hero__stats strong {
    font-size: 24px;
  }
  .page-hero .page-hero-title {
    font-size: clamp(32px, 9.4vw, 44px);
    letter-spacing: 0.018em;
  }
  .page-hero .page-hero-title__accent {
    margin-top: 13px;
    padding-left: 13px;
    border-left-width: 2px;
    font-size: clamp(17px, 5.5vw, 24px);
    letter-spacing: 0.055em;
  }
  .page-hero-title__accent::after {
    left: 13px;
  }
  .page-hero .wrap > p:last-child {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Professional photographic heroes for inner pages */
.page-services .page-hero,
.page-consulting .page-hero,
.page-mobile-bar .page-hero,
.page-crew-services .page-hero,
.page-about .page-hero,
.page-gallery .page-hero {
  min-height: 570px;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  position: relative;
}
.page-services .page-hero::before,
.page-consulting .page-hero::before,
.page-mobile-bar .page-hero::before,
.page-crew-services .page-hero::before,
.page-about .page-hero::before,
.page-gallery .page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(2, 1, 7, 0.98) 0%,
      rgba(2, 1, 7, 0.88) 38%,
      rgba(2, 1, 7, 0.32) 68%,
      rgba(2, 1, 7, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(2, 1, 7, 0.72), transparent 55%);
}
.page-services .page-hero {
  background-image: url('../images/hero-services.webp');
}
.page-consulting .page-hero {
  background-image: url('../images/hero-consulting.webp');
}
.page-mobile-bar .page-hero {
  min-height: 640px;
  background-image: url('../images/hero-mobile-bar-vibenpour.jpeg');
  background-position: center 27%;
}
.page-mobile-bar .page-hero::before {
  background:
    linear-gradient(
      90deg,
      rgba(2, 1, 7, 0.96) 0%,
      rgba(2, 1, 7, 0.82) 34%,
      rgba(2, 1, 7, 0.2) 57%,
      rgba(2, 1, 7, 0.025) 100%
    ),
    linear-gradient(0deg, rgba(2, 1, 7, 0.58), transparent 48%);
}
.page-crew-services .page-hero {
  background-image: url('../images/consulting-service-flow.jpg');
  background-position: center 58%;
}
.page-about .page-hero {
  background-image: url('../images/hero-about.webp');
}
.page-gallery .page-hero {
  background-image: url('../images/mobile-drinks.jpg');
  background-position: center 65%;
}
.page-services .page-hero .wrap,
.page-consulting .page-hero .wrap,
.page-mobile-bar .page-hero .wrap,
.page-crew-services .page-hero .wrap,
.page-about .page-hero .wrap,
.page-gallery .page-hero .wrap {
  z-index: 2;
}
.page-services .page-emblem,
.page-consulting .page-emblem,
.page-mobile-bar .page-emblem,
.page-crew-services .page-emblem,
.page-about .page-emblem,
.page-gallery .page-emblem {
  right: 16px;
  opacity: 0.38;
  transform: translateY(-50%) scale(0.58);
  animation: none;
  mix-blend-mode: screen;
}
@media (max-width: 700px) {
  .page-services .page-hero,
  .page-consulting .page-hero,
  .page-mobile-bar .page-hero,
  .page-crew-services .page-hero,
  .page-about .page-hero,
  .page-gallery .page-hero {
    min-height: 620px;
    background-position: 68% center;
  }
  .page-mobile-bar .page-hero {
    min-height: 660px;
    background-position: 64% 22%;
  }
  .page-services .page-hero::before,
  .page-consulting .page-hero::before,
  .page-crew-services .page-hero::before,
  .page-about .page-hero::before,
  .page-gallery .page-hero::before {
    background: linear-gradient(180deg, rgba(2, 1, 7, 0.62), rgba(2, 1, 7, 0.95) 72%, #020107);
  }
  .page-mobile-bar .page-hero::before {
    background: linear-gradient(
      180deg,
      rgba(2, 1, 7, 0.06),
      rgba(2, 1, 7, 0.2) 42%,
      rgba(2, 1, 7, 0.9) 78%,
      #020107 100%
    );
  }
  .page-services .page-hero .wrap,
  .page-consulting .page-hero .wrap,
  .page-mobile-bar .page-hero .wrap,
  .page-crew-services .page-hero .wrap,
  .page-about .page-hero .wrap,
  .page-gallery .page-hero .wrap {
    padding-bottom: 50px;
  }
  .page-services .page-emblem,
  .page-consulting .page-emblem,
  .page-mobile-bar .page-emblem,
  .page-crew-services .page-emblem,
  .page-about .page-emblem,
  .page-gallery .page-emblem {
    display: none;
  }
}

/* Client event-bar customizer */
.bar-builder {
  background: radial-gradient(circle at 88% 8%, rgba(65, 20, 84, 0.2), transparent 24%), #05020a;
  border-block: 1px solid var(--line);
}
.builder-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 55px;
  align-items: end;
  margin-bottom: 35px;
}
.builder-heading > p {
  color: var(--cream-dim);
  margin: 0;
}
.builder-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px;
  border: 1px solid var(--line);
  background: #08040e;
  width: max-content;
  max-width: 100%;
}
.builder-tab {
  border: 0;
  background: transparent;
  color: var(--cream-faint);
  padding: 14px 23px;
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s;
}
.builder-tab:hover {
  color: var(--cream);
}
.builder-tab.is-active {
  color: #fff;
  background: linear-gradient(110deg, #310759, #66106e 58%, #103c72);
  box-shadow: 0 8px 25px rgba(30, 5, 55, 0.45);
}
.builder-panel {
  display: none;
}
.builder-panel.is-active {
  display: block;
  animation: builderPanelIn 0.45s ease both;
}
.builder-form {
  padding: 32px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(15, 7, 25, 0.96), rgba(4, 2, 8, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.builder-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-bottom: 30px;
}
.builder-fields label,
.builder-notes {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.builder-fields input,
.builder-fields select,
.builder-notes textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  background: #040208;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.builder-fields input:focus,
.builder-fields select:focus,
.builder-notes textarea:focus {
  border-color: #693080;
  box-shadow: 0 0 0 3px rgba(80, 27, 103, 0.13);
}
.builder-fields label {
  position: relative;
}
.builder-fields label.dropdown-open {
  z-index: 75;
}
.builder-fields select.builder-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.builder-custom-select {
  position: relative;
  width: 100%;
  margin-top: 8px;
  font-family: var(--font-body);
  letter-spacing: normal;
  text-transform: none;
}
.builder-custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  height: 47px;
  padding: 0 14px;
  border: 1px solid rgba(94, 67, 115, 0.55);
  border-radius: 3px;
  background: linear-gradient(110deg, #07030d, #070916);
  color: #d8cedf;
  font-family: var(--font-body);
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  outline: 0;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    color 0.25s;
}
.builder-custom-select__trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.builder-custom-select__trigger i {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin: -5px 2px 0 0;
  border-right: 1px solid #62c5dc;
  border-bottom: 1px solid #a35bb7;
  transform: rotate(45deg);
  transition: transform 0.36s var(--ease);
}
.builder-custom-select__trigger:hover,
.builder-custom-select__trigger:focus-visible,
.builder-custom-select.is-open .builder-custom-select__trigger {
  border-color: rgba(112, 66, 139, 0.82);
  box-shadow:
    0 0 0 3px rgba(82, 28, 105, 0.12),
    0 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.builder-custom-select.is-open .builder-custom-select__trigger i {
  margin-top: 5px;
  transform: rotate(225deg);
}
.builder-custom-select.is-disabled {
  opacity: 0.48;
}
.builder-custom-select.is-disabled .builder-custom-select__trigger {
  cursor: not-allowed;
}
.builder-custom-select__menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 7px);
  left: 0;
  width: 100%;
  max-height: min(360px, 50vh);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 7px;
  border: 1px solid rgba(103, 66, 132, 0.68);
  border-radius: 5px;
  background-color: #0d0716;
  background-image: radial-gradient(circle at 0 0, rgba(111, 35, 136, 0.18), transparent 40%);
  box-shadow:
    0 26px 65px rgba(0, 0, 0, 0.66),
    0 0 32px rgba(53, 112, 151, 0.08);
  transform-origin: top;
}
.builder-custom-select__menu[hidden] {
  display: none;
}
.builder-suggestion-menu {
  top: calc(100% + 7px);
  max-height: 310px;
  overflow: auto;
  animation: builderSuggestionIn 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.builder-suggestion-menu__empty {
  margin: 0;
  padding: 12px 10px;
  color: #766b80;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}
.builder-custom-select__option {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 43px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: #e6deed;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.builder-custom-select__option b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(98, 95, 148, 0.3);
  border-radius: 50%;
  color: #746b80;
  font-family: 'Oxanium', sans-serif;
  font-size: 7px;
  font-weight: 700;
}
.builder-custom-select__option span {
  overflow: hidden;
  font-size: 10px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.builder-custom-select__option:hover,
.builder-custom-select__option:focus-visible {
  border-color: rgba(103, 93, 161, 0.38);
  background: #261332;
  color: #fff;
  outline: 0;
  transform: translateX(2px);
}
.builder-custom-select__option.is-selected {
  border-color: rgba(83, 174, 200, 0.42);
  background: #302043;
  color: #fff;
}
.builder-custom-select__option.is-selected b {
  border-color: #67c4da;
  background: rgba(43, 129, 158, 0.13);
  color: #74d0e4;
}
@keyframes builderSuggestionIn {
  from {
    opacity: 0;
    transform: translateY(-9px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.spirit-selector {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}
.spirit-selector legend {
  font-family: var(--font-display);
  font-size: 23px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 3px;
}
.selector-note {
  font-size: 13px;
  color: var(--cream-faint);
  margin: 0 0 18px;
}
.spirit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.spirit-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 95px;
  padding: 17px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  transition: 0.22s;
}
.spirit-control:hover {
  border-color: var(--line-strong);
  background: rgba(67, 20, 82, 0.08);
}
.spirit-control strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}
.spirit-control span {
  display: block;
  color: var(--cream-faint);
  font-size: 10px;
  margin-top: 3px;
}
.quantity-control {
  display: grid;
  grid-template-columns: 32px 42px 32px;
  align-items: center;
  flex: 0 0 auto;
}
.quantity-control button {
  height: 34px;
  border: 1px solid var(--line-strong);
  background: #0c0612;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s;
}
.quantity-control button:hover {
  background: #451054;
  border-color: #74227e;
}
.quantity-control input {
  width: 42px;
  height: 34px;
  border-block: 1px solid var(--line-strong);
  border-inline: 0;
  background: #030106;
  color: #fff;
  text-align: center;
  -moz-appearance: textfield;
}
.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.builder-notes {
  display: block;
  margin-bottom: 22px;
}
.builder-notes textarea {
  resize: vertical;
  text-transform: none;
  letter-spacing: normal;
}
.builder-summary,
.best-price-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
  padding: 17px 19px;
  border: 1px solid rgba(62, 133, 157, 0.25);
  background: rgba(22, 74, 91, 0.08);
}
.builder-summary span,
.best-price-note span {
  font-size: 12px;
  color: var(--cream-dim);
}
.builder-summary strong {
  font-size: 13px;
  color: #71b9cf;
}
.builder-summary b {
  font-weight: 700;
}
.best-price-note strong {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  color: #b65dba;
}
.builder-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.quote-email-status {
  position: relative;
  margin: 13px 0 0;
  padding: 12px 15px 12px 42px;
  border: 1px solid rgba(83, 130, 157, 0.32);
  border-radius: 3px;
  background: rgba(13, 52, 69, 0.12);
  color: #8fbaca;
  font-size: 10px;
  line-height: 1.45;
}
.quote-email-status::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}
.quote-email-status[data-state='sending']::before {
  border-right-color: transparent;
  animation: emailStatusSpin 0.8s linear infinite;
}
.quote-email-status[data-state='success'] {
  border-color: rgba(73, 164, 138, 0.4);
  background: rgba(26, 91, 71, 0.13);
  color: #74cdb1;
}
.quote-email-status[data-state='success']::before {
  width: 11px;
  height: 6px;
  border: 0;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  transform: translateY(-65%) rotate(-45deg);
}
.quote-email-status[data-state='error'] {
  border-color: rgba(185, 72, 100, 0.42);
  background: rgba(100, 23, 45, 0.14);
  color: #e08aa1;
}
.quote-email-status--preview {
  max-width: 1080px;
  margin: 16px auto 0;
}
.liquor-intro {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.liquor-intro h3 {
  font-family: var(--font-display);
  font-size: 30px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.liquor-intro p:last-child {
  max-width: 750px;
  color: var(--cream-dim);
  margin: 0;
}
.liquor-intro .eyebrow {
  margin-bottom: 7px;
}
@keyframes emailStatusSpin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Automated event quotation builder */
.quote-builder-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  margin: -8px -8px 28px;
  padding: 26px;
  border: 1px solid rgba(93, 72, 135, 0.34);
  background:
    radial-gradient(circle at 8% 0, rgba(116, 33, 132, 0.2), transparent 40%),
    linear-gradient(110deg, rgba(29, 10, 43, 0.8), rgba(6, 10, 25, 0.72));
}
.quote-builder-intro h3 {
  margin: 2px 0 7px;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.quote-builder-intro p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--cream-dim);
  font-size: 13px;
}
.quote-builder-intro ol {
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.quote-builder-intro li {
  display: grid;
  gap: 3px;
  min-width: 80px;
  padding: 10px 12px;
  border: 1px solid rgba(119, 96, 151, 0.28);
  background: rgba(5, 3, 12, 0.6);
  color: #9b91a9;
  font-family: 'Oxanium', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.quote-builder-intro li b {
  color: #70bdd3;
  font-size: 10px;
}
.quote-form-section {
  margin: 0 0 20px;
  padding: 24px;
  border: 1px solid rgba(106, 77, 130, 0.28);
  background: linear-gradient(145deg, rgba(16, 8, 25, 0.72), rgba(4, 3, 9, 0.64));
}
.quote-form-section > header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(113, 80, 137, 0.2);
}
.quote-form-section > header > span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(98, 190, 215, 0.38);
  border-radius: 50%;
  color: #6fc1d6;
  font-family: 'Oxanium', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.quote-form-section > header h4 {
  margin: 0 0 3px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.quote-form-section > header p {
  margin: 0;
  color: var(--cream-faint);
  font-size: 11px;
}
.quote-fields {
  margin-bottom: 0;
}
.quote-field--wide {
  grid-column: span 2;
}
.quote-fields--budget {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-bottom: 20px;
}
.money-field {
  display: grid;
  align-content: start;
}
.money-field > span:first-child {
  color: var(--cream-dim);
}
.money-input {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  height: 52px;
  margin-top: 8px;
  border: 1px solid rgba(103, 62, 128, 0.62);
  border-radius: 4px;
  background: linear-gradient(110deg, #07030d, #050713);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.025),
    0 12px 30px rgba(0, 0, 0, 0.16);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.money-input:focus-within {
  border-color: rgba(99, 196, 219, 0.72);
  box-shadow:
    0 0 0 3px rgba(54, 130, 157, 0.12),
    0 16px 38px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}
.money-input__currency {
  display: grid;
  place-items: center;
  min-width: 58px;
  padding: 0 14px;
  border-right: 1px solid rgba(102, 80, 133, 0.38);
  background: linear-gradient(145deg, rgba(93, 25, 113, 0.28), rgba(18, 64, 91, 0.18));
  color: #75cade;
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.builder-fields .money-input input {
  height: 50px;
  margin: 0;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #f6eff8;
  font-family: 'Oxanium', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.035em;
  box-shadow: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
.builder-fields .money-input input:focus {
  border: 0;
  box-shadow: none;
}
.builder-fields .money-input input::placeholder {
  color: #5f5669;
  font-weight: 400;
}
.builder-fields .money-input input::-webkit-inner-spin-button,
.builder-fields .money-input input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.builder-fields label.has-validation-error > input,
.builder-notes.has-validation-error textarea {
  border-color: rgba(225, 76, 151, 0.72);
  box-shadow: 0 0 0 3px rgba(166, 37, 111, 0.11);
}
.builder-fields label.has-validation-error .money-input,
.builder-fields label.has-validation-error .builder-custom-select__trigger {
  border-color: rgba(225, 76, 151, 0.72);
  box-shadow: 0 0 0 3px rgba(166, 37, 111, 0.11);
}
.builder-validation-message {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px 10px 36px;
  border: 1px solid rgba(213, 68, 142, 0.38);
  border-radius: 4px;
  background:
    radial-gradient(circle at 0 0, rgba(199, 48, 135, 0.15), transparent 42%),
    linear-gradient(110deg, rgba(29, 8, 32, 0.96), rgba(9, 8, 22, 0.98));
  color: #deb4d1;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-transform: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  animation: builderValidationIn 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.builder-validation-message::before {
  content: '!';
  position: absolute;
  left: 12px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(235, 94, 167, 0.62);
  border-radius: 50%;
  color: #ef7fba;
  font-family: 'Oxanium', sans-serif;
  font-size: 8px;
  font-weight: 700;
  transform: translateY(-50%);
}
@keyframes builderValidationIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.quote-choice-group {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}
.quote-choice-group legend {
  margin-bottom: 10px;
  color: var(--cream-dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.quote-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.quote-choice-grid label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(104, 75, 126, 0.28);
  background: rgba(255, 255, 255, 0.015);
  color: #a99fb5;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.quote-choice-grid label:hover {
  border-color: rgba(126, 67, 147, 0.55);
  color: var(--cream);
}
.quote-choice-grid input {
  width: 15px;
  height: 15px;
  margin: 0 10px 0 0;
  accent-color: #7e2c91;
}
.quote-choice-grid label:has(input:checked) {
  border-color: rgba(82, 167, 195, 0.48);
  background: linear-gradient(110deg, rgba(83, 25, 105, 0.2), rgba(18, 67, 91, 0.18));
  color: #fff;
}
.quote-choice-grid span {
  font-family: 'Oxanium', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.soft-mixer-menu {
  --mixer-accent: #63c7df;
  margin: 2px 0 28px;
  border: 1px solid rgba(96, 79, 137, 0.4);
  border-radius: 4px;
  background:
    radial-gradient(circle at 4% 0, rgba(105, 34, 128, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(14, 7, 24, 0.96), rgba(4, 5, 13, 0.98));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}
.soft-mixer-menu > summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 18px 72px 18px 20px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.soft-mixer-menu > summary::-webkit-details-marker {
  display: none;
}
.soft-mixer-menu > summary::after {
  content: '';
  position: absolute;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #72cce0;
  border-bottom: 2px solid #72cce0;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.42s var(--ease);
}
.soft-mixer-menu[open] > summary::after {
  transform: translateY(3px) rotate(225deg);
}
.soft-mixer-menu > summary > span {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
}
.soft-mixer-menu > summary i {
  grid-row: 1/3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(100, 201, 224, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 137, 169, 0.22), rgba(52, 16, 73, 0.1));
  color: #79d4e8;
  font-family: 'Oxanium', sans-serif;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(43, 147, 182, 0.1);
}
.soft-mixer-menu > summary strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.soft-mixer-menu > summary small {
  color: #81768d;
  font-size: 10px;
  line-height: 1.4;
}
.soft-mixer-menu > summary > b {
  padding: 9px 12px;
  border: 1px solid rgba(113, 71, 142, 0.42);
  border-radius: 20px;
  background: rgba(49, 15, 65, 0.2);
  color: #ae82be;
  font-family: 'Oxanium', sans-serif;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.soft-mixer-groups {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-top: 1px solid rgba(94, 72, 123, 0.26);
  background: rgba(101, 76, 128, 0.16);
}
.soft-mixer-group {
  --group-accent: #d36f75;
  padding: 20px;
  background: linear-gradient(145deg, rgba(11, 6, 18, 0.98), rgba(4, 5, 12, 0.98));
}
.soft-mixer-group--2 {
  --group-accent: #5dbfd5;
}
.soft-mixer-group--3 {
  --group-accent: #d49b58;
}
.soft-mixer-group--4 {
  --group-accent: #679bd6;
}
.soft-mixer-group > header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid color-mix(in srgb, var(--group-accent) 18%, transparent);
}
.soft-mixer-group > header > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--group-accent) 48%, transparent);
  border-radius: 50%;
  color: var(--group-accent);
  font-family: 'Oxanium', sans-serif;
  font-size: 8px;
  font-weight: 700;
}
.soft-mixer-group > header div {
  display: grid;
  gap: 1px;
}
.soft-mixer-group > header strong {
  color: #f5eff8;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.soft-mixer-group > header small {
  color: #6f6679;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.soft-mixer-grid {
  display: grid;
  gap: 8px;
}
.soft-mixer-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 64px;
  padding: 10px 11px;
  border: 1px solid rgba(104, 80, 126, 0.22);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.014);
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.soft-mixer-item:hover {
  border-color: color-mix(in srgb, var(--group-accent) 42%, transparent);
  background: color-mix(in srgb, var(--group-accent) 5%, rgba(7, 4, 12, 0.92));
  transform: translateY(-1px);
}
.soft-mixer-item.has-quantity {
  border-color: color-mix(in srgb, var(--group-accent) 56%, transparent);
  background: linear-gradient(110deg, color-mix(in srgb, var(--group-accent) 10%, transparent), rgba(9, 6, 16, 0.92));
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    inset 2px 0 var(--group-accent);
}
.soft-mixer-item__mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid color-mix(in srgb, var(--group-accent) 36%, transparent);
  border-radius: 50%;
  color: var(--group-accent);
  font-family: 'Oxanium', sans-serif;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.soft-mixer-item > div:nth-child(2) {
  min-width: 0;
}
.soft-mixer-item strong {
  display: block;
  overflow: hidden;
  color: #e8e1ec;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.soft-mixer-item small {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  color: #746b7e;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.soft-mixer-item .quantity-control {
  grid-template-columns: 28px 36px 28px;
}
.soft-mixer-item .quantity-control button,
.soft-mixer-item .quantity-control input {
  height: 32px;
  border-color: color-mix(in srgb, var(--group-accent) 26%, rgba(98, 75, 120, 0.35));
}
.soft-mixer-item .quantity-control button {
  font-size: 15px;
}
.soft-mixer-item .quantity-control input {
  width: 36px;
}
.soft-mixer-item .quantity-control button:hover {
  border-color: var(--group-accent);
  background: color-mix(in srgb, var(--group-accent) 28%, #100817);
}
.event-liquor-selector {
  position: relative;
  margin-bottom: 0;
}
.event-liquor-stage {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 15px;
  padding: 25px 27px;
  border: 1px solid rgba(104, 63, 137, 0.42);
  background:
    radial-gradient(circle at 8% 0, rgba(135, 39, 153, 0.25), transparent 38%),
    radial-gradient(circle at 94% 100%, rgba(24, 112, 154, 0.24), transparent 37%),
    linear-gradient(115deg, #13081e, #090715 58%, #071221);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.035),
    0 18px 50px rgba(0, 0, 0, 0.25);
}
.event-liquor-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.035) 49%, transparent 72%);
  transform: translateX(-100%);
  animation: liquorStudioShine 7s ease-in-out infinite;
}
.event-liquor-stage > div {
  position: relative;
  z-index: 1;
}
.event-liquor-stage > div:first-child {
  display: grid;
  gap: 5px;
  max-width: 650px;
}
.event-liquor-stage > div:first-child > span {
  color: #66c6df;
  font-family: 'Oxanium', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.event-liquor-stage > div:first-child > strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.event-liquor-stage p {
  margin: 0;
  color: #94899f;
  font-size: 11px;
  line-height: 1.55;
}
.event-liquor-stage__stat {
  display: grid;
  place-items: center;
  flex: 0 0 135px;
  min-height: 110px;
  border: 1px solid rgba(93, 174, 201, 0.32);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 102, 132, 0.18), rgba(50, 16, 65, 0.1) 70%);
  text-align: center;
  box-shadow: 0 0 38px rgba(38, 107, 151, 0.09);
}
.event-liquor-stage__stat strong {
  margin-bottom: -18px;
  color: #83d8eb;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}
.event-liquor-stage__stat span {
  color: #fff;
  font-family: 'Oxanium', sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.event-liquor-stage__stat small {
  margin-top: -18px;
  color: #756c80;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-liquor-rows {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}
.event-liquor-row {
  --liquor-accent: #9d6dcc;
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 105px minmax(155px, 0.62fr) minmax(280px, 1.38fr) auto 38px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--liquor-accent) 28%, rgba(80, 60, 95, 0.2));
  border-radius: 4px;
  background:
    radial-gradient(circle at 0 50%, color-mix(in srgb, var(--liquor-accent) 11%, transparent), transparent 29%),
    linear-gradient(112deg, rgba(17, 8, 27, 0.96), rgba(5, 5, 13, 0.98) 70%, rgba(7, 12, 23, 0.98));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.025),
    0 15px 38px rgba(0, 0, 0, 0.18);
  animation: builderPanelIn 0.42s var(--ease) both;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.event-liquor-row::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--liquor-accent), #57bad6, transparent);
  opacity: 0.58;
}
.event-liquor-row::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 90px;
  height: 90px;
  border: 1px solid color-mix(in srgb, var(--liquor-accent) 10%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 60px color-mix(in srgb, var(--liquor-accent) 6%, transparent);
  opacity: 0.38;
  pointer-events: none;
}
.event-liquor-row.has-brand {
  border-color: color-mix(in srgb, var(--liquor-accent) 55%, transparent);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.3),
    0 0 32px color-mix(in srgb, var(--liquor-accent) 7%, transparent);
  transform: translateY(-1px);
}
.event-liquor-row[data-category='gin'] {
  --liquor-accent: #55bea1;
}
.event-liquor-row[data-category='vodka'] {
  --liquor-accent: #72b8de;
}
.event-liquor-row[data-category='tequila'] {
  --liquor-accent: #d2a052;
}
.event-liquor-row[data-category='liqueur'] {
  --liquor-accent: #d65c78;
}
.event-liquor-row[data-category='whisky'] {
  --liquor-accent: #d2a45b;
}
.event-liquor-row[data-category='cognac'] {
  --liquor-accent: #d39a4a;
}
.event-liquor-row[data-category='brandy'] {
  --liquor-accent: #c8784b;
}
.event-liquor-row[data-category='rum'] {
  --liquor-accent: #bd7657;
}
.event-liquor-row[data-category='wine'] {
  --liquor-accent: #b85f8e;
}
.event-liquor-row[data-category='beer'] {
  --liquor-accent: #d0b158;
}
.event-liquor-row__identity {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  align-self: center;
  padding-right: 13px;
  border-right: 1px solid color-mix(in srgb, var(--liquor-accent) 19%, transparent);
}
.event-liquor-row__number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in srgb, var(--liquor-accent) 52%, transparent);
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--liquor-accent) 15%, transparent), transparent 68%);
  color: var(--liquor-accent);
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 0 28px color-mix(in srgb, var(--liquor-accent) 8%, transparent);
}
.event-liquor-row__identity small {
  max-width: 88px;
  color: color-mix(in srgb, var(--liquor-accent) 70%, #ada2b8);
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}
.event-liquor-row > label {
  position: relative;
  z-index: 1;
  color: #8d8299;
  font-family: 'Oxanium', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.event-liquor-row > label.dropdown-open {
  z-index: 5;
}
.event-liquor-row select {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: 8px;
  padding: 0 38px 0 14px;
  border: 1px solid color-mix(in srgb, var(--liquor-accent) 24%, rgba(92, 74, 108, 0.35));
  border-radius: 2px;
  background: linear-gradient(110deg, rgba(9, 4, 14, 0.98), rgba(6, 8, 18, 0.98));
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 12px;
  outline: none;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    background 0.22s;
}
.event-liquor-row select:focus {
  border-color: color-mix(in srgb, var(--liquor-accent) 70%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--liquor-accent) 12%, transparent);
}
.event-liquor-row select:disabled {
  cursor: not-allowed;
  color: #645a6d;
  opacity: 0.58;
}
.event-liquor-row select.event-liquor-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.event-liquor-row.dropdown-open {
  z-index: 40;
}
.event-custom-select {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: 8px;
  font-family: var(--font-body);
  text-transform: none;
}
.event-custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid color-mix(in srgb, var(--liquor-accent) 28%, rgba(92, 74, 108, 0.35));
  border-radius: 3px;
  background: linear-gradient(110deg, rgba(9, 4, 14, 0.98), rgba(6, 8, 18, 0.98));
  color: #ddd5e3;
  font-family: var(--font-body);
  font-size: 11px;
  text-align: left;
  cursor: pointer;
  outline: 0;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    color 0.25s;
}
.event-custom-select__trigger span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event-custom-select__trigger i {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin: -5px 2px 0 0;
  border-right: 1px solid var(--liquor-accent);
  border-bottom: 1px solid var(--liquor-accent);
  transform: rotate(45deg);
  transition: transform 0.35s var(--ease);
}
.event-custom-select__trigger:hover,
.event-custom-select__trigger:focus-visible,
.event-custom-select.is-open .event-custom-select__trigger {
  border-color: color-mix(in srgb, var(--liquor-accent) 72%, transparent);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--liquor-accent) 11%, transparent),
    0 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.event-custom-select.is-open .event-custom-select__trigger i {
  margin-top: 5px;
  transform: rotate(225deg);
}
.event-custom-select.is-disabled {
  opacity: 0.48;
}
.event-custom-select.is-disabled .event-custom-select__trigger {
  cursor: not-allowed;
}
.event-custom-select__menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 7px);
  left: 0;
  width: min(420px, calc(100vw - 70px));
  min-width: 100%;
  overflow: hidden;
  border: 1px solid #675177;
  border-color: color-mix(in srgb, var(--liquor-accent) 50%, rgba(100, 76, 119, 0.42));
  border-radius: 5px;
  /* Keep the menu opaque even when a phone cannot render the decorative gradient. */
  background-color: #0d0716;
  background-image: radial-gradient(
    circle at 0 0,
    color-mix(in srgb, var(--liquor-accent) 13%, transparent),
    transparent 38%
  );
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.68),
    0 0 35px rgba(99, 45, 140, 0.16);
  transform-origin: top left;
  animation: customSelectIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.event-custom-select__menu[hidden] {
  display: none;
}
.event-custom-select__menu > label {
  display: block;
  padding: 12px 12px 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--liquor-accent) 16%, transparent);
  background: #0d0716;
}
.event-custom-select__menu > label > span {
  display: block;
  margin: 0 0 6px;
  color: color-mix(in srgb, var(--liquor-accent) 70%, #c2b8c9);
  font-family: 'Oxanium', sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.event-custom-select__menu input {
  display: block;
  width: 100%;
  height: 39px;
  margin: 0;
  padding: 0 35px 0 12px;
  border: 1px solid color-mix(in srgb, var(--liquor-accent) 25%, rgba(89, 69, 104, 0.4));
  border-radius: 3px;
  background: #07040d;
  color: #f6eff9;
  font-family: var(--font-body);
  font-size: 11px;
  outline: 0;
  background-image:
    radial-gradient(
      circle at calc(100% - 18px) 46%,
      transparent 0 4px,
      color-mix(in srgb, var(--liquor-accent) 65%, #fff) 4.5px 5.5px,
      transparent 6px
    ),
    linear-gradient(45deg, transparent 45%, color-mix(in srgb, var(--liquor-accent) 65%, #fff) 47% 53%, transparent 55%);
  background-repeat: no-repeat;
  background-size:
    auto,
    6px 6px;
  background-position:
    center,
    calc(100% - 12px) 66%;
}
.event-custom-select__menu input:focus {
  border-color: color-mix(in srgb, var(--liquor-accent) 65%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--liquor-accent) 9%, transparent);
}
.event-custom-select__options {
  max-height: min(300px, 42vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 7px;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--liquor-accent) 60%, #392240) #08050e;
}
.event-custom-select__options::-webkit-scrollbar {
  width: 7px;
}
.event-custom-select__options::-webkit-scrollbar-track {
  background: #08050e;
}
.event-custom-select__options::-webkit-scrollbar-thumb {
  border: 2px solid #08050e;
  border-radius: 10px;
  background: color-mix(in srgb, var(--liquor-accent) 58%, #3d2843);
}
.event-custom-select__option {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 43px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: #e6deed;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.18s,
    background 0.18s,
    color 0.18s,
    transform 0.18s;
}
.event-custom-select__option b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid color-mix(in srgb, var(--liquor-accent) 25%, transparent);
  border-radius: 50%;
  color: #766b80;
  font-family: 'Oxanium', sans-serif;
  font-size: 7px;
  font-weight: 700;
}
.event-custom-select__option span {
  overflow: hidden;
  font-size: 10px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event-custom-select__option:hover,
.event-custom-select__option:focus-visible {
  border-color: color-mix(in srgb, var(--liquor-accent) 30%, transparent);
  background: #261332;
  color: #fff;
  outline: 0;
  transform: translateX(2px);
}
.event-custom-select__option.is-selected {
  border-color: color-mix(in srgb, var(--liquor-accent) 48%, transparent);
  background-color: #302043;
  background-image: linear-gradient(
    110deg,
    color-mix(in srgb, var(--liquor-accent) 17%, transparent),
    rgba(19, 45, 63, 0.13)
  );
  color: #fff;
}
.event-custom-select__option.is-selected b {
  border-color: var(--liquor-accent);
  background: color-mix(in srgb, var(--liquor-accent) 18%, transparent);
  color: var(--liquor-accent);
}
.event-custom-select__option[hidden] {
  display: none;
}
.event-custom-select__empty {
  padding: 18px;
  color: #766d7e;
  font-size: 10px;
  text-align: center;
}
.event-custom-select__empty[hidden] {
  display: none;
}
@keyframes customSelectIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.event-liquor-brand {
  display: grid;
}
.event-liquor-row__confirmation {
  overflow: hidden;
  display: block;
  max-width: 100%;
  margin-top: 6px;
  color: #6e6578;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
  transition: color 0.25s;
}
.event-liquor-row.has-brand .event-liquor-row__confirmation {
  color: color-mix(in srgb, var(--liquor-accent) 78%, #b9dce4);
}
.event-liquor-quantity .quantity-control {
  margin-top: 8px;
}
.event-liquor-row .quantity-control button,
.event-liquor-row .quantity-control input {
  height: 48px;
  border-color: color-mix(in srgb, var(--liquor-accent) 25%, rgba(93, 69, 107, 0.35));
}
.event-liquor-row .quantity-control button:hover {
  background: color-mix(in srgb, var(--liquor-accent) 38%, #15091d);
}
.event-liquor-row .quantity-control button:disabled,
.event-liquor-row .quantity-control input:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.event-liquor-remove {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(176, 83, 113, 0.34);
  border-radius: 50%;
  background: rgba(94, 19, 44, 0.1);
  color: #aa687e;
  font-size: 18px;
  cursor: pointer;
  transition: 0.22s;
}
.event-liquor-remove:hover {
  border-color: rgba(224, 94, 135, 0.7);
  background: rgba(132, 26, 61, 0.25);
  color: #fff;
  transform: rotate(90deg);
}
.event-liquor-add {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 15px 18px;
  border: 1px solid rgba(96, 77, 133, 0.43);
  border-radius: 3px;
  background: linear-gradient(110deg, rgba(53, 14, 72, 0.55), rgba(37, 11, 60, 0.48) 52%, rgba(11, 53, 83, 0.48));
  color: #b9a8c9;
  font-family: 'Oxanium', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.25s,
    color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.event-liquor-add span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(100, 194, 218, 0.4);
  border-radius: 50%;
  color: #73c9dc;
  font-size: 16px;
  line-height: 1;
}
.event-liquor-add:hover {
  border-color: rgba(112, 93, 158, 0.7);
  color: #fff;
  box-shadow:
    0 14px 35px rgba(30, 8, 45, 0.28),
    0 0 25px rgba(40, 108, 144, 0.08);
  transform: translateY(-1px);
}
@keyframes liquorStudioShine {
  0%,
  18% {
    transform: translateX(-100%);
  }
  45%,
  100% {
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .event-liquor-stage::before {
    animation: none;
  }
  .event-liquor-row,
  .event-liquor-add,
  .soft-mixer-item {
    transition: none;
  }
  .event-custom-select__menu {
    animation: none;
  }
}

@media (max-width: 1000px) {
  .soft-mixer-groups {
    grid-template-columns: 1fr;
  }
  .event-liquor-row {
    grid-template-columns: 92px 1fr 1.25fr;
  }
  .event-liquor-quantity {
    grid-column: 2;
  }
  .event-liquor-remove {
    grid-column: 3;
    grid-row: 2;
    justify-self: end;
  }
}
@media (max-width: 700px) {
  .soft-mixer-menu > summary {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 58px;
  }
  .soft-mixer-menu > summary > b {
    margin-left: 62px;
  }
  .soft-mixer-group {
    padding: 15px;
  }
  .soft-mixer-item {
    grid-template-columns: 34px minmax(0, 1fr);
  }
  .soft-mixer-item .quantity-control {
    grid-column: 2;
    justify-self: end;
  }
  .event-liquor-stage {
    align-items: flex-start;
    flex-direction: column;
  }
  .event-liquor-stage__stat {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 0;
    width: 100%;
    padding: 13px 16px;
    border-radius: 3px;
  }
  .event-liquor-stage__stat strong,
  .event-liquor-stage__stat span,
  .event-liquor-stage__stat small {
    margin: 0;
  }
  .event-liquor-stage__stat strong {
    font-size: 27px;
  }
  .event-liquor-row {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .event-liquor-row__identity {
    grid-column: 1;
    grid-template-columns: auto 1fr;
    justify-items: start;
    padding: 0 48px 13px 0;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--liquor-accent) 18%, transparent);
  }
  .event-liquor-row__number {
    width: 38px;
    height: 38px;
  }
  .event-liquor-row__identity small {
    max-width: none;
    text-align: left;
  }
  .event-liquor-quantity,
  .event-liquor-remove {
    grid-column: 1;
    grid-row: auto;
  }
  .event-liquor-remove {
    position: absolute;
    top: 17px;
    right: 17px;
  }
  .event-liquor-row__confirmation {
    white-space: normal;
  }
  .event-custom-select__menu {
    width: 100%;
    min-width: 100%;
  }
  .builder-custom-select__trigger,
  .event-custom-select__trigger {
    min-height: 48px;
    font-size: 14px;
  }
  .builder-custom-select__option,
  .event-custom-select__option {
    min-height: 48px;
  }
  .builder-custom-select__option span,
  .event-custom-select__option span {
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .event-custom-select__menu input {
    min-height: 44px;
    font-size: 16px;
  }
}

@keyframes builderPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .builder-heading {
    grid-template-columns: 1fr;
  }
  .builder-fields,
  .spirit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quote-builder-intro {
    grid-template-columns: 1fr;
  }
  .quote-choice-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .builder-tabs {
    width: 100%;
    flex-direction: column;
  }
  .builder-tab {
    width: 100%;
  }
  .builder-form {
    padding: 20px;
  }
  .builder-fields,
  .spirit-grid,
  .quote-choice-grid {
    grid-template-columns: 1fr;
  }
  .quote-field--wide {
    grid-column: auto;
  }
  .spirit-control {
    min-height: 84px;
  }
  .builder-summary,
  .best-price-note {
    align-items: flex-start;
    flex-direction: column;
  }
  .builder-actions .btn {
    width: 100%;
  }
  .quote-builder-intro {
    margin: -4px -4px 20px;
    padding: 20px;
  }
  .quote-builder-intro ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .quote-builder-intro li {
    min-width: 0;
  }
  .quote-form-section {
    padding: 18px;
  }
}

/* Detailed liquor-only catalogue */
.liquor-catalog {
  display: grid;
  gap: 12px;
}
.liquor-category {
  border: 1px solid var(--line-strong);
  background: rgba(3, 1, 7, 0.72);
  overflow: hidden;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.liquor-category:hover,
.liquor-category[open] {
  border-color: rgba(107, 52, 130, 0.62);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.liquor-category summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 62px 19px 20px;
  position: relative;
  list-style: none;
  cursor: pointer;
  background: linear-gradient(100deg, rgba(68, 16, 82, 0.22), rgba(11, 15, 38, 0.16));
  user-select: none;
}
.liquor-category summary::-webkit-details-marker {
  display: none;
}
.liquor-category summary::after {
  content: '+';
  position: absolute;
  right: 21px;
  top: 50%;
  transform: translateY(-50%);
  color: #62bed7;
  font-family: 'Oxanium', sans-serif;
  font-size: 25px;
  line-height: 1;
  transition:
    transform 0.25s,
    color 0.25s;
}
.liquor-category[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: #c36ac6;
}
.liquor-category summary span {
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  color: var(--cream);
}
.liquor-category summary small {
  color: var(--cream-faint);
  font-family: 'Oxanium', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.liquor-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding-top: 1px;
  background: var(--line);
}
.liquor-product-grid .spirit-control {
  min-height: 103px;
  border: 0;
  background: #07030c;
}
.liquor-product-grid .spirit-control:hover {
  background: linear-gradient(110deg, rgba(65, 16, 79, 0.19), rgba(8, 15, 31, 0.17));
}
.liquor-product-grid .spirit-control strong {
  font-size: 16px;
  line-height: 1.18;
}
.liquor-product-grid .spirit-control span {
  max-width: 245px;
  line-height: 1.4;
}
.liquor-catalog-fieldset > .selector-note {
  max-width: 760px;
  margin-bottom: 20px;
}
@media (max-width: 760px) {
  .liquor-product-grid {
    grid-template-columns: 1fr;
  }
  .liquor-category summary {
    padding-left: 16px;
  }
  .liquor-category summary span {
    font-size: 19px;
  }
  .liquor-product-grid .spirit-control {
    min-height: 92px;
  }
}
@media (max-width: 430px) {
  .liquor-product-grid .spirit-control {
    align-items: flex-start;
    flex-direction: column;
  }
  .liquor-product-grid .quantity-control {
    align-self: flex-end;
  }
  .liquor-category summary small {
    display: none;
  }
}

/* Searchable world-whisky review catalogue */
.whisky-catalogue-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  background: #050209;
}
.whisky-catalogue-tools label {
  width: min(470px, 100%);
  font-family: 'Oxanium', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.whisky-catalogue-tools input {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: #020106;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
}
.whisky-catalogue-tools input:focus {
  border-color: #693080;
  box-shadow: 0 0 0 3px rgba(80, 27, 103, 0.13);
}
.whisky-catalogue-tools > span {
  padding-bottom: 11px;
  color: var(--cream-faint);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.whisky-regions {
  display: grid;
  gap: 1px;
  background: var(--line);
}
.whisky-region {
  background: #050209;
}
.whisky-region h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 0;
  padding: 15px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(37, 11, 50, 0.24), rgba(4, 3, 13, 0.2));
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bdb3c8;
}
.whisky-region h4 small {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 22px;
  padding: 0 7px;
  border: 1px solid rgba(91, 62, 112, 0.38);
  border-radius: 20px;
  color: #65b9cf;
  font-size: 9px;
}
.whisky-region .liquor-product-grid {
  padding-top: 0;
}
.whisky-region .spirit-control[hidden],
.whisky-region[hidden] {
  display: none;
}
.whisky-empty {
  margin: 0;
  padding: 28px 20px;
  color: var(--cream-dim);
  font-size: 13px;
  text-align: center;
}
.whisky-empty[hidden] {
  display: none;
}
@media (max-width: 700px) {
  .whisky-catalogue-tools {
    align-items: stretch;
    flex-direction: column;
  }
  .whisky-catalogue-tools > span {
    padding-bottom: 0;
  }
  .whisky-region h4 {
    font-size: 10px;
  }
}

/* Premium catalogue hierarchy */
.liquor-catalog {
  gap: 16px;
  padding-top: 4px;
}
.liquor-category {
  --category-accent: #9f69c1;
  position: relative;
  border-color: color-mix(in srgb, var(--category-accent) 30%, transparent);
  border-radius: 3px;
  background: linear-gradient(145deg, rgba(9, 4, 16, 0.98), rgba(3, 2, 8, 0.98));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
}
.liquor-category::before {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--category-accent),
    color-mix(in srgb, var(--category-accent) 45%, #74d7f0),
    transparent
  );
  opacity: 0.68;
}
.liquor-category:hover,
.liquor-category[open] {
  border-color: color-mix(in srgb, var(--category-accent) 58%, transparent);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.34),
    0 0 34px color-mix(in srgb, var(--category-accent) 8%, transparent);
}
.liquor-category summary {
  min-height: 94px;
  padding: 17px 68px 17px 20px;
  background:
    radial-gradient(circle at 12% 0, color-mix(in srgb, var(--category-accent) 19%, transparent), transparent 34%),
    linear-gradient(100deg, #0d0715, #07040c);
}
.liquor-category summary::after {
  content: '⌄';
  right: 23px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--category-accent) 38%, transparent);
  border-radius: 50%;
  color: var(--category-accent);
  font-family: 'Oxanium', sans-serif;
  font-size: 19px;
  z-index: 3;
  transition:
    transform 0.35s var(--ease),
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}
.liquor-category[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
  border-color: color-mix(in srgb, var(--category-accent) 58%, transparent);
  background: color-mix(in srgb, var(--category-accent) 13%, transparent);
  color: color-mix(in srgb, var(--category-accent) 78%, white);
}
.liquor-category summary .liquor-category__identity {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
  position: relative;
  z-index: 2;
}
.liquor-category summary .liquor-category__identity > i {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--category-accent) 44%, transparent);
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--category-accent) 15%, transparent),
    rgba(13, 17, 40, 0.12)
  );
  color: var(--category-accent);
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.liquor-category summary .liquor-category__identity > span {
  display: grid;
  gap: 3px;
  min-width: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
}
.liquor-category__identity strong {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.12;
  text-transform: uppercase;
}
.liquor-category__identity em {
  color: #8e849f;
  font-family: var(--font-body);
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}
.liquor-category summary > small {
  flex: 0 0 auto;
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--category-accent) 30%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.018);
  color: color-mix(in srgb, var(--category-accent) 64%, #aaa0b4);
  font-size: 8px;
  position: relative;
  z-index: 2;
}
.liquor-category__content {
  overflow: hidden;
  transform-origin: top center;
  will-change: height, opacity, transform;
}
.liquor-category[data-animating='true'] summary {
  cursor: progress;
}
.liquor-product-grid {
  gap: 1px;
  padding: 1px 0 0;
  background: rgba(126, 93, 151, 0.15);
}
@media (prefers-reduced-motion: reduce) {
  .liquor-category__content {
    will-change: auto;
  }
}
.liquor-product-grid .spirit-control {
  position: relative;
  min-height: 108px;
  padding: 19px 20px;
  background: linear-gradient(125deg, #08040e, #05030a);
  overflow: hidden;
}
.liquor-product-grid .spirit-control::before {
  content: '';
  position: absolute;
  inset: 18px auto 18px 0;
  width: 2px;
  background: linear-gradient(var(--category-accent), color-mix(in srgb, var(--category-accent) 46%, #54c9ed));
  opacity: 0;
  transform: scaleY(0.35);
  transition: 0.25s var(--ease);
}
.liquor-product-grid .spirit-control:hover,
.liquor-product-grid .spirit-control.has-quantity {
  background: linear-gradient(110deg, rgba(65, 16, 79, 0.28), rgba(7, 16, 34, 0.34));
}
.liquor-product-grid .spirit-control.has-quantity {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--category-accent) 23%, transparent);
}
.liquor-product-grid .spirit-control:hover::before,
.liquor-product-grid .spirit-control.has-quantity::before {
  opacity: 1;
  transform: scaleY(1);
}
.liquor-product-grid .spirit-control strong {
  color: #f4f0f7;
  font-size: 15px;
  letter-spacing: 0.012em;
}
.liquor-product-grid .spirit-control span {
  margin-top: 6px;
  color: #867d92;
  font-size: 9px;
  letter-spacing: 0.025em;
}
.liquor-product-grid .quantity-control {
  grid-template-columns: 34px 42px 34px;
  padding: 3px;
  border: 1px solid rgba(114, 79, 139, 0.28);
  border-radius: 3px;
  background: #030207;
}
.liquor-product-grid .quantity-control button,
.liquor-product-grid .quantity-control input {
  height: 32px;
  border: 0;
  background: transparent;
}
.liquor-product-grid .quantity-control button {
  color: #aa9fb5;
  font-size: 16px;
}
.liquor-product-grid .quantity-control button:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--category-accent) 45%, #160b22), #153d64);
  color: #fff;
}

/* Individual category palettes */
.liquor-category--gin {
  --category-accent: #55bea1;
}
.liquor-category--vodka {
  --category-accent: #72b8de;
}
.liquor-category--tequila {
  --category-accent: #d2a052;
}
.liquor-category--liqueur {
  --category-accent: #d65c78;
}
.liquor-category--cognac {
  --category-accent: #d39a4a;
}
.liquor-category--brandy {
  --category-accent: #c8784b;
}
.liquor-category--rum {
  --category-accent: #bd7657;
}
.liquor-category--wine {
  --category-accent: #b85f8e;
}
.liquor-category--beer {
  --category-accent: #d0b158;
}
.liquor-category--cognac summary {
  background:
    radial-gradient(circle at 12% 0, rgba(211, 154, 74, 0.17), transparent 34%),
    linear-gradient(100deg, #120c0c, #09060f 68%, #10090b);
}
.liquor-category--brandy summary {
  background:
    radial-gradient(circle at 12% 0, rgba(200, 120, 75, 0.17), transparent 34%),
    linear-gradient(100deg, #140b0a, #09060f 68%, #0e0810);
}
.liquor-product-grid .quantity-control input {
  border-inline: 1px solid rgba(114, 79, 139, 0.24);
  color: #fff;
  font-family: 'Oxanium', sans-serif;
  font-weight: 600;
}

/* Curated whisky collection */
.liquor-category--whisky {
  --whisky-gold: #d2a45b;
  --category-accent: var(--whisky-gold);
  border-color: rgba(210, 164, 91, 0.34);
}
.liquor-category--whisky::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--whisky-gold), #8162c6, transparent);
  opacity: 0.7;
}
.liquor-category--whisky:hover,
.liquor-category--whisky[open] {
  border-color: rgba(210, 164, 91, 0.58);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(142, 94, 30, 0.07);
}
.liquor-category--whisky summary {
  background:
    radial-gradient(circle at 10% 0, rgba(160, 106, 31, 0.19), transparent 32%),
    linear-gradient(100deg, #110c0e, #080610 68%, #080a17);
}
.liquor-category--whisky summary .liquor-category__identity > i {
  border-color: rgba(210, 164, 91, 0.4);
  background: rgba(158, 102, 29, 0.09);
  color: #deb66f;
}
.liquor-category--whisky summary::after {
  border-color: rgba(210, 164, 91, 0.34);
  color: #d7ae68;
}
.whisky-catalogue-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 40px;
  align-items: end;
  padding: 34px 28px 28px;
  border-top: 1px solid rgba(210, 164, 91, 0.12);
  background: radial-gradient(circle at 88% 8%, rgba(153, 104, 35, 0.1), transparent 34%), #060409;
}
.collection-kicker {
  margin: 0 0 8px;
  color: #c79d59;
  font-family: 'Oxanium', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.whisky-catalogue-copy h3 {
  margin: 0 0 10px;
  color: #f4efe6;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 39px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.whisky-catalogue-copy > p:last-child {
  max-width: 660px;
  margin: 0;
  color: #948a91;
  font-size: 12px;
  line-height: 1.7;
}
.whisky-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(210, 164, 91, 0.2);
  background: rgba(8, 5, 10, 0.62);
}
.whisky-stat-grid > span {
  display: grid;
  gap: 1px;
  padding: 16px 13px;
  text-align: center;
}
.whisky-stat-grid > span + span {
  border-left: 1px solid rgba(210, 164, 91, 0.16);
}
.whisky-stat-grid strong {
  color: #e0b86f;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.whisky-stat-grid small {
  color: #80767f;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.whisky-catalogue-tools {
  align-items: center;
  padding: 19px 28px;
  border-color: rgba(210, 164, 91, 0.14);
  background: #09060b;
}
.whisky-catalogue-tools label {
  width: min(580px, 100%);
}
.whisky-catalogue-tools label > span {
  display: block;
  color: #a18f78;
  font-family: 'Oxanium', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.whisky-catalogue-tools input {
  margin-top: 8px;
  padding: 13px 15px;
  border-color: rgba(210, 164, 91, 0.22);
  background: #030205;
}
.whisky-catalogue-tools input:focus {
  border-color: rgba(210, 164, 91, 0.58);
  box-shadow: 0 0 0 3px rgba(151, 99, 30, 0.12);
}
.whisky-catalogue-tools > span {
  padding: 8px 11px;
  border: 1px solid rgba(210, 164, 91, 0.2);
  border-radius: 999px;
  color: #b19468;
  white-space: nowrap;
}
.whisky-regions {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: linear-gradient(145deg, #050307, #08050c);
}
.whisky-family {
  --family-accent: #7e64bd;
  --category-accent: var(--family-accent);
  border: 1px solid rgba(136, 105, 167, 0.23);
  background: #07040a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.whisky-family[hidden] {
  display: none;
}
.whisky-family--scotch {
  --family-accent: #d2a45b;
  border-color: rgba(210, 164, 91, 0.31);
  background: linear-gradient(145deg, rgba(24, 15, 10, 0.96), #070409 46%);
}
.whisky-family--irish {
  --family-accent: #5dae85;
}
.whisky-family--american {
  --family-accent: #b76e58;
}
.whisky-family--japanese {
  --family-accent: #718dc7;
}
.whisky-family__header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px 22px;
  border-bottom: 1px solid color-mix(in srgb, var(--family-accent) 22%, transparent);
  background: linear-gradient(100deg, color-mix(in srgb, var(--family-accent) 9%, transparent), transparent 55%);
}
.whisky-family__number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in srgb, var(--family-accent) 45%, transparent);
  color: var(--family-accent);
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.whisky-family__header > div > p {
  margin: 0 0 3px;
  color: var(--family-accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.whisky-family__header h4 {
  margin: 0 0 5px;
  color: #f2ede5;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}
.whisky-family__header em {
  display: block;
  max-width: 700px;
  color: #887f89;
  font-size: 10px;
  font-style: normal;
  line-height: 1.55;
}
.whisky-family__header > small {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, var(--family-accent) 28%, transparent);
  border-radius: 999px;
  color: var(--family-accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.whisky-family__regions {
  display: grid;
  gap: 14px;
  padding: 16px;
}
.whisky-family--scotch .whisky-family__regions {
  grid-template-columns: 1fr 1fr;
}
.whisky-region {
  border: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(3, 2, 5, 0.58);
}
.whisky-region__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(100deg, color-mix(in srgb, var(--family-accent) 7%, transparent), transparent);
}
.whisky-region__header > div > span {
  display: block;
  margin-bottom: 4px;
  color: var(--family-accent);
  font-family: 'Oxanium', sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.whisky-region__header h5 {
  margin: 0 0 5px;
  color: #e9e3dc;
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.25;
  text-transform: uppercase;
}
.whisky-region__header p {
  max-width: 470px;
  margin: 0;
  color: #7f7680;
  font-size: 9px;
  line-height: 1.5;
}
.whisky-region__header > small {
  flex: 0 0 auto;
  color: #8b818c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.whisky-region .liquor-product-grid {
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.052);
}
.whisky-region .liquor-product-grid .spirit-control {
  min-height: 94px;
  padding: 16px 17px;
}
.whisky-empty {
  padding: 34px 22px;
  border-top: 1px solid rgba(210, 164, 91, 0.16);
  background: #070409;
  color: #a09289;
}

/* Professional beer package groups */
.beer-package-groups {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid rgba(126, 93, 151, 0.15);
  background: #050309;
}
.beer-package-group {
  border: 1px solid rgba(126, 93, 151, 0.2);
  background: #07040b;
}
.package-group__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(126, 93, 151, 0.16);
  background: linear-gradient(100deg, rgba(61, 25, 77, 0.18), transparent);
}
.package-group__header > span {
  color: var(--category-accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.package-group__header h4 {
  margin: 0;
  color: #eee9f2;
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.package-group__header p {
  margin: 3px 0 0;
  color: #7f758b;
  font-size: 9px;
}
.package-group__header > small {
  color: #9b8ba8;
  font-size: 8px;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .whisky-catalogue-intro {
    grid-template-columns: 1fr;
  }
  .whisky-family--scotch .whisky-family__regions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .liquor-category summary {
    min-height: 86px;
    padding: 15px 58px 15px 15px;
  }
  .liquor-category summary::after {
    right: 15px;
    width: 28px;
    height: 28px;
  }
  .liquor-category__identity strong {
    font-size: 19px;
  }
  .liquor-category__identity em {
    font-size: 8px;
  }
  .whisky-catalogue-intro,
  .whisky-catalogue-tools {
    padding-left: 18px;
    padding-right: 18px;
  }
  .whisky-regions {
    padding: 13px;
  }
  .whisky-family__header {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 19px 17px;
  }
  .whisky-family__number {
    width: 40px;
    height: 40px;
  }
  .whisky-family__header > small {
    grid-column: 2;
    justify-self: start;
  }
  .whisky-family__header h4 {
    font-size: 20px;
  }
}
@media (max-width: 520px) {
  .liquor-category summary .liquor-category__identity {
    gap: 11px;
  }
  .liquor-category summary .liquor-category__identity > i {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
  .liquor-category summary > small {
    display: none;
  }
  .liquor-category__identity em {
    max-width: 230px;
    white-space: normal;
  }
  .whisky-catalogue-intro {
    padding-top: 26px;
  }
  .whisky-stat-grid strong {
    font-size: 20px;
  }
  .whisky-stat-grid > span {
    padding: 13px 7px;
  }
  .whisky-family__regions {
    padding: 10px;
  }
  .whisky-region__header {
    flex-direction: column;
  }
  .package-group__header {
    grid-template-columns: 1fr;
  }
  .package-group__header > small {
    justify-self: start;
  }
}

/* Exact branded catalogue packshots */
.liquor-product-grid .spirit-control {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 158px;
  padding: 14px 17px 14px 13px;
}
.spirit-product-media {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 96px;
  min-height: 128px;
  margin: 0;
  padding: 7px;
  border: 1px solid color-mix(in srgb, var(--category-accent) 20%, rgba(255, 255, 255, 0.11));
  border-radius: 5px;
  background: radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.96), rgba(238, 234, 241, 0.94) 70%), #f0edf2;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 10px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.spirit-product-media::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 5px;
  height: 8px;
  border-radius: 50%;
  background: rgba(33, 19, 42, 0.13);
  filter: blur(4px);
}
.spirit-product-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 122px;
  object-fit: contain;
  filter: drop-shadow(0 6px 5px rgba(22, 9, 28, 0.2));
  transform: scale(0.96);
  transition:
    transform 0.35s var(--ease),
    filter 0.35s var(--ease);
}
.liquor-product-grid .spirit-control:hover .spirit-product-media img,
.liquor-product-grid .spirit-control.has-quantity .spirit-product-media img {
  filter: drop-shadow(0 8px 7px rgba(22, 9, 28, 0.28));
  transform: scale(1.04) translateY(-2px);
}
.spirit-product-copy {
  min-width: 0;
}
.whisky-region .liquor-product-grid .spirit-control {
  min-height: 148px;
  padding: 12px 15px 12px 12px;
}
.whisky-region .spirit-product-media {
  min-height: 122px;
}

@media (max-width: 760px) {
  .liquor-product-grid .spirit-control,
  .whisky-region .liquor-product-grid .spirit-control {
    grid-template-columns: 88px minmax(0, 1fr) auto;
    min-height: 145px;
    padding: 11px 14px 11px 10px;
  }
  .spirit-product-media {
    width: 88px;
    min-height: 121px;
  }
  .spirit-product-media img {
    max-height: 115px;
  }
}

@media (max-width: 520px) {
  .liquor-product-grid .spirit-control,
  .whisky-region .liquor-product-grid .spirit-control {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 10px 13px;
    min-height: 142px;
    padding: 10px;
  }
  .spirit-product-media {
    grid-row: 1 / span 2;
    width: 80px;
    min-height: 120px;
  }
  .spirit-product-media img {
    max-height: 112px;
  }
  .liquor-product-grid .quantity-control {
    grid-column: 2;
    justify-self: end;
    align-self: end;
  }
}

.requirements-pdf-status {
  position: relative;
  margin: 13px 0 0;
  padding: 12px 15px 12px 42px;
  border: 1px solid rgba(83, 130, 157, 0.32);
  border-radius: 3px;
  background: rgba(13, 52, 69, 0.12);
  color: #8fbaca;
  font-size: 10px;
  line-height: 1.5;
}
.requirements-pdf-status::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}
.requirements-pdf-status[data-state='working']::before {
  border-right-color: transparent;
  animation: emailStatusSpin 0.8s linear infinite;
}
.requirements-pdf-status[data-state='success'] {
  border-color: rgba(73, 164, 138, 0.4);
  background: rgba(26, 91, 71, 0.13);
  color: #74cdb1;
}
.requirements-pdf-status[data-state='success']::before {
  width: 11px;
  height: 6px;
  border: 0;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  transform: translateY(-65%) rotate(-45deg);
}
.requirements-pdf-status[data-state='error'] {
  border-color: rgba(185, 72, 100, 0.42);
  background: rgba(100, 23, 45, 0.14);
  color: #e08aa1;
}

/* Seventh page: Crew Services */
.mobile-focus-strip {
  border-block: 1px solid rgba(79, 109, 146, 0.3);
  background: linear-gradient(100deg, rgba(19, 6, 35, 0.98), rgba(7, 20, 40, 0.98));
}
.mobile-focus-strip__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 20px;
  align-content: center;
  min-height: 96px;
  padding-block: 20px;
  padding-left: 32px;
}
.mobile-focus-strip__inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 21px;
  bottom: 21px;
  width: 3px;
  background: linear-gradient(#53d8f5, #8c4dff);
  box-shadow: 0 0 14px rgba(83, 216, 245, 0.38);
}
.mobile-focus-strip__inner span {
  grid-row: 1/3;
  align-self: center;
  padding-right: 20px;
  border-right: 1px solid rgba(89, 203, 232, 0.22);
  color: #59cbe8;
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-focus-strip__inner strong {
  color: #fff;
  font-family: 'Oxanium', sans-serif;
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.mobile-focus-strip__inner small {
  margin-top: 5px;
  color: #93889f;
  font-size: 10px;
  letter-spacing: 0.035em;
}
@media (max-width: 560px) {
  .mobile-focus-strip__inner {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 88px;
    padding-left: 22px;
  }
  .mobile-focus-strip__inner span {
    grid-row: auto;
    width: max-content;
    margin-bottom: 2px;
    padding: 0;
    border: 0;
  }
  .mobile-focus-strip__inner small {
    margin-top: 0;
  }
}
.service-section-nav-wrap {
  border-block: 1px solid rgba(88, 64, 116, 0.28);
  background: linear-gradient(90deg, rgba(18, 6, 32, 0.98), rgba(5, 13, 29, 0.98));
}
.service-section-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 0;
}
.service-section-nav a {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 13px;
  align-content: center;
  min-height: 94px;
  padding: 18px 26px;
  border-right: 1px solid rgba(88, 64, 116, 0.28);
  color: var(--cream);
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.service-section-nav a:first-child {
  border-left: 1px solid rgba(88, 64, 116, 0.28);
}
.service-section-nav a:hover,
.service-section-nav a.is-current {
  background: linear-gradient(120deg, rgba(85, 27, 124, 0.24), rgba(22, 89, 123, 0.2));
}
.service-section-nav span {
  grid-row: 1/3;
  align-self: center;
  color: #59cbe8;
  font-family: 'Oxanium', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.service-section-nav strong {
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.service-section-nav small {
  margin-top: 3px;
  color: #8f849b;
  font-size: 10px;
}
.service-catalog,
.staffing-catalog,
.crew-planning-section {
  scroll-margin-top: 92px;
}
.icon-crew {
  position: relative;
  width: 136px;
  height: 108px;
  filter: drop-shadow(0 0 12px rgba(89, 203, 232, 0.48));
  animation: iconPulse 3s ease-in-out infinite;
}
.icon-crew::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 38px;
  height: 38px;
  border: 4px solid #59cbe8;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 13px rgba(89, 203, 232, 0.72);
}
.icon-crew::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 58px;
  border: 4px solid #aa62ff;
  border-radius: 34px 34px 8px 8px;
  transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(170, 98, 255, 0.55);
}
.icon-crew b::before,
.icon-crew b::after {
  content: '';
  position: absolute;
  top: 25px;
  width: 28px;
  height: 28px;
  border: 4px solid #ee48d8;
  border-radius: 50%;
  box-shadow: 0 0 11px rgba(238, 72, 216, 0.55);
}
.icon-crew b::before {
  left: 2px;
}
.icon-crew b::after {
  right: 2px;
}
@media (min-width: 761px) and (max-width: 1180px) {
  .nav {
    gap: 14px;
  }
  .nav a {
    font-size: 11px;
    letter-spacing: 0.055em;
  }
  .site-header__actions {
    gap: 8px;
  }
  .site-header__actions .btn {
    padding-inline: 14px;
  }
}
@media (max-width: 760px) {
  .service-section-nav {
    grid-template-columns: 1fr;
  }
  .service-section-nav a,
  .service-section-nav a:first-child {
    min-height: 76px;
    border-left: 1px solid rgba(88, 64, 116, 0.28);
    border-bottom: 1px solid rgba(88, 64, 116, 0.28);
  }
}

/* Crew page: single-focus identity and serial service list */
.crew-focus-bar {
  border-block: 1px solid rgba(79, 109, 146, 0.3);
  background: linear-gradient(100deg, rgba(19, 6, 35, 0.98), rgba(7, 20, 40, 0.98));
}
.crew-focus-bar__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  column-gap: 18px;
  min-height: 112px;
  padding-block: 22px;
  padding-left: 34px;
}
.crew-focus-bar__inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(#53d8f5, #8c4dff);
  box-shadow: 0 0 14px rgba(83, 216, 245, 0.38);
}
.crew-focus-bar__inner span {
  grid-row: 1/4;
  align-self: center;
  padding-right: 18px;
  border-right: 1px solid rgba(89, 203, 232, 0.22);
  color: #59cbe8;
  font-family: 'Oxanium', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.crew-focus-bar__inner strong {
  font-family: 'Oxanium', sans-serif;
  font-size: 20px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}
.crew-focus-bar__inner small {
  margin-top: 5px;
  color: #93889f;
  font-size: 11px;
  letter-spacing: 0.035em;
}
.crew-service-list {
  border-top: 1px solid rgba(82, 111, 148, 0.3);
}
.crew-service-list article {
  display: grid;
  grid-template-columns: 62px minmax(220px, 260px) minmax(300px, 1fr);
  gap: 38px;
  align-items: center;
  min-height: 370px;
  padding: 34px 36px;
  border-bottom: 1px solid rgba(82, 111, 148, 0.3);
  background: linear-gradient(90deg, rgba(13, 24, 42, 0.52), rgba(8, 4, 18, 0.18));
  transition:
    background 0.25s var(--ease),
    padding-left 0.25s var(--ease);
}
.crew-service-list article:hover {
  padding-left: 38px;
  background: linear-gradient(90deg, rgba(19, 42, 66, 0.68), rgba(32, 8, 47, 0.24));
}
.crew-service-list b {
  color: #59cbe8;
  font-family: 'Oxanium', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.crew-service-media {
  position: relative;
  width: min(100%, 250px);
  height: auto;
  aspect-ratio: 4/5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(92, 121, 157, 0.34);
  background:
    radial-gradient(circle at 74% 22%, rgba(89, 203, 232, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(26, 11, 44, 0.94), rgba(4, 17, 31, 0.98));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}
.crew-service-media::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(164, 104, 224, 0.18);
}
.crew-service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.crew-service-media--bartender {
  background:
    radial-gradient(circle at 24% 72%, rgba(132, 71, 230, 0.23), transparent 34%),
    linear-gradient(145deg, rgba(7, 23, 40, 0.98), rgba(24, 7, 36, 0.96));
}
.crew-service-media--staff {
  background:
    radial-gradient(circle at 78% 72%, rgba(219, 63, 190, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(21, 8, 35, 0.98), rgba(4, 20, 30, 0.96));
}
.crew-service-media--bartender img,
.crew-service-media--staff img {
  position: absolute;
  inset: 0;
  object-position: center;
}
.crew-service-media--staff img {
  object-position: 30% center;
}
.crew-service-media--hours {
  background:
    radial-gradient(circle at 30% 20%, rgba(89, 203, 232, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(5, 21, 37, 0.98), rgba(21, 7, 35, 0.96));
}
.crew-service-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}
.crew-service-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.crew-service-list p {
  max-width: 640px;
  margin: 0;
  color: var(--cream-dim);
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .crew-service-list article {
    grid-template-columns: 48px minmax(190px, 220px) 1fr;
    gap: 24px;
    min-height: 330px;
    padding: 28px 22px;
  }
  .crew-service-list article:hover {
    padding-left: 26px;
  }
  .crew-service-media {
    width: min(100%, 220px);
  }
  .crew-focus-bar__inner {
    padding-left: 24px;
  }
  .crew-focus-bar__inner span {
    font-size: 8px;
  }
}
@media (max-width: 700px) {
  .crew-service-list article {
    grid-template-columns: 38px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 28px 18px;
  }
  .crew-service-list article:hover {
    padding-left: 22px;
  }
  .crew-service-list b {
    grid-row: 1/3;
    align-self: start;
    padding-top: 5px;
  }
  .crew-service-media {
    grid-column: 2;
    width: min(100%, 260px);
    justify-self: start;
  }
  .crew-service-copy {
    grid-column: 2;
    gap: 13px;
  }
  .crew-service-list h3 {
    font-size: 30px;
  }
  .crew-focus-bar__inner {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 22px;
  }
  .crew-focus-bar__inner span {
    grid-row: auto;
    margin-bottom: 6px;
    padding: 0;
    border: 0;
  }
}

/* Consulting call to action */
.consulting-options-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid rgba(88, 64, 116, 0.3);
}
@media (max-width: 520px) {
  .consulting-options-action .btn {
    width: 100%;
  }
}

/* About page credibility */
.about-impact {
  background:
    radial-gradient(circle at 12% 8%, rgba(108, 40, 159, 0.18), transparent 30%),
    linear-gradient(145deg, #05020c, #050914);
}
.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(92, 70, 122, 0.34);
}
.about-stat {
  min-height: 270px;
  padding: 34px 28px;
  border-right: 1px solid rgba(92, 70, 122, 0.34);
  background: linear-gradient(155deg, rgba(24, 9, 39, 0.72), rgba(3, 12, 23, 0.76));
}
.about-stat:last-child {
  border-right: 0;
}
.about-stat strong {
  display: block;
  margin-bottom: 20px;
  color: #59cbe8;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(89, 203, 232, 0.18);
}
.about-stat span {
  display: block;
  min-height: 42px;
  color: #fff;
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
}
.about-stat p {
  margin: 14px 0 0;
  color: var(--cream-dim);
  font-size: 12px;
  line-height: 1.75;
}
.about-story__copy {
  display: grid;
  gap: 16px;
}
.about-story__copy p {
  margin: 0;
  color: var(--cream-dim);
  font-size: 16px;
  line-height: 1.85;
}
.about-experience {
  margin-top: 62px;
  padding-top: 48px;
  border-top: 1px solid rgba(92, 70, 122, 0.34);
}
.about-experience__heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(300px, 1.1fr) minmax(260px, 0.8fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}
.about-experience__heading .eyebrow {
  margin: 0;
}
.about-experience__heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.about-experience__heading > p:last-child {
  margin: 0;
  color: var(--cream-dim);
  font-size: 13px;
  line-height: 1.7;
}
.about-experience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(77, 110, 145, 0.28);
  background: rgba(77, 110, 145, 0.28);
}
.about-experience__grid article {
  min-height: 250px;
  padding: 28px;
  background: linear-gradient(145deg, #071323, #10061c);
}
.about-experience__grid span {
  display: block;
  margin-bottom: 30px;
  color: #59cbe8;
  font-family: 'Oxanium', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.about-experience__grid strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.about-experience__grid p {
  margin: 16px 0 0;
  color: var(--cream-dim);
  font-size: 12px;
  line-height: 1.75;
}
.about-experience__note {
  margin: 0;
  padding: 18px 22px;
  border-left: 2px solid #59cbe8;
  background: linear-gradient(90deg, rgba(39, 107, 137, 0.14), transparent);
  color: var(--cream-dim);
  font-size: 13px;
}
.about-experience__note strong {
  color: #fff;
}
.about-experience__grid .about-experience__venue {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}
.about-experience__photo {
  margin: 0;
  background: #05040c;
}
.about-experience__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 12/5;
  object-fit: cover;
  object-position: center;
}
.about-experience__photo figcaption {
  padding: 9px 20px;
  border-bottom: 1px solid rgba(77, 110, 145, 0.22);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  line-height: 1.5;
  color: #b8adc9;
}
.about-experience__photo a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184, 173, 201, 0.4);
}
.about-experience__photo a:hover {
  color: #83deed;
  text-decoration-color: currentColor;
}
.about-experience__body {
  flex: 1;
  padding: 26px 28px 30px;
}
.about-experience__body > span {
  margin-bottom: 17px;
}
.about-experience__grid .about-experience__summary {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  column-gap: 36px;
  row-gap: 10px;
  align-items: center;
  min-height: 0;
}
.about-experience__summary > span {
  grid-column: 1;
  margin: 0;
}
.about-experience__summary > strong {
  grid-column: 1;
  font-size: 26px;
  line-height: 1.15;
}
.about-experience__grid .about-experience__summary > p {
  grid-column: 2;
  grid-row: 1/3;
  margin: 0;
}
.about-experience__photo-note {
  margin: 14px 0 0;
  color: #a79bb7;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .about-experience__body {
    padding: 22px;
  }
  .about-experience__grid .about-experience__summary {
    display: block;
    padding: 22px;
  }
  .about-experience__summary > span {
    margin-bottom: 14px;
  }
  .about-experience__grid .about-experience__summary > p {
    margin-top: 16px;
  }
}
.about-promise {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(105, 35, 151, 0.3), transparent 38%),
    linear-gradient(145deg, #0b0415, #03101e);
}
.about-promise__inner {
  display: grid;
  justify-items: center;
}
.about-promise .display {
  max-width: 900px;
  margin-bottom: 22px;
}
.about-promise__inner > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--cream-dim);
  font-size: 17px;
  line-height: 1.75;
}
@media (max-width: 980px) {
  .about-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-stat:nth-child(2) {
    border-right: 0;
  }
  .about-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(92, 70, 122, 0.34);
  }
  .about-experience__heading {
    grid-template-columns: 1fr;
  }
  .about-experience__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .about-stat-grid {
    grid-template-columns: 1fr;
  }
  .about-stat {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(92, 70, 122, 0.34);
  }
  .about-stat:last-child {
    border-bottom: 0;
  }
  .about-stat strong {
    font-size: 54px;
  }
  .about-experience {
    margin-top: 44px;
    padding-top: 38px;
  }
  .about-experience__grid article {
    min-height: 220px;
  }
}

/* First-visit alcohol awareness, shared by every page. */
html.alcohol-notice-open,
html.alcohol-notice-open body {
  overflow: hidden;
  overscroll-behavior: none;
}
.alcohol-notice {
  position: fixed;
  inset: 0;
  z-index: 20001;
  width: min(560px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(151, 114, 210, 0.38);
  border-radius: 18px;
  background: linear-gradient(140deg, #190b2d 0%, #0c091a 55%, #071426 100%);
  color: #faf7ff;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  box-shadow:
    0 28px 100px rgba(0, 0, 0, 0.7),
    0 0 45px rgba(82, 35, 144, 0.14);
  scrollbar-width: thin;
  scrollbar-color: #594075 #10091f;
}
.alcohol-notice:not([open]) {
  display: none;
}
.alcohol-notice[open] {
  animation: alcohol-notice-in 0.35s var(--ease) both;
}
.alcohol-notice::backdrop {
  background: rgba(3, 2, 10, 0.97);
}
.alcohol-notice.is-closing {
  animation: alcohol-notice-out 0.25s ease both;
}
.alcohol-notice.is-closing::backdrop {
  animation: alcohol-notice-backdrop-out 0.25s ease both;
}
body.alcohol-notice-fallback::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(3, 2, 10, 0.97);
}
.alcohol-notice__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 29px;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(177, 146, 223, 0.16);
}
.alcohol-notice__brand img {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.alcohol-notice__brand > div {
  display: grid;
  gap: 2px;
}
.alcohol-notice__brand strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}
.alcohol-notice__brand > div span {
  color: #b0a2c4;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.alcohol-notice__age {
  margin-left: auto;
  padding: 7px 11px;
  border: 1px solid rgba(97, 214, 246, 0.3);
  border-radius: 8px;
  background: rgba(25, 91, 127, 0.16);
  color: #83e5fa;
  font-size: 19px;
  font-weight: 700;
}
.alcohol-notice .alcohol-notice__eyebrow {
  margin: 0 0 10px;
  color: #83d7ed;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.alcohol-notice h2 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: clamp(25px, 5vw, 34px);
  font-weight: 400;
  line-height: 1.2;
  outline: none;
}
.alcohol-notice p {
  margin: 0 0 17px;
  color: #c9bfd9;
}
.alcohol-notice__audience strong {
  color: #f1eafa;
  font-weight: 600;
}
.alcohol-notice .alcohol-notice__confirmation {
  margin-top: 21px;
  color: #ada0c2;
  font-size: 13px;
}
.alcohol-notice__actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  margin-top: 23px;
}
.alcohol-notice__actions button,
.alcohol-notice__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 15px;
  border: 1px solid rgba(166, 123, 230, 0.35);
  border-radius: 7px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.alcohol-notice__continue {
  background: linear-gradient(115deg, #48217e, #252460 65%, #17385c);
}
.alcohol-notice__continue:hover {
  border-color: #bc8ded;
  box-shadow: 0 0 22px rgba(111, 65, 177, 0.26);
}
.alcohol-notice__leave {
  background: rgba(8, 6, 18, 0.4);
}
.alcohol-notice__leave:hover {
  background: #1b142b;
  border-color: #a68cc8;
}
.alcohol-notice .alcohol-notice__enquiry {
  display: block;
  margin-top: 20px;
  color: #93dfc1;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.alcohol-notice .alcohol-notice__footnote {
  margin: 22px 0 0;
  color: #a295b6;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}
.alcohol-notice button:focus-visible,
.alcohol-notice a:focus-visible {
  outline: 2px solid #83e5fa;
  outline-offset: 4px;
}
@keyframes alcohol-notice-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes alcohol-notice-out {
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}
@keyframes alcohol-notice-backdrop-out {
  to {
    background: transparent;
  }
}
@media (max-width: 460px) {
  .alcohol-notice {
    padding: 24px 21px;
    font-size: 14px;
  }
  .alcohol-notice__brand {
    gap: 10px;
    margin-bottom: 23px;
  }
  .alcohol-notice__brand strong {
    font-size: 19px;
  }
  .alcohol-notice__brand > div span {
    font-size: 9px;
  }
  .alcohol-notice__age {
    padding: 6px 9px;
    font-size: 17px;
  }
  .alcohol-notice__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .alcohol-notice[open],
  .alcohol-notice.is-closing,
  .alcohol-notice.is-closing::backdrop {
    animation: none;
  }
}
