/* ==========================================================================
   STYLE MAP
   1) Motion + fonts + tokens + base
   2) Hero
   3) Navigation + overlays (menu / hub / dev / pdf)
   4) Services cards + marquee
   5) About / story timeline
   6) Gallery
   7) Contact
   8) Footer
   9) Cookie banner + responsive overrides
   ========================================================================== */

@keyframes heroAtmosphereDrift {
0%{
  transform: scale(1) translate3d(0, 0, 0); opacity: 0.18;
}
to{
  transform: scale(1.04) translate3d(-1.2%, 1.4%, 0); opacity: 0.24;
}
}
@keyframes hubPulse {
0%{
  transform: scale(0.98); opacity: 0.56;
}
to{
  transform: scale(1.16); opacity: 0;
}
}
@keyframes hubEdgeShine {
0%{
  transform: rotate(0deg);
}
to{
  transform: rotate(360deg);
}
}
@keyframes menuLiveDot {
  0%,
to{
  opacity: 0.78; transform: translate3d(0, -50%, 0) scale(0.9);
  box-shadow:
  0 0 12px rgba(128, 227, 41, 0.34),
  0 0 22px rgba(128, 227, 41, 0.16);
}
50%{
  opacity: 1; transform: translate3d(0, -50%, 0) scale(1.14);
  box-shadow:
  0 0 18px rgba(128, 227, 41, 0.58),
  0 0 32px rgba(128, 227, 41, 0.24);
}
}
@keyframes marquee {
0%{
  transform: translate3d(0, 0, 0);
}
to{
  transform: translate3d(-50%, 0, 0);
}
}
@keyframes marqueeLoopThird {
0%{
  transform: translate3d(0, 0, 0);
}
to{
  transform: translate3d(calc(-100% / 3), 0, 0);
}
}
@keyframes contactHoursPulse {
0%{
  transform: scale(1); opacity: 0.65; box-shadow: 0 0 0 0 rgba(123, 247, 160, 0.32);
}
70%{
  transform: scale(1.08); opacity: 1; box-shadow: 0 0 0 8px transparent;
}
to{
  transform: scale(1); opacity: 0.65; box-shadow: 0 0 0 0 transparent;
}
}
@keyframes footerTerminalMarqueeLoop {
0%{
  transform: translate3d(0, 0, 0);
}
to{
  transform: translate3d(-50%, 0, 0);
}
}
@keyframes contactClosedDotPulse {
0%{
  transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 84, 84, 0.46);
}
70%{
  transform: scale(1.16); box-shadow: 0 0 0 8px transparent;
}
to{
  transform: scale(1); box-shadow: 0 0 0 0 transparent;
}
}
@font-face {
  font-family: "Satoshi";
  src: url(../assets/fonts/Satoshi-Variable.woff2) format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Clash Display";
  src: url(../assets/fonts/ClashDisplay-Variable.woff2) format("woff2");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tanker";
  src: url(../assets/fonts/Tanker-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root{
  --brand-green: #367360; --neon-green: #4ade80; --warm-white: #f8f9fa; --page-bg: #0a0a0c; --page-bg-rgb: 10, 10, 12; --glass: rgba(255, 255, 255, 0.05); --glass-border: rgba(255, 255, 255, 0.1); --font-body: "Satoshi", "Segoe UI", sans-serif; --font-display: "Clash Display", "Arial Narrow", sans-serif; --hero-edge-height: clamp(18px, 2.4vw, 34px); --radius-surface: 1.5rem; --radius-button: 12px;
  --radius-round: 999px; --space-section-x: clamp(1.1rem, 3vw, 2.4rem); --space-card: clamp(1.35rem, 2.4vw, 1.75rem); --motion-enter: 0.5s ease;
}
html{
  width: 100%; overflow-x: clip;
}
*,
::after,
::before{
  box-sizing: border-box;
}
body,
body::before{
  background-color: #050807;
}
body{
  color: var(--warm-white); overflow-x: hidden; font-family: var(--font-body);
  font-synthesis: none; margin: 0; position: relative;
  isolation: isolate;
}
body::before{
  position: fixed; z-index: -2; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); background-size: 220px 220px; background-repeat: repeat;
  mix-blend-mode: soft-light; filter: contrast(122%) brightness(101%);
}
.hero-stage::before,
body::after,
body::before{
  content: ""; inset: 0; pointer-events: none;
}
body::after{
  position: fixed; z-index: -1; mix-blend-mode: screen;
  opacity: 0.38;
  background:
  radial-gradient(
  circle at 16% 18%,
  rgba(128, 227, 41, 0.2),
  transparent 30%
  ),
  radial-gradient(
  circle at 86% 74%,
  rgba(113, 205, 34, 0.16),
  transparent 32%
  ),
  linear-gradient(
  180deg,
  rgba(0, 0, 0, 0.38) 0,
  rgba(0, 0, 0, 0.1) 36%,
  rgba(0, 0, 0, 0.48) 100%
  );
}
/* Utility layer (replaces previous Tailwind CDN usage) */
.relative{ position: relative; }
.w-full{ width: 100%; }
.h-8{ height: 2rem; }
.object-contain{ object-fit: contain; }
.flex{ display: flex; }
.flex-1{ flex: 1 1 0%; }
.flex-none{ flex: none; }
.flex-col{ flex-direction: column; }
.items-center{ align-items: center; }
.justify-start{ justify-content: flex-start; }
.justify-end{ justify-content: flex-end; }
.justify-between{ justify-content: space-between; }
.mx-auto{ margin-left: auto; margin-right: auto; }
.mt-auto{ margin-top: auto; }
.mt-6{ margin-top: 1.5rem; }
.mb-10{ margin-bottom: 2.5rem; }
.pt-10{ padding-top: 2.5rem; }
.pb-4{ padding-bottom: 1rem; }
.p-2{ padding: 0.5rem; }
.gap-2{ gap: 0.5rem; }
.text-center{ text-align: center; }
.justify-center{ justify-content: center; }
.text-base{ font-size: 1rem; line-height: 1.5rem; }
.font-black{ font-weight: 900; }
.italic{ font-style: italic; }
.normal-case{ text-transform: none; }
.uppercase{ text-transform: uppercase; }
.no-transform{ text-transform: none !important; }
.cursor-pointer{ cursor: pointer; }
.overflow-hidden{ overflow: hidden; }
.tracking-tighter{ letter-spacing: -0.025em; }
.text-\[10px\]{ font-size: 10px; line-height: 1.2; }
.tracking-\[0\.12em\]{ letter-spacing: 0.12em; }
@media (min-width: 768px) {
  .md\:text-xl{ font-size: 1.25rem; line-height: 1.75rem; }
  .md\:h-10{ height: 2.5rem; }
  .md\:text-xs{ font-size: 0.75rem; line-height: 1rem; }
}
canvas,
img,
svg,
video{
  display: block; max-width: 100%;
}
.u-icon-link{
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.hero-stage{
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: #000;
}
/* 2) Hero */
.hero-stage::before{
  position: absolute; z-index: 2;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat; opacity: 0.3; mix-blend-mode: soft-light;
  animation: heroAtmosphereDrift 18s ease-in-out infinite alternate;
  background:
  radial-gradient(
  circle at 14% 24%,
  rgba(168, 126, 78, 0.18),
  transparent 28%
  ),
  radial-gradient(
  circle at 76% 16%,
  rgba(255, 248, 234, 0.12),
  transparent 26%
  ),
  radial-gradient(circle at 52% 84%, rgba(22, 28, 26, 0.26), transparent 40%),
  linear-gradient(
  180deg,
  rgba(8, 9, 10, 0.34) 0,
  rgba(8, 9, 10, 0.12) 26%,
  rgba(8, 9, 10, 0.28) 100%
  ),
  url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='heroFilmNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23heroFilmNoise)'/%3E%3C/svg%3E");
  background-size:
  auto,
  auto,
  auto,
  auto,
  180px 180px;
}
.hero-section{
  min-height: 100vh; min-height: 100svh; height: 100vh;
  height: 100svh; touch-action: pan-y;
}
@supports (height: 100dvh) {
.hero-section{
  min-height: 100dvh; height: 100dvh;
}
}
.hero-stage::after{
  content: ""; left: 0; right: 0;
  bottom: 0; height: clamp(144px, 24vh, 280px); box-shadow: inset 0-22px 34px rgba(var(--page-bg-rgb), 0.44);
  background: linear-gradient(
  to bottom,
  rgba(var(--page-bg-rgb), 0) 0%,
  rgba(var(--page-bg-rgb), 0.24) 20%,
  rgba(var(--page-bg-rgb), 0.58) 46%,
  rgba(var(--page-bg-rgb), 0.9) 72%,
  rgba(var(--page-bg-rgb), 1) 100%
  );
}
.hero-slide{
  position: absolute; inset: -5%; background-size: cover; background-position: center; opacity: 0; transform: scale(1.025) translate3d(0, 0, 0); filter: brightness(0.84) saturate(1.04) contrast(1.16); will-change: opacity, transform, filter; backface-visibility: hidden; transform-origin: center center; z-index: 1;
  transition:
  opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
  filter 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide.is-active{
  opacity: 1; z-index: 3; filter: brightness(0.9) saturate(1.05) contrast(1.2);
}
.hero-slide.is-leaving{
  opacity: 0; z-index: 2; filter: brightness(0.84) saturate(1.01) contrast(1.12);
  pointer-events: none;
}
.hero-stage::after,
.hero-vignette{
  position: absolute; z-index: 11; pointer-events: none;
}
.hero-vignette{
  inset: 0;
  background:
  radial-gradient(
  circle at 50% 46%,
  rgba(255, 255, 255, 0) 20%,
  rgba(18, 20, 22, 0.16) 42%,
  rgba(7, 8, 9, 0.34) 68%,
  rgba(0, 0, 0, 0.62) 100%
  ),
  linear-gradient(
  90deg,
  rgba(6, 7, 8, 0.74) 0,
  rgba(6, 7, 8, 0.4) 16%,
  rgba(6, 7, 8, 0.08) 34%,
  rgba(6, 7, 8, 0) 48%,
  rgba(6, 7, 8, 0.12) 74%,
  rgba(6, 7, 8, 0.62) 100%
  ),
  linear-gradient(
  180deg,
  rgba(6, 7, 8, 0.38) 0,
  rgba(6, 7, 8, 0.1) 22%,
  rgba(6, 7, 8, 0.2) 56%,
  rgba(0, 0, 0, 0.48) 100%
  );
}
.hero-content{
  position: relative; z-index: 20; width: 100%;
  min-height: 100%; padding-inline: 2rem; padding-top: clamp(6.5rem, 13vh, 8.8rem);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding-bottom: calc(
  env(safe-area-inset-bottom, 0) + clamp(2.75rem, 7.2vh, 4.15rem)
  );
}
.hero-copy-stack{
  width: min(100%, 56rem); display: grid; gap: clamp(0.68rem, 1.55vh, 1rem);
  transform: translateY(1.15rem);
}
.hero-title-wrap{
  width: min(100%, 44rem); min-height: 2.18em; text-align: left;
}
.hero-title-display{
  margin: 0; font-family: "Tanker", var(--font-display); font-size: clamp(4rem, 10vw, 9.4rem); line-height: 0.79; font-weight: 400; color: rgba(255, 248, 239, 0.96); letter-spacing: 0.02em; font-kerning: normal; text-align: left; text-wrap: balance; display: grid; align-content: end;
  min-height: 2.18em; opacity: 1; filter: blur(0);
  transition:
  opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
  filter 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-title-display:not(.is-visible){
  opacity: 0; filter: blur(0.9px);
}
.hero-title-line{
  display: flex; flex-wrap: wrap; gap: 0 0.16em;
  overflow: visible; padding-block: 0.01em 0.06em;
}
.hero-title-line + .hero-title-line{
  margin-top: -0.12em;
}
.hero-title-word-shell{
  display: inline-flex; overflow: hidden; padding-block: 0.18em 0.24em;
  padding-inline: 0.05em 0.02em;
}
.hero-title-display.is-visible .hero-title-word-shell{
  overflow: visible;
}
.hero-title-word{
  display: inline-block; transition: none; will-change: auto;
}
.hero-subtitle-main,
.hero-title-display.is-visible .hero-title-word,
.hero-title-word{
  opacity: 1; transform: none;
}
.hero-subtitle-main{
  margin: 0; max-width: 22rem; min-height: 0; font-family: var(--font-body); font-size: clamp(1.08rem, 1.2vw, 1.18rem); letter-spacing: 0.01em; line-height: 1.45; text-align: left; text-transform: none; text-wrap: balance; color: rgba(255, 255, 255, 0.68);
}
@media (min-width: 768px) {
.hero-content{
  padding-inline: clamp(1.8rem, 3vw, 2.75rem); padding-top: clamp(6.1rem, 10vh, 7.6rem);
  padding-bottom: calc(
  env(safe-area-inset-bottom, 0) + clamp(3.25rem, 8.2vh, 4.9rem)
  );
}
.hero-copy-stack{
  width: min(100%, 48rem); gap: clamp(0.64rem, 1.45vh, 0.92rem); transform: translateY(0.8rem);
}
.hero-subtitle-main{
  max-width: 25rem; min-height: 0; font-size: clamp(1.08rem, 1.05vw, 1.22rem);
  line-height: 1.42;
}
.hero-title-wrap{
  width: min(100%, 38rem); min-height: 2.18em;
}
.hero-title-display{
  font-size: clamp(3.7rem, 7.2vw, 7rem); line-height: 0.79; letter-spacing: 0.02em;
}
}
@media (min-width: 1200px) {
.hero-content{
  width: min(calc(95% + 72px), 1272px); max-width: 1272px; margin-inline: auto;
  padding-inline: 1rem;
}
.hero-copy-stack{
  width: min(100%, 42rem);
}
.nav-bar-body{
  padding: 0 1.08rem;
}
#trigger-open{
  margin-right: -0.1rem;
}
}
@media (max-width: 374px) {
body::before{
  opacity: 0.04; background-size: 180px 180px;
}
/* 3) Navigation + overlays */
.nav-container{
  top: 0.55rem; width: calc(100% - 0.5rem);
}
.nav-bar-body{
  height: 52px; padding: 0 0.62rem;
}
.nav-bar-body > .nav-brand-slot img{
  height: 22px;
}
#trigger-open{
  margin-right: -0.12rem; padding: 0.35rem;
}
.nav-menu-icon{
  width: 27px;
}
#btn-hub{
  width: 60px; height: 60px; border-radius: 50%;
}
.hub-label{
  max-width: 50px; font-size: 6.4px; gap: 0;
  line-height: 1.12; letter-spacing: 0.05em; word-spacing: 0.12em;
}
.hero-content{
  padding-inline: 0.75rem; padding-top: calc(env(safe-area-inset-top, 0) + 5.2rem); padding-bottom: calc(env(safe-area-inset-bottom, 0) + 3.55rem);
}
.hero-title-wrap{
  transform: translateY(-0.15rem); width: min(100%, 18.5rem); min-height: 2.12em;
}
.hero-title-display{
  font-size: clamp(2.9rem, 12vw, 4.4rem); line-height: 0.96; letter-spacing: 0.03em;
}
.hero-subtitle-main{
  max-width: 15rem; min-height: 2.2rem; font-size: 0.98rem;
  line-height: 1.34;
}
}
@media (max-width: 374px) and (max-height: 600px) {
.hero-content{
  padding-top: calc(env(safe-area-inset-top, 0) + 4.8rem); padding-bottom: calc(env(safe-area-inset-bottom, 0) + 3.2rem);
}
.hero-title-wrap{
  transform: translateY(-0.2rem);
}
.hero-title-display{
  font-size: clamp(2.4rem, 11vw, 3.6rem); line-height: 0.97;
}
.hero-subtitle-main{
  font-size: 0.88rem;
}
}
.hero-slide:nth-child(1){
  background-image: url(../assets/img/home/hero-section/beer.avif);
}
.hero-slide:nth-child(2){
  background-image: url(../assets/img/home/hero-section/food.avif);
}
.hero-slide:nth-child(3){
  background-image: url(../assets/img/home/hero-section/catering.avif);
}
.hero-slide:nth-child(4){
  background-image: url(../assets/img/home/hero-section/event.avif);
}
.hero-slide:nth-child(5){
  background-image: url(../assets/img/home/hero-section/rooftop.avif);
}
@media (max-width: 767px) {
.hero-slide{
  background-position: center center;
}
.hero-slide:nth-child(2){
  background-position: 42%center;
}
.hero-slide:nth-child(3){
  background-position: 58%center;
}
.hero-slide:nth-child(5){
  background-position: 60%center;
}
.nav-container{
  top: 1.1rem; width: 92%;
}
  #btn-hub,
.glass-ui{
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.nav-overlay{
  backdrop-filter: blur(14px) saturate(106%); -webkit-backdrop-filter: blur(14px) saturate(106%);
}
#btn-hub::before{
  animation: hubEdgeShine 8s linear infinite; opacity: 0.52;
}
.nav-bar-body{
  padding: 0 0.88rem;
}
.nav-bar-body > .nav-brand-slot{
  margin-left: -0.28rem;
}
#trigger-open{
  margin-right: -0.14rem;
}
.nav-menu-icon{
  width: 32px;
}
  .overlay-content-shell,
.overlay-head-row{
  width: 100%;
}
  .hub-sheet-wrap,
.overlay-menu-shell{
  justify-content: center; padding-top: 0.8rem; padding-bottom: 0.4rem;
}
.dev-overlay-head{
  padding: max(0.9rem, calc(env(safe-area-inset-top, 0) + 0.35rem))
  max(1.1rem, calc(env(safe-area-inset-right, 0) + 0.8rem)) 0
  max(1.1rem, calc(env(safe-area-inset-left, 0) + 0.8rem));
}
.dev-overlay-shell{
  min-height: 100dvh; height: 100dvh;
}
.dev-title{
  font-size: clamp(2.7rem, 11.5vw, 4.3rem);
}
.dev-message{
  font-size: 0.95rem; line-height: 1.45; letter-spacing: 0.01em;
}
.dev-actions{
  width: 100%; gap: 0.4rem;
}
.dev-overlay-content{
  width: min(calc(100% - 1.5rem), 30rem);
}
.dev-brand-link{
  width: min(100%, 7rem);
}
.dev-action-link{
  min-height: 38px;
}
.dev-actions .service-delivery-btn{
  min-width: 3rem; height: 3rem;
}
.dev-actions .service-delivery-btn img{
  max-width: 2.86rem; max-height: 2.12rem;
}
.services-marquee-section{
  padding-top: 0.8rem; padding-bottom: 1.6rem;
}
.marquee-band{
  height: auto; min-height: 4.95rem; margin-top: 0.5rem;
  padding-top: 1rem; padding-bottom: 0.68rem;
}
.marquee-inner{
  padding: 0.1rem 1rem 0.2rem; margin-left: 0.75rem; transform: translate3d(0, 0, 0);
}
.marquee-band.is-looping .marquee-inner{
  padding: 0.1rem 0 0.2rem; margin-left: 0;
}
.marquee-item{
  min-width: 7.25rem; padding: 0 0.28rem;
}
.marquee-number{
  line-height: 0.9;
}
.marquee-text{
  margin-top: 0.2rem; font-size: 0.7rem; letter-spacing: 0.025em;
  line-height: 1.05;
}
}
@media (min-width: 1200px) {
.about-premium-shell{
  width: min(calc(95% + 72px), 1272px); max-width: 1272px;
}
.about-premium-copy{
  width: min(100%, 72rem); margin-inline: auto; padding-inline: 1rem;
}
.about-premium-heritage{
  max-width: 14ch;
}
.about-premium-experience{
  max-width: 48rem;
}
}
@media (prefers-reduced-motion: reduce) {
.hero-title-word{
  transition: opacity 0.2s linear; opacity: 1; transform: none;
}
.menu-link-active::before{
  animation: none;
}
}
.glass-ui{
  background: var(--glass); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
}
.nav-container{
  position: fixed; top: 1.8rem; left: 50%;
  transform: translateX(-50%); width: min(calc(95% + 72px), 1272px); max-width: 1272px;
  z-index: 100;
  transition:
  transform var(--motion-enter),
  opacity var(--motion-enter),
  visibility var(--motion-enter);
}
body.nav-overlay-open .nav-container{
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-0.75rem);
}
.nav-bar-body{
  width: 100%; height: 66px; display: flex;
  align-items: center; justify-content: space-between; padding: 0 1.02rem;
  border-radius: 18px; border: 1.5px solid var(--glass-border); position: relative;
  mask: radial-gradient(
  circle 49px at 50% 50%,
  rgba(255, 255, 255, 0) 88%,
  rgba(255, 255, 255, 0.72) 93%,
  #fff 100%
  );
  -webkit-mask: radial-gradient(
  circle 49px at 50% 50%,
  rgba(255, 255, 255, 0) 88%,
  rgba(255, 255, 255, 0.72) 93%,
  #fff 100%
  );
  transition:
  transform 0.28s ease,
  border-color 0.28s ease,
  background-color 0.28s ease,
  box-shadow 0.28s ease;
}
.nav-bar-body::after,
.nav-bar-body::before{
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
}
.nav-bar-body::before{
  z-index: 0; opacity: 0.82;
  background:
  radial-gradient(
  circle 51px at 50% 50%,
  rgba(255, 255, 255, 0) 80%,
  rgba(255, 255, 255, 0.2) 83%,
  rgba(255, 255, 255, 0.08) 85.5%,
  rgba(255, 255, 255, 0.02) 88%,
  rgba(255, 255, 255, 0) 91%
  ),
  radial-gradient(
  circle 48px at 50% 50%,
  transparent 84%,
  rgba(8, 10, 12, 0.18) 88%,
  transparent 92%
  ),
  radial-gradient(
  circle 70px at 50% 42%,
  rgba(74, 222, 128, 0.14) 0,
  rgba(74, 222, 128, 0.06) 28%,
  rgba(74, 222, 128, 0) 58%
  );
}
.nav-bar-body::after{
  z-index: 0; opacity: 0.55;
  background:
  radial-gradient(
  circle 57px at 50% 5px,
  rgba(255, 255, 255, 0.12),
  rgba(255, 255, 255, 0) 58%
  ),
  linear-gradient(
  180deg,
  rgba(255, 255, 255, 0.06),
  rgba(255, 255, 255, 0) 44%
  );
}
.nav-bar-body > *{
  position: relative; z-index: 1;
}
.nav-bar-body > .nav-brand-slot{
  margin-left: -0.28rem;
}
.nav-brand-slot > a{
  display: inline-flex; padding: 0.42rem;
}
#btn-hub,
#trigger-open,
.nav-brand-slot > a{
  align-items: center; justify-content: center;
}
#btn-hub{
  --hub-accent-rgb: 56, 168, 104; --hub-accent-strong-rgb: 212, 248, 224; --hub-accent-glow-rgb: 76, 196, 124; --hub-edge-soft-rgb: 72, 184, 118; --hub-edge-strong-rgb: 222, 250, 231; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 76px; height: 76px; border-radius: 50%;
  display: flex; z-index: 101; cursor: pointer; overflow: visible; color: rgba(248, 251, 255, 0.98); border: 1px solid var(--glass-border); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  background:
  radial-gradient(
  circle at 50% 34%,
  rgba(var(--hub-accent-rgb), 0.34),
  rgba(var(--hub-accent-rgb), 0.14) 34%,
  rgba(var(--hub-accent-rgb), 0) 68%
  ),
  var(--glass);
  box-shadow:
  inset 0 0 20px rgba(var(--hub-accent-glow-rgb), 0.2),
  inset 0 1px 0 rgba(255, 255, 255, 0.08),
  0 10px 24px rgba(0, 0, 0, 0.34),
  0 0 0 rgba(var(--hub-accent-glow-rgb), 0);
  transition:
  transform 0.24s ease,
  box-shadow 0.28s ease,
  border-color 0.28s ease,
  background 0.28s ease;
}
.nav-container.is-away-from-hero .nav-bar-body{
  border-color: rgba(255, 255, 255, 0.16); backdrop-filter: blur(22px) saturate(132%) brightness(0.78) contrast(1.06);
  background: linear-gradient(
  180deg,
  rgba(255, 255, 255, 0.14),
  rgba(255, 255, 255, 0.08)
  );
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.14),
  0 10px 24px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(22px) saturate(132%) brightness(0.78)
  contrast(1.06);
}
.nav-container.is-away-from-hero #btn-hub{
  border-color: rgba(var(--hub-accent-rgb), 0.16); backdrop-filter: blur(22px) saturate(136%) brightness(0.76) contrast(1.08);
  background:
  radial-gradient(
  circle at 50% 32%,
  rgba(var(--hub-accent-rgb), 0.42),
  rgba(var(--hub-accent-rgb), 0.18) 34%,
  rgba(var(--hub-accent-rgb), 0) 66%
  ),
  linear-gradient(
  180deg,
  rgba(255, 255, 255, 0.16),
  rgba(255, 255, 255, 0.09)
  );
  box-shadow:
  inset 0 0 22px rgba(var(--hub-accent-glow-rgb), 0.24),
  inset 0 1px 0 rgba(255, 255, 255, 0.14),
  0 10px 24px rgba(0, 0, 0, 0.18),
  0 0 22px rgba(var(--hub-accent-glow-rgb), 0.18);
  -webkit-backdrop-filter: blur(22px) saturate(136%) brightness(0.76)
  contrast(1.08);
}
.nav-container.is-away-from-hero .hub-label{
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}
#trigger-open{
  position: relative; display: inline-flex; margin-right: -0.28rem;
  padding: 0.34rem;
}
.nav-menu-icon{
  width: 34px; height: auto; opacity: 0.92;
  transition:
  transform 0.28s ease,
  opacity 0.28s ease,
  filter 0.28s ease;
}
#trigger-open:focus-visible .nav-menu-icon,
#trigger-open:hover .nav-menu-icon{
  transform: translateY(-1px) scale(1.04); opacity: 1; filter: brightness(1.06);
}
#btn-hub::after,
#btn-hub::before{
  content: ""; position: absolute; border-radius: 50%;
  pointer-events: none;
}
#btn-hub::before{
  inset: -1px; opacity: 0.68; animation: hubEdgeShine 8s linear infinite;
  background: conic-gradient(
  from 220deg,
  rgba(255, 255, 255, 0) 0deg,
  rgba(255, 255, 255, 0) 62deg,
  rgba(var(--hub-accent-strong-rgb), 0.52) 96deg,
  rgba(var(--hub-accent-rgb), 0.2) 128deg,
  rgba(255, 255, 255, 0) 172deg,
  rgba(255, 255, 255, 0) 360deg
  );
  -webkit-mask: radial-gradient(
  farthest-side,
  transparent calc(100% - 2px),
  #000 calc(100% - 1px)
  );
  mask: radial-gradient(
  farthest-side,
  transparent calc(100% - 2px),
  #000 calc(100% - 1px)
  );
}
#btn-hub::after{
  inset: 1px; opacity: 1;
  background:
  radial-gradient(
  circle at 26% 18%,
  rgba(var(--hub-edge-strong-rgb), 0.38),
  rgba(var(--hub-edge-strong-rgb), 0) 34%
  ),
  linear-gradient(
  145deg,
  rgba(var(--hub-edge-soft-rgb), 0.4) 0%,
  rgba(var(--hub-edge-soft-rgb), 0.22) 18%,
  rgba(255, 255, 255, 0) 38%,
  rgba(255, 255, 255, 0) 62%,
  rgba(var(--hub-accent-rgb), 0.2) 82%,
  rgba(var(--hub-accent-rgb), 0.38) 100%
  );
  -webkit-mask: radial-gradient(
  farthest-side,
  transparent calc(100% - 2.5px),
  #000 calc(100% - 1.2px)
  );
  mask: radial-gradient(
  farthest-side,
  transparent calc(100% - 2.5px),
  #000 calc(100% - 1.2px)
  );
}
#btn-hub[data-hub-tone="beer"]{
  --hub-accent-rgb: 255, 225, 72; --hub-accent-strong-rgb: 255, 245, 183; --hub-accent-glow-rgb: 255, 214, 68;
  --hub-edge-soft-rgb: 255, 225, 72; --hub-edge-strong-rgb: 255, 244, 201;
}
#btn-hub[data-hub-tone="events"]{
  --hub-accent-rgb: 82, 204, 255; --hub-accent-strong-rgb: 212, 244, 255; --hub-accent-glow-rgb: 72, 188, 255;
  --hub-edge-soft-rgb: 82, 204, 255; --hub-edge-strong-rgb: 212, 244, 255;
}
#btn-hub[data-hub-tone="catering"]{
  --hub-accent-rgb: 255, 150, 84; --hub-accent-strong-rgb: 255, 225, 192; --hub-accent-glow-rgb: 255, 144, 74;
  --hub-edge-soft-rgb: 255, 150, 84; --hub-edge-strong-rgb: 255, 225, 192;
}
#btn-hub:hover{
  transform: translate(-50%, -50%) scale(1.045); border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.1),
  0 14px 34px rgba(0, 0, 0, 0.46);
}
#btn-hub:active{
  transform: translate(-50%, -50%) scale(0.968);
}
.hub-label{
  position: relative; z-index: 2; display: inline-flex; flex-direction: column; align-items: center; gap: 0.12rem; max-width: 66px; font-size: 8.8px; font-weight: 700;
  letter-spacing: 0.05em; word-spacing: 0.14em; line-height: 1.16; text-align: center; color: rgba(248, 251, 255, 0.98); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}
.hub-label-line{
  display: block;
}
.pulse-ring-outer{
  position: absolute; inset: -4px; z-index: 1; border: 1.25px solid rgba(var(--hub-accent-rgb), 0.82); border-radius: 50%; animation: hubPulse 2.1s ease-out infinite; pointer-events: none; transform-origin: center; will-change: transform, opacity; box-shadow: 0 0 18px rgba(var(--hub-accent-glow-rgb), 0.2);
}
.master-overlay{
  position: fixed; inset: 1rem; z-index: 9999; border-radius: var(--radius-surface); display: none; flex-direction: column; padding: 2rem; opacity: 0; transform: translate3d(0, 20px, 0); overflow-y: auto;
  transition:
  transform var(--motion-enter),
  opacity var(--motion-enter);
}
@media (min-width: 768px) {
.master-overlay{
  inset: 2rem; border-radius: var(--radius-surface); padding: 4rem;
}
}
.master-overlay.active{
  display: flex; opacity: 1; transform: translate3d(0, 0, 0);
}
.nav-overlay{
  border: 1px solid rgba(255, 255, 255, 0.08); backdrop-filter: blur(18px) saturate(110%); -webkit-backdrop-filter: blur(18px) saturate(110%);
  background:
  radial-gradient(
  circle at 18% 12%,
  rgba(170, 212, 255, 0.1),
  transparent 28%
  ),
  radial-gradient(
  circle at 86% 84%,
  rgba(104, 150, 198, 0.11),
  transparent 32%
  ),
  linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0.28) 0,
  rgba(0, 0, 0, 0.12) 22%,
  rgba(0, 0, 0, 0.14) 78%,
  rgba(0, 0, 0, 0.34) 100%
  ),
  linear-gradient(180deg, rgba(7, 10, 9, 0.68) 0, rgba(5, 8, 7, 0.58) 100%),
  radial-gradient(
  circle at 76% -24%,
  rgba(140, 220, 50, 0.11),
  transparent 44%
  );
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.05),
  inset 0-8px 20px rgba(0, 0, 0, 0.18),
  0 18px 36px rgba(0, 0, 0, 0.24);
}
.overlay-content-shell,
.overlay-head-row{
  width: min(100%, 32rem); margin-inline: auto;
}
.overlay-head-row{
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.overlay-menu-shell{
  text-align: center;
}
#master-menu{
  --menu-link-size: clamp(2.9rem, 9.2vw, 3.55rem); --menu-link-leading: 1.08; --menu-link-offset: clamp(1.7rem, 2vw, 2rem);
  --menu-index-size: clamp(0.7rem, 1.4vw, 0.78rem);
}
#master-menu .overlay-head-row{
  align-items: center; gap: 1rem; margin-bottom: 0.62rem !important;
  padding-bottom: 0 !important; border-bottom: 0;
}
#master-menu .overlay-menu-shell{
  flex: 1 1 auto; position: relative; justify-content: center; counter-reset: sidebar-menu-index; min-height: 0; overflow: visible; gap: 0; padding-block: 5.4rem 1.25rem; padding-inline: 0; align-self: center; align-items: center;
}
.hub-sheet-wrap{
  width: min(100%, 31rem); max-width: 31rem; overflow-x: clip; justify-content: flex-start; align-self: center; margin-top: 0; padding-top: 0; padding-bottom: 0;
}
@media (min-width: 1200px) {
  .overlay-content-shell,
.overlay-head-row{
  width: min(100%, 29.5rem);
}
}
#hub-overlay{
  position: fixed; isolation: isolate; overflow-x: hidden; overscroll-behavior: contain; overscroll-behavior-x: none; touch-action: pan-y pinch-zoom; background: 0 0 !important; border: 0 !important; box-shadow: none !important;
  backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
}
#master-menu,
.close-button{
  align-items: center; justify-content: center;
}
#master-menu{
  position: fixed; isolation: isolate; overflow-x: hidden; overscroll-behavior: contain; overscroll-behavior-x: none; background: 0 0 !important; border: 0 !important; box-shadow: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important;
}
#hub-overlay.master-overlay,
#master-menu.master-overlay{
  padding: 0;
}
#hub-overlay .hub-sheet-wrap.overlay-content-shell::before,
#hub-overlay::after,
#hub-overlay::before,
#master-menu::after,
#master-menu::before{
  content: none;
}
#hub-overlay > *{
  position: relative; z-index: 1;
}
.close-button{
  position: relative; display: inline-flex; width: 48px; height: 48px; padding: 0; border: 1.5px solid rgba(255, 255, 255, 0.2); border-radius: 999px; background: 0 0; color: transparent; cursor: pointer; box-shadow: none; backdrop-filter: none;
  -webkit-backdrop-filter: none; appearance: none; -webkit-appearance: none;
  transition:
  transform 0.22s ease,
  border-color 0.22s ease,
  background-color 0.22s ease,
  box-shadow 0.22s ease;
}
.close-button::after,
.close-button::before{
  content: ""; position: absolute; width: 18px;
  height: 1.5px; border-radius: 999px; background: rgba(248, 249, 250, 0.94);
  transition:
  transform 0.22s ease,
  background-color 0.22s ease,
  opacity 0.22s ease;
}
.close-button::before{
  transform: rotate(45deg);
}
.close-button::after{
  transform: rotate(-45deg);
}
.close-button:focus-visible,
.close-button:hover{
  transform: translateY(-1px) scale(1.03); border-color: rgba(128, 227, 41, 0.34); background: 0 0;
  box-shadow: none;
}
.close-button:focus-visible::after,
.close-button:focus-visible::before,
.close-button:hover::after,
.close-button:hover::before{
  background: var(--warm-white);
}
.close-button:active{
  transform: scale(0.97);
}
.close-button:focus-visible{
  outline: 0;
}
.close-button--contrast{
  border-color: rgba(190, 255, 226, 0.42); background: rgba(9, 12, 14, 0.96); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
  0 0 0 1px rgba(190, 255, 226, 0.14),
  0 0 18px rgba(102, 255, 196, 0.18),
  0 18px 38px rgba(0, 0, 0, 0.32),
  0 4px 14px rgba(0, 0, 0, 0.22);
}
.close-button--contrast::after,
.close-button--contrast::before{
  background: rgba(255, 255, 255, 0.96); width: 20px; height: 2px;
}
.close-button--contrast:focus-visible,
.close-button--contrast:hover{
  background: rgba(14, 18, 20, 0.98); border-color: rgba(128, 227, 41, 0.62);
  box-shadow:
  0 0 0 1px rgba(128, 227, 41, 0.22),
  0 0 24px rgba(128, 227, 41, 0.28),
  0 20px 40px rgba(0, 0, 0, 0.34),
  0 5px 15px rgba(0, 0, 0, 0.22);
}
.overlay-close-btn{
  flex: 0 0 auto;
}
.dev-close-btn{
  flex: 0 0 auto; margin-left: auto;
}
.dev-overlay{
  inset: 0; padding: 0; border-radius: 0;
  background: #000; overflow: hidden;
}
.dev-overlay-head{
  position: absolute; z-index: 3; top: 0;
  left: 0; right: 0; width: 100%;
  margin: 0; box-sizing: border-box;
  padding: max(1rem, calc(env(safe-area-inset-top, 0) + 0.5rem))
  max(1.35rem, calc(env(safe-area-inset-right, 0) + 1.1rem)) 0
  max(1.35rem, calc(env(safe-area-inset-left, 0) + 1.1rem));
}
.dev-brand-link{
  display: inline-flex; align-items: center; text-decoration: none;
  width: min(100%, 8.6rem);
}
.dev-brand-link .hub-clean-brand-lockup{
  width: 100%; max-width: 136px; opacity: 0.96;
}
.dev-overlay-shell{
  position: relative; width: 100vw; min-width: 100vw;
  height: 100vh; min-height: 100vh; overflow: hidden;
  background: #000; --dev-hero-image: url("../assets/img/home/hero-section/beer.avif"); --dev-hero-position: center;
}
.dev-overlay-shell::after,
.dev-overlay-shell::before{
  content: ""; position: absolute; inset: 0;
  pointer-events: none;
}
.dev-overlay-shell::before{
  background: var(--dev-hero-image) var(--dev-hero-position) / cover no-repeat; transform: scale(1.03); filter: contrast(1.1) brightness(0.9);
}
.dev-overlay-shell::after{
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.9);
  background:
  radial-gradient(
  circle at 50% 42%,
  rgba(0, 0, 0, 0.24) 14%,
  rgba(0, 0, 0, 0.42) 34%,
  rgba(0, 0, 0, 0.78) 68%,
  rgba(0, 0, 0, 0.96) 100%
  ),
  linear-gradient(
  180deg,
  rgba(0, 0, 0, 0.72) 0,
  rgba(0, 0, 0, 0.18) 26%,
  rgba(0, 0, 0, 0.3) 55%,
  rgba(0, 0, 0, 0.84) 100%
  );
}
.dev-overlay-content{
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%, -50%); width: min(calc(100% - 2rem), 36rem); display: grid; justify-items: center; gap: clamp(0.8rem, 1.5vw, 1rem); text-align: center;
}
.dev-title{
  margin: 0; font-family: "Tanker", var(--font-display); font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 6.1rem); letter-spacing: 0.02em; line-height: 0.92;
  padding-block: 0.1em 0.16em; color: rgba(255, 248, 239, 0.96); text-wrap: balance;
}
.dev-message{
  max-width: 28rem; font-size: clamp(1rem, 0.97rem + 0.38vw, 1.12rem); font-weight: 500;
  line-height: 1.48; letter-spacing: 0.01em; text-wrap: pretty;
  color: rgba(255, 248, 239, 0.86); text-shadow: 0 1px 10px rgba(0, 0, 0, 0.26);
}
.dev-actions{
  --service-card-button-border: rgba(255, 255, 255, 0.24); --service-card-button-text: rgba(255, 255, 255, 0.88); --service-card-button-hover-bg: rgba(255, 255, 255, 0.05); --service-card-button-hover-border: rgba(255, 255, 255, 0.4); --service-card-button-hover-glow: rgba(255, 255, 255, 0.12); display: flex; flex-wrap: wrap; justify-content: center; gap: 0.58rem; width: min(100%, 30rem); margin-top: 0.55rem;
}
.dev-action-link{
  flex: 0 0 auto; min-width: 0;
}
.dev-actions .service-delivery-btn{
  flex: 0 0 auto; width: auto; min-width: 3.28rem;
  height: 3.28rem;
}
.dev-actions .service-delivery-btn img{
  max-width: 3.14rem; max-height: 2.38rem;
}
.pdf-overlay{
  inset: 0; border-radius: 0; padding: 0;
  background: rgba(0, 0, 0, 0.92); overflow: hidden;
}
.pdf-overlay-shell{
  position: relative; width: 100%; height: 100%;
  padding: 1rem;
}
.pdf-overlay-frame{
  width: 100%; height: 100%; border: 0;
  border-radius: var(--radius-surface); background: #111;
}
.pdf-overlay-close{
  position: fixed; top: max(1rem, calc(env(safe-area-inset-top, 0) + 0.35rem)); right: max(1rem, calc(env(safe-area-inset-right, 0) + 0.35rem));
  z-index: 10020; width: 54px; height: 54px;
  pointer-events: auto;
}
.external-page-overlay .pdf-overlay-frame{
  background: #fff; border-radius: 0;
}
.external-page-overlay .pdf-overlay-shell{
  padding: 0;
}
.menu-link{
  position: relative; counter-increment: sidebar-menu-index; flex: none; display: inline-flex; align-items: center; justify-content: center; padding-left: var(--menu-link-offset); font-family: "Tanker", var(--font-display); font-size: var(--menu-link-size); font-weight: 400; line-height: var(--menu-link-leading); letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.76); text-decoration: none; opacity: 0; filter: blur(10px); transform: translate3d(0, 5px, 0); will-change: transform, opacity, filter; text-align: center;
  transition:
  color 0.4s ease,
  opacity 0.4s ease,
  text-shadow 0.4s ease,
  letter-spacing 0.32s ease,
  transform 0.4s ease,
  filter 0.4s ease;
}
#master-menu.active .menu-link{
  opacity: 0.62; filter: blur(0); transform: translate3d(0, 0, 0);
}
#master-menu.active .menu-link:nth-child(1){
  transition-delay: 0s;
}
#master-menu.active .menu-link:nth-child(2){
  transition-delay: 0.07s;
}
#master-menu.active .menu-link:nth-child(3){
  transition-delay: 0.14s;
}
#master-menu.active .menu-link:nth-child(4){
  transition-delay: 0.21s;
}
#master-menu.active .menu-link:nth-child(5){
  transition-delay: 0.28s;
}
#master-menu.active .menu-link:nth-child(6){
  transition-delay: 0.35s;
}
#master-menu.active .menu-link:nth-child(7){
  transition-delay: 0.42s;
}
#master-menu.active .menu-link:nth-child(8){
  transition-delay: 0.49s;
}
.menu-link::before{
  content: counter(sidebar-menu-index, decimal-leading-zero); position: absolute; left: 0; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: var(--menu-index-size); font-weight: 500; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.66); line-height: 1;
}
.menu-link::after{
  content: ""; position: absolute; right: -1rem; top: 50%; width: 0.52rem; height: 0.52rem; border-radius: 999px; background: var(--neon-green); box-shadow: 0 0 14px rgba(128, 227, 41, 0.34); opacity: 0; transform: translate3d(0, -50%, 0) scale(0.8);
  transition:
  opacity 0.4s ease,
  transform 0.4s ease,
  box-shadow 0.4s ease;
}
.menu-link:focus-visible,
.menu-link:hover{
  color: #fff; opacity: 1 !important; text-shadow: 0 0 16px rgba(248, 249, 250, 0.08);
}
.menu-link:focus-visible::after,
.menu-link:hover::after{
  opacity: 1; transform: translate3d(0, -50%, 0) scale(1); animation: menuLiveDot 2s ease-in-out infinite;
}
.menu-link:focus-visible{
  outline: 0;
}
.menu-link-active{
  color: #fff !important; opacity: 1 !important; font-weight: 400;
  -webkit-text-stroke: 0 !important; text-shadow: 0 0 16px rgba(248, 249, 250, 0.08) !important;
}
.menu-link-active::after{
  opacity: 1; transform: translate3d(0, -50%, 0) scale(1); animation: menuLiveDot 2s ease-in-out infinite;
}
@media (max-width: 374px) {
#master-menu .overlay-menu-shell{
  padding-top: 0.9rem; padding-bottom: 0.3rem;
}
}
#hub-overlay .hub-sheet-wrap.overlay-content-shell{
  width: min(100%, 31rem); max-width: 31rem; position: relative; align-self: center; margin-inline: auto; margin-top: 0; padding: 0; border-radius: 0; background: 0 0;
  border: 0; box-shadow: none; overflow: visible;
}
@media (min-width: 1200px) {
  #hub-overlay .hub-sheet-wrap.overlay-content-shell,
.hub-sheet-wrap{
  width: min(100%, 31rem); max-width: 31rem;
}
}
#hub-overlay .hub-sheet-wrap.overlay-content-shell > *{
  position: relative; z-index: 1;
}
.social-link{
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; opacity: 1;
  transition:
  transform 0.2s ease,
  opacity 0.2s ease;
}
.social-link:hover{
  transform: scale(1.08); opacity: 1;
}
.social-link img{
  width: 22px; height: 22px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.menu-footer-block{
  padding-top: clamp(1.8rem, 4.2vh, 2.5rem);
  gap: clamp(0.95rem, 2.6vh, 1.35rem);
}
.menu-social-row{
  display: flex; align-items: center;
  gap: clamp(0.56rem, 1.5vw, 0.74rem);
}
.menu-footer-copy{
  margin-top: 0 !important;
}
.services-marquee-section{
  position: relative; z-index: 1; padding: clamp(0.85rem, 1.8vw, 1.3rem) 1.25rem clamp(2rem, 4vw, 3rem);
}
.services-marquee-shell{
  width: min(1120px, 100%); max-width: 1120px; margin: 0 auto;
}
.marquee-band{
  position: relative; width: 100%; height: auto; min-height: clamp(4.8rem, 6.8vw, 6rem); overflow-x: hidden; overflow-y: visible; white-space: nowrap; z-index: 4; padding-top: clamp(1.4rem, 2.8vw, 2rem); padding-bottom: clamp(0.16rem, 0.4vw, 0.38rem); background: 0 0; pointer-events: none;
  margin-top: clamp(0.25rem, 0.9vw, 0.55rem); -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-image: linear-gradient(
  90deg,
  transparent 0,
  rgba(0, 0, 0, 0.12) 6%,
  #000 14%,
  #000 86%,
  rgba(0, 0, 0, 0.12) 94%,
  transparent 100%
  );
  mask-image: linear-gradient(
  90deg,
  transparent 0,
  rgba(0, 0, 0, 0.12) 6%,
  #000 14%,
  #000 86%,
  rgba(0, 0, 0, 0.12) 94%,
  transparent 100%
  );
}
.marquee-inner{
  display: inline-flex; animation: marquee 58s linear infinite; align-items: center; gap: 0.42rem; min-width: max-content; padding: 0.1rem 1.5rem; margin-left: 1rem; background: 0 0; border-radius: 0; transform: translate3d(0, 0, 0); will-change: transform;
}
.marquee-inner:hover{
  animation-play-state: paused;
}
.marquee-item{
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: clamp(8.5rem, 14vw, 10.5rem); padding: 0 0.65rem;
  text-align: center;
}
.marquee-number{
  position: relative; display: inline-flex; align-items: flex-start; justify-content: center; font-family: var(--font-display); font-weight: 520; font-size: clamp(2.3rem, 3.5vw, 3.35rem); line-height: 0.96; letter-spacing: -0.015em; color: rgba(248, 249, 250, 0.78); text-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
}
.marquee-plus{
  position: absolute; right: 100%; top: 0.08em;
  margin-right: 0.08em; font-size: 0.6em; line-height: 1;
}
.marquee-value{
  display: inline-block; min-width: 1.8ch; text-align: center;
}
.marquee-text{
  margin-top: 0.22rem; font-family: var(--font-body); font-size: 0.84rem;
  font-weight: 400; text-transform: none; letter-spacing: 0.03em;
  line-height: 1.05; color: rgba(248, 249, 250, 0.66); text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
@media (hover: none), (pointer: coarse) {
.marquee-band{
  overflow-x: auto; overflow-y: visible; pointer-events: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; touch-action: pan-x;
  scroll-snap-type: x proximity;
}
.marquee-band::-webkit-scrollbar{
  display: none;
}
.marquee-inner{
  padding-right: 1.25rem;
}
.marquee-band.is-looping .marquee-inner{
  animation: marqueeLoopThird 58s linear infinite; margin-left: 0; padding-right: 0;
}
.marquee-band.is-looping{
  scroll-snap-type: none;
}
.marquee-band.is-looping .marquee-item{
  scroll-snap-align: none;
}
.marquee-item{
  scroll-snap-align: start;
}
.gallery-swiper{
  overflow: hidden; touch-action: pan-y;
}
  .marquee-band.is-looping.is-user-interacting .marquee-inner,
.marquee-band:active .marquee-inner{
  animation-play-state: paused;
}
}
@media (max-width: 374px) {
.marquee-band{
  min-height: 4.7rem; margin-top: 0.45rem; padding-top: 0.92rem;
  padding-bottom: 0.55rem;
}
.marquee-inner{
  padding-bottom: 0.16rem;
}
.marquee-band.is-looping .marquee-inner{
  padding-bottom: 0.16rem; margin-left: 0;
}
.marquee-item{
  min-width: 6.5rem;
}
.marquee-text{
  font-size: 0.64rem; letter-spacing: 0.02em;
}
}
.services-cards-section{
  position: relative; z-index: 1; margin-top: calc(var(--hero-edge-height) * -0.028);
  background: 0 0;
  padding: calc(
  clamp(3.6rem, 6.4vw, 4.95rem) + (var(--hero-edge-height) * 0.075)
  )
  1.25rem clamp(0.5rem, 1.5vw, 0.95rem);
}
.services-cards-shell{
  width: min(1120px, 100%); max-width: 1120px; margin: 0 auto;
  position: relative; z-index: 1;
}
.services-head{
  padding-left: clamp(1.35rem, 2.4vw, 1.85rem); margin-bottom: clamp(2.15rem, 4.5vw, 3.2rem);
}
.services-grid{
  display: grid; width: 100%; max-width: min(100%, 55rem);
  margin: 0 auto; gap: clamp(1.2rem, 2.35vw, 1.7rem); padding-top: clamp(0.18rem, 0.65vw, 0.4rem);
  padding-inline: clamp(0.75rem, 1.6vw, 1.1rem);
}
/* 4) Services cards + marquee */
.service-card
{
  --service-card-focus: 0; --service-card-noise-opacity: 0.12; --service-card-scale-min: 0.9; --service-card-scale-max: 1.11;
  --service-card-opacity-min: 0.6; --service-card-grayscale-max: 0.16; --service-card-saturate-min: 0.84; --service-card-radius: var(--radius-surface);
  --service-card-padding: 0.28rem; --service-card-glow: rgba(66, 84, 70, 0.14); --service-card-glow-secondary: rgba(36, 48, 40, 0.12); --service-card-edge-position: left top;
  --service-card-highlight-position: 94% 56%; --service-card-side-wash-position: -8% 56%; --service-card-bottom-wash-position: 24% 86%; --service-card-base-angle: 118deg;
  --service-card-overlay-highlight-position: 90% 56%; --service-card-overlay-angle: 184deg; --service-card-image-overlay-angle: 178deg; --service-card-image-vignette-position: 52% 46%;
  --service-card-surface-top: rgba(13, 15, 13, 0.99); --service-card-surface-mid: rgba(8, 10, 8, 1); --service-card-surface-bottom: rgba(4, 5, 4, 1); --service-card-bottom-tint: #0f2e1d;
  --service-card-bottom-tint-soft: rgba(15, 46, 29, 0.22); --service-card-edge-top-mid: rgba(124, 255, 166, 0.18); --service-card-edge-top-soft: rgba(124, 255, 166, 0.08); --service-card-edge-side-mid: rgba(124, 255, 166, 0.26);
  --service-card-edge-side-soft: rgba(124, 255, 166, 0.16); --service-card-highlight-core: rgba(241, 255, 243, 0.82); --service-card-highlight-main: rgba(193, 255, 209, 0.62); --service-card-highlight-mid: rgba(92, 255, 154, 0.38);
  --service-card-highlight-shadow: rgba(12, 110, 58, 0.14); --service-card-left-wash: rgba(86, 235, 144, 0.1); --service-card-left-shadow: rgba(24, 56, 35, 0.08); --service-card-bottom-wash: rgba(62, 142, 96, 0.08);
  --service-card-base-0: rgba(10, 12, 10, 1); --service-card-base-1: rgba(10, 12, 10, 1); --service-card-base-2: rgba(6, 16, 11, 0.98); --service-card-base-3: rgba(8, 52, 35, 0.92);
  --service-card-base-4: rgba(94, 255, 154, 0.38); --service-card-base-5: rgba(214, 255, 225, 0.16); --service-card-glow-soft: rgba(114, 255, 167, 0.1); --service-card-glow-far: rgba(194, 255, 216, 0.07);
  --service-card-subtitle-color: rgba(235, 247, 236, 0.84); --service-card-button-border: rgba(201, 255, 216, 0.28); --service-card-button-text: #f1fff4; --service-card-button-hover-border: rgba(188, 255, 205, 0.44);
  --service-card-button-hover-bg: rgba(111, 245, 171, 0.08); --service-card-button-hover-glow: rgba(130, 236, 166, 0.08); --service-card-button-selected-border: rgba(214, 255, 225, 0.38); --service-card-button-selected-start: rgba(154, 255, 201, 0.24);
  --service-card-button-selected-end: rgba(66, 156, 103, 0.2); --service-card-button-selected-text: #fbfffc; --service-card-button-selected-glow: rgba(129, 242, 167, 0.16); --service-card-button-selected-hover-border: rgba(224, 255, 233, 0.46);
  --service-card-button-selected-hover-start: rgba(162, 255, 206, 0.28); --service-card-button-selected-hover-end: rgba(72, 168, 110, 0.22); --service-card-button-selected-hover-glow: rgba(129, 242, 167, 0.18); --service-card-detail-arrow: rgb(124, 255, 166);
  min-width: 0;
  width: 100%;
  align-self: stretch;
  position: relative;
  z-index: 1;
  text-decoration: none;
  margin: 0;
  padding-block: clamp(0.16rem, 0.45vw, 0.34rem);
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.service-card-visual{
  display: flex; flex-direction: column; min-height: clamp(390px, 47vw, 540px); height: 100%; padding: var(--service-card-padding); border: 0; border-radius: var(--service-card-radius); isolation: isolate; overflow: hidden;
  transform-origin: center center; transform: translate3d(0, 0, 0); opacity: 1; backface-visibility: hidden; transform-style: preserve-3d; will-change: auto; filter: none;
  background:
  radial-gradient(
  circle at 78% 14%,
  var(--service-card-glow),
  transparent 34%
  ),
  radial-gradient(
  circle at 16% 84%,
  var(--service-card-glow-secondary),
  transparent 38%
  ),
  linear-gradient(
  180deg,
  rgba(255, 255, 255, 0.02),
  rgba(255, 255, 255, 0) 24%
  ),
  linear-gradient(
  160deg,
  var(--service-card-surface-top) 0%,
  var(--service-card-surface-mid) 52%,
  var(--service-card-surface-bottom) 100%
  );
  box-shadow:
  0 24px 42px rgba(0, 0, 0, 0.28),
  0 10px 22px rgba(0, 0, 0, 0.18),
  0 0 14px var(--service-card-glow);
  transition:
  transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
  opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
  box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
  filter 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
html.service-focus-ready.service-focus-engaged
  .service-card
.service-card-visual{
  will-change: transform, opacity, filter, box-shadow;
  transform: translate3d(0, 0, 0)
  scale(
  calc(
  var(--service-card-scale-min) +
  (
  var(--service-card-focus) *
  (var(--service-card-scale-max) - var(--service-card-scale-min))
  )
  )
  );
  opacity: calc(
  var(--service-card-opacity-min) +
  (var(--service-card-focus) * (1 - var(--service-card-opacity-min)))
  );
  filter: grayscale(
  calc((1 - var(--service-card-focus)) * var(--service-card-grayscale-max))
  )
  saturate(
  calc(
  var(--service-card-saturate-min) +
  (var(--service-card-focus) * (1 - var(--service-card-saturate-min)))
  )
  );
}
html.services-snap-active{
  scroll-snap-type: y mandatory;
}
.service-card-visual::before{
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; border-radius: inherit; opacity: var(--service-card-noise-opacity); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='serviceNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23serviceNoise)'/%3E%3C/svg%3E"); background-size: 180px 180px;
  mix-blend-mode: soft-light; transition: opacity 0.48s ease;
}
.service-card-image-wrap::after,
.service-card-visual::after{
  content: ""; position: absolute; inset: 0;
  pointer-events: none; transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.service-card-visual::after{
  z-index: 0; border-radius: inherit;
  background: linear-gradient(
  0deg,
  var(--service-card-bottom-tint) 0%,
  var(--service-card-bottom-tint-soft) 24%,
  transparent 58%
  );
}
.service-card-visual,
.service-card-visual > *{
  position: relative; z-index: 1;
}
.service-card[data-dev-key]{
  cursor: pointer;
}
.service-card-image-wrap{
  position: relative; display: block; isolation: isolate; flex: 1; min-height: clamp(345px, 46vw, 490px); border-radius: calc(var(--service-card-radius) - var(--service-card-padding)); overflow: hidden; background: rgba(0, 0, 0, 0.16);
}
.service-card-image-wrap::after{
  z-index: 6; opacity: 0.94;
  background:
  radial-gradient(
  circle at 50% 46%,
  rgba(255, 255, 255, 0) 30%,
  rgba(18, 18, 18, 0.05) 52%,
  rgba(8, 8, 8, 0.17) 74%,
  rgba(0, 0, 0, 0.34) 100%
  ),
  linear-gradient(
  180deg,
  rgba(0, 0, 0, 0.16) 0%,
  rgba(0, 0, 0, 0.12) 28%,
  rgba(0, 0, 0, 0.24) 56%,
  var(--service-card-bottom-tint-soft) 100%
  ),
  radial-gradient(
  circle at 50% 42%,
  rgba(0, 0, 0, 0.02) 0%,
  rgba(0, 0, 0, 0.1) 34%,
  rgba(0, 0, 0, 0.3) 76%,
  rgba(0, 0, 0, 0.38) 100%
  );
}
html.service-focus-ready.service-focus-engaged
  .service-card
.service-card-image-wrap::after{
  opacity: calc(0.98 - (var(--service-card-focus) * 0.16));
}
.service-card-slideshow{
  position: absolute; inset: 0; width: auto;
  height: auto;
}
.service-card-image{
  position: absolute; inset: -1px; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.03) translate3d(0, 0, 0); opacity: 0; filter: brightness(0.9) saturate(0.9) contrast(1.03) sepia(0.03);
  will-change: transform, opacity, filter; animation: none; z-index: 1;
  transition:
  opacity 1.25s ease,
  filter 1.25s ease;
}
.service-card-image:nth-child(1){
  z-index: 3;
}
.service-card-image:nth-child(2){
  z-index: 2;
}
.service-card-image:nth-child(3){
  z-index: 1;
}
.service-card-image:first-child{
  opacity: 1;
}
html.service-slideshow-ready .service-card-image:first-child{
  opacity: 0;
}
html.service-slideshow-ready .service-card-image.is-visible{
  z-index: 4; opacity: 1; filter: brightness(1.01) saturate(1.03) contrast(1.08) sepia(0.015);
}
html.service-slideshow-ready .service-card-image.is-leaving{
  opacity: 0; z-index: 2; filter: brightness(0.9) saturate(0.98) contrast(1.03) sepia(0.03);
  pointer-events: none;
}
.service-card-events .service-card-image:nth-child(2),
.service-card-events .service-card-image:nth-child(3){
  object-position: center 58%;
}
html.service-focus-ready.service-focus-engaged.service-slideshow-ready
  .service-card:not(.is-focus-active)
.service-card-image{
  transform: scale(1.01) translate3d(0, 0, 0);
}
html.service-focus-ready.service-focus-engaged .service-card.is-focus-active{
  z-index: 3;
}
html.service-focus-ready.service-focus-engaged
  .service-card.is-focus-active
.service-card-visual{
  box-shadow:
  0 32px 58px rgba(0, 0, 0, 0.34),
  0 14px 28px rgba(0, 0, 0, 0.22),
  0 0 20px color-mix(in srgb, var(--service-card-glow-soft) 124%, transparent),
  0 0 30px color-mix(in srgb, var(--service-card-glow-far) 120%, transparent);
}
html.service-focus-ready.service-focus-engaged
  .service-card.is-focus-active
.service-card-visual::before{
  opacity: var(--service-card-noise-opacity);
}
html.service-focus-ready.service-focus-engaged
  .service-card.is-focus-active
.service-card-image-wrap::after{
  opacity: calc(0.92 - (var(--service-card-focus) * 0.18));
}
.service-card-bottom{
  position: relative; --service-card-subtitle-gap: 0.9rem; --service-card-actions-gap: 1.78rem;
  min-width: 0; margin-top: 0; padding: 0.86rem 0.12rem 0.24rem 0.44rem;
}
.service-card-title{
  margin: 0; font-family: "Tanker", var(--font-display); font-size: clamp(2rem, 4.8vw, 3.35rem); line-height: 0.94; font-weight: 900; letter-spacing: 0.01em; color: #fff; text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24); text-transform: none;
  transform: translate3d(0, 0, 0); opacity: 1;
  transition:
  transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
  text-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
  opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
html.service-focus-ready.service-focus-engaged
  .service-card
.service-card-title{
  transform: translate3d(0, calc((1 - var(--service-card-focus)) * 4px), 0); opacity: calc(0.78 + (var(--service-card-focus) * 0.22));
}
.service-card-subtitle{
  margin: var(--service-card-subtitle-gap) 0 0; max-width: 26rem; font-size: 0.92rem; line-height: 1.5; font-weight: 600; color: var(--service-card-subtitle-color); opacity: 0.94; text-transform: none;
  transition:
  opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
  text-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
html.service-focus-ready.service-focus-engaged
  .service-card
.service-card-subtitle{
  opacity: calc(0.8 + (var(--service-card-focus) * 0.2));
}
html.service-focus-ready .service-card.is-focus-active .service-card-title{
  transform: translate3d(0, -2px, 0);
  text-shadow:
  0 4px 18px rgba(0, 0, 0, 0.24),
  0 0 18px rgba(255, 255, 255, 0.08);
}
html.service-focus-ready .service-card.is-focus-active .service-card-subtitle{
  opacity: 1; text-shadow: 0 0 14px rgba(255, 255, 255, 0.06);
}
.service-card-actions{
  width: 100%; max-width: 100%; min-width: 0; margin-top: var(--service-card-actions-gap); position: relative; display: flex; flex-wrap: nowrap; align-items: center; gap: 0.84rem;
  overflow: visible; padding-bottom: 0.24rem;
}
.service-card-link{
  gap: 0.62rem; min-height: 38px; padding: 0.44rem 0.84rem; border-radius: 12px; color: var(--service-card-button-text); text-decoration: none; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.055em;
  text-transform: none; white-space: nowrap; appearance: none; -webkit-appearance: none; cursor: pointer; transform: translateZ(0); backface-visibility: hidden; will-change: transform, box-shadow;
  border: 1.35px solid
  color-mix(in srgb, var(--service-card-button-border) 78%, white 22%);
  box-shadow:
  inset 0 0 0 0.75px rgba(255, 255, 255, 0.045),
  0 0 0 1px rgba(255, 255, 255, 0.015);
  transition:
  transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
  background 0.36s cubic-bezier(0.22, 1, 0.36, 1),
  background-color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
  box-shadow 0.34s cubic-bezier(0.22, 1, 0.36, 1),
  color 0.36s cubic-bezier(0.22, 1, 0.36, 1),
  border-color 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card-link::after{
  content: ""; display: none; align-items: center; justify-content: center; width: 1.34rem; height: 1.34rem; border: 0.75px solid currentColor; border-radius: 999px; font-size: 0.72rem;
  font-weight: 500; font-family: var(--font-body); line-height: 1; padding-left: 0.02rem; padding-top: 0.02rem; transition: transform 0.2s ease;
}
.service-card-link:hover{
  transform: translateY(-1px); background: var(--service-card-button-hover-bg); border-color: var(--service-card-button-hover-border);
  color: #f7fff8;
  box-shadow:
  inset 0 0 0 1px rgba(225, 255, 232, 0.05),
  0 10px 18px rgba(0, 0, 0, 0.2),
  0 0 18px var(--service-card-button-hover-glow);
}
.service-card-link:hover::after{
  transform: translate(1px, -1px);
}
.service-card-link:active{
  transform: translateY(0) scale(0.97);
}
.service-card-link,
.service-card-link-detail::after{
  display: inline-flex; align-items: center; justify-content: center;
  background: 0 0; flex: 0 0 auto; margin-top: 0;
}
.service-card-link-detail::after{
  content: "↗"; width: auto; height: auto; border: 0; border-radius: 0; padding: 0; clip-path: none; font-size: 1.22em; font-weight: 900;
  line-height: 1; color: var(--service-card-detail-arrow, var(--neon-green)); transform: translateY(0); align-self: center; opacity: 0.92;
  text-shadow: 0 0 12px
  color-mix(
  in srgb,
  var(--service-card-detail-arrow, var(--neon-green)) 34%,
  transparent
  );
}
.service-card-link-detail:focus-visible::after,
.service-card-link-detail:hover::after{
  color: var(--service-card-detail-arrow, var(--neon-green)); opacity: 1; transform: translate(1px, -1px);
}
.service-card-link.is-selected{
  border-color: var(--service-card-button-selected-border); color: var(--service-card-button-selected-text); text-shadow: 0 1px 12px rgba(255, 255, 255, 0.12);
  background: linear-gradient(
  180deg,
  var(--service-card-button-selected-start),
  var(--service-card-button-selected-end)
  );
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.12),
  inset 0 0 0 1px rgba(255, 255, 255, 0.05),
  0 14px 26px rgba(0, 0, 0, 0.2),
  0 0 24px var(--service-card-button-selected-glow);
}
.service-card-link.is-selected:focus,
.service-card-link.is-selected:focus-visible,
.service-card-link.is-selected:hover{
  transform: translateY(-2px); border-color: var(--service-card-button-selected-hover-border); color: var(--service-card-button-selected-text);
  background: linear-gradient(
  180deg,
  var(--service-card-button-selected-hover-start),
  var(--service-card-button-selected-hover-end)
  );
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.14),
  inset 0 0 0 1px rgba(255, 255, 255, 0.06),
  0 14px 28px rgba(0, 0, 0, 0.22),
  0 0 26px var(--service-card-button-selected-hover-glow);
}
.service-card-link.is-selected:active{
  transform: translateY(0) scale(0.97); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.service-card-link.is-selected:active::after{
  transform: translate(0, 0) scale(0.96);
}
.service-card .service-delivery-trigger[aria-expanded="true"]{
  transform: translateY(-1px); color: var(--service-card-button-selected-text); border-color: var(--service-card-button-selected-hover-border);
  background: linear-gradient(
  180deg,
  var(--service-card-button-selected-hover-start),
  var(--service-card-button-selected-hover-end)
  );
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.14),
  inset 0 0 0 1px rgba(255, 255, 255, 0.06),
  0 14px 28px rgba(0, 0, 0, 0.22),
  0 0 26px var(--service-card-button-selected-hover-glow);
}
.service-delivery-btn{
  display: inline-grid; flex: 1 1 0; place-items: center;
  width: auto; min-width: 0; height: 40px;
  padding: 0; border: 0; background: 0 0;
  transition:
  transform 0.2s ease,
  filter 0.2s ease,
  opacity 0.2s ease;
}
.service-delivery-btn img{
  display: block; width: auto; max-width: 38px;
  max-height: 30px; object-fit: contain; margin: 0 auto;
}
.service-delivery-btn:hover{
  transform: translateY(-2px) scale(1.03); filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22));
}
@media (prefers-reduced-motion: reduce) {
  .service-card-link,
  .service-card-link::after,
.service-delivery-btn{
  transition-duration: 0.01ms !important;
}
.service-card-link.is-selected{
  animation: none;
}
}
.service-delivery-popover{
  position: absolute; left: 0; bottom: calc(100% + 0.34rem); width: max(var(--delivery-popover-width, 188px), 214px); --delivery-gap: 0.22rem; display: flex; flex-wrap: nowrap; align-items: center; justify-content: flex-start; gap: var(--delivery-gap); white-space: nowrap; z-index: 34;
  padding: 0.5rem; border-radius: 1.08rem; border: 1px solid rgba(138, 90, 60, 0.52); background: rgba(8, 9, 9, 0.92); backdrop-filter: blur(28px) saturate(1.02); -webkit-backdrop-filter: blur(28px) saturate(1.02); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px);
  box-shadow:
  inset 0 0.5px 0 rgba(255, 255, 255, 0.06),
  0 14px 30px rgba(0, 0, 0, 0.24);
  transition:
  opacity 0.22s ease,
  transform 0.22s ease,
  visibility 0.22s ease;
}
.service-delivery-popover.is-open{
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.service-card-beer .service-delivery-btn{
  min-width: 52px; height: 56px; border-radius: 0;
  padding: 0.12rem 0; background: 0 0; box-shadow: none;
  filter: none;
}
.service-card-beer .service-delivery-btn img{
  max-width: 52px; max-height: 40px; filter: drop-shadow(0 3px 8px rgba(44, 34, 0, 0.14));
}
.service-card-beer .service-delivery-btn:hover{
  background: 0 0; box-shadow: none;
}
.service-card-beer .service-delivery-popover{
  --delivery-gap: 0.04rem; width: max(var(--delivery-popover-width, 188px), 178px); padding: 0.44rem 0.28rem;
  border-radius: 1.15rem; border: 1px solid rgba(255, 235, 160, 0.24); background: rgba(11, 11, 8, 0.78);
  box-shadow:
  inset 0 0.5px 0 rgba(255, 255, 255, 0.07),
  inset 0 0 0 1px rgba(255, 213, 58, 0.06),
  0 14px 30px rgba(0, 0, 0, 0.24),
  0 0 22px rgba(255, 213, 58, 0.06);
}
.service-card .service-card-visual{
  --service-card-padding: 0.62rem;
  background:
  linear-gradient(
  90deg,
  rgba(255, 255, 255, 0) 0%,
  rgba(255, 255, 255, 0) 14%,
  var(--service-card-edge-top-soft) 30%,
  var(--service-card-edge-top-mid) 52%,
  var(--service-card-edge-top-soft) 74%,
  rgba(255, 255, 255, 0) 90%,
  rgba(255, 255, 255, 0) 100%
  )
  center top/100% 1px no-repeat,
  linear-gradient(
  180deg,
  rgba(255, 255, 255, 0) 0%,
  rgba(255, 255, 255, 0) 8%,
  var(--service-card-edge-side-mid) 24%,
  var(--service-card-edge-side-soft) 74%,
  rgba(255, 255, 255, 0) 92%,
  rgba(255, 255, 255, 0) 100%
  )
  var(--service-card-edge-position) / 1.2px 100%no-repeat,
  radial-gradient(
  circle at var(--service-card-highlight-position),
  var(--service-card-highlight-core) 0%,
  var(--service-card-highlight-main) 18%,
  var(--service-card-highlight-mid) 36%,
  var(--service-card-highlight-shadow) 54%,
  transparent 72%
  ),
  radial-gradient(
  circle at var(--service-card-side-wash-position),
  var(--service-card-left-wash) 0%,
  var(--service-card-left-shadow) 24%,
  transparent 52%
  ),
  radial-gradient(
  circle at var(--service-card-bottom-wash-position),
  var(--service-card-bottom-wash) 0%,
  transparent 34%
  ),
  linear-gradient(
  var(--service-card-base-angle),
  var(--service-card-base-0) 0%,
  var(--service-card-base-1) 34%,
  var(--service-card-base-2) 48%,
  var(--service-card-base-3) 68%,
  var(--service-card-base-4) 88%,
  var(--service-card-base-5) 100%
  );
  box-shadow:
  0 26px 48px rgba(0, 0, 0, 0.28),
  0 12px 24px rgba(0, 0, 0, 0.2),
  0 0 18px var(--service-card-glow-soft),
  0 0 28px var(--service-card-glow-far);
}
.service-card .service-card-visual::before{
  inset: -1px; --service-card-noise-opacity: 0.56;
  background-repeat: repeat, repeat; mix-blend-mode: soft-light;
  background-image:
  url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='restaurantNoiseA'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.96' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23restaurantNoiseA)'/%3E%3C/svg%3E"),
  url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='restaurantNoiseB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.56' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23restaurantNoiseB)'/%3E%3C/svg%3E");
  background-size:
  118px 118px,
  72px 72px;
}
.service-card .service-card-visual::after{
  inset: -1px; opacity: 0.88;
  background:
  radial-gradient(
  circle at var(--service-card-overlay-highlight-position),
  rgba(255, 255, 255, 0) 0%,
  rgba(0, 0, 0, 0.02) 36%,
  rgba(0, 0, 0, 0.18) 100%
  ),
  linear-gradient(
  var(--service-card-overlay-angle),
  rgba(0, 0, 0, 0.08) 0%,
  rgba(0, 0, 0, 0.04) 24%,
  rgba(0, 0, 0, 0.14) 58%,
  rgba(0, 0, 0, 0.3) 100%
  );
}
.service-card .service-card-image-wrap{
  border: 0; border-radius: inherit; box-shadow: none;
  background:
  linear-gradient(180deg, rgba(24, 28, 27, 0.04), rgba(11, 14, 13, 0.12)),
  rgba(11, 14, 13, 0.18);
}
.service-card .service-card-image-wrap::after{
  background:
  radial-gradient(
  circle at 50% 46%,
  rgba(255, 255, 255, 0) 30%,
  rgba(18, 18, 18, 0.05) 52%,
  rgba(8, 8, 8, 0.17) 74%,
  rgba(0, 0, 0, 0.34) 100%
  ),
  linear-gradient(
  var(--service-card-image-overlay-angle),
  rgba(0, 0, 0, 0.12) 0%,
  rgba(0, 0, 0, 0.12) 28%,
  rgba(0, 0, 0, 0.22) 56%,
  rgba(0, 0, 0, 0.42) 100%
  ),
  radial-gradient(
  circle at var(--service-card-image-vignette-position),
  rgba(0, 0, 0, 0.04) 0%,
  rgba(0, 0, 0, 0.12) 40%,
  rgba(0, 0, 0, 0.26) 100%
  );
}
.service-card-beer
{
  --service-card-edge-position: right top; --service-card-highlight-position: 6% 46%; --service-card-side-wash-position: 106% 52%; --service-card-bottom-wash-position: 74% 84%;
  --service-card-base-angle: 236deg; --service-card-overlay-highlight-position: 10% 50%; --service-card-overlay-angle: 176deg; --service-card-image-overlay-angle: 188deg;
  --service-card-image-vignette-position: 42% 48%; --service-card-surface-top: rgba(16, 16, 11, 0.99); --service-card-surface-mid: rgba(9, 9, 6, 1); --service-card-surface-bottom: rgba(5, 5, 3, 1);
  --service-card-bottom-tint: #3d320d; --service-card-bottom-tint-soft: rgba(61, 50, 13, 0.24); --service-card-edge-top-mid: rgba(255, 232, 78, 0.18); --service-card-edge-top-soft: rgba(255, 232, 78, 0.08);
  --service-card-edge-side-mid: rgba(255, 232, 78, 0.27); --service-card-edge-side-soft: rgba(255, 232, 78, 0.17); --service-card-highlight-core: rgba(255, 252, 219, 0.84); --service-card-highlight-main: rgba(255, 240, 123, 0.64);
  --service-card-highlight-mid: rgba(255, 221, 42, 0.4); --service-card-highlight-shadow: rgba(137, 94, 2, 0.14); --service-card-left-wash: rgba(255, 212, 58, 0.11); --service-card-left-shadow: rgba(70, 48, 8, 0.08);
  --service-card-bottom-wash: rgba(219, 169, 31, 0.1); --service-card-base-0: rgba(8, 8, 6, 1); --service-card-base-1: rgba(8, 8, 6, 1); --service-card-base-2: rgba(16, 16, 7, 0.98);
  --service-card-base-3: rgba(85, 62, 10, 0.9); --service-card-base-4: rgba(255, 214, 48, 0.38); --service-card-base-5: rgba(255, 246, 170, 0.16); --service-card-glow-soft: rgba(255, 222, 78, 0.12);
  --service-card-glow-far: rgba(255, 244, 159, 0.08); --service-card-subtitle-color: rgba(249, 243, 219, 0.82); --service-card-button-border: rgba(255, 235, 160, 0.32); --service-card-button-text: #fffef0;
  --service-card-button-hover-border: rgba(255, 239, 183, 0.46); --service-card-button-hover-bg: rgba(255, 211, 56, 0.1); --service-card-button-hover-glow: rgba(255, 211, 56, 0.1); --service-card-button-selected-border: rgba(255, 241, 185, 0.4);
  --service-card-button-selected-start: rgba(255, 232, 128, 0.26); --service-card-button-selected-end: rgba(156, 104, 13, 0.22); --service-card-button-selected-text: #fffff6; --service-card-button-selected-glow: rgba(255, 214, 68, 0.18);
  --service-card-button-selected-hover-border: rgba(255, 244, 201, 0.5); --service-card-button-selected-hover-start: rgba(255, 238, 145, 0.3); --service-card-button-selected-hover-end: rgba(170, 114, 16, 0.24); --service-card-button-selected-hover-glow: rgba(255, 214, 68, 0.2);
  --service-card-detail-arrow: rgb(255, 221, 42);
}
.service-card-events
{
  --service-card-edge-position: right top; --service-card-highlight-position: 18% 18%; --service-card-side-wash-position: 112% 70%; --service-card-bottom-wash-position: 80% 88%;
  --service-card-base-angle: 208deg; --service-card-overlay-highlight-position: 18% 26%; --service-card-overlay-angle: 168deg; --service-card-image-overlay-angle: 160deg;
  --service-card-image-vignette-position: 38% 36%; --service-card-surface-top: rgba(9, 13, 18, 0.99); --service-card-surface-mid: rgba(6, 8, 12, 1); --service-card-surface-bottom: rgba(4, 5, 8, 1);
  --service-card-bottom-tint: #11294b; --service-card-bottom-tint-soft: rgba(17, 41, 75, 0.24); --service-card-edge-top-mid: rgba(86, 226, 255, 0.24); --service-card-edge-top-soft: rgba(86, 226, 255, 0.1);
  --service-card-edge-side-mid: rgba(86, 226, 255, 0.36); --service-card-edge-side-soft: rgba(86, 226, 255, 0.22); --service-card-highlight-core: rgba(225, 250, 255, 0.98); --service-card-highlight-main: rgba(128, 233, 255, 0.84);
  --service-card-highlight-mid: rgba(18, 182, 255, 0.56); --service-card-highlight-shadow: rgba(8, 92, 192, 0.22); --service-card-left-wash: rgba(66, 196, 255, 0.18); --service-card-left-shadow: rgba(12, 42, 88, 0.1);
  --service-card-bottom-wash: rgba(52, 122, 238, 0.1); --service-card-base-0: rgba(7, 9, 13, 1); --service-card-base-1: rgba(7, 9, 13, 1); --service-card-base-2: rgba(8, 16, 28, 0.98);
  --service-card-base-3: rgba(8, 62, 138, 0.9); --service-card-base-4: rgba(32, 194, 255, 0.44); --service-card-base-5: rgba(196, 238, 255, 0.22); --service-card-glow-soft: rgba(72, 205, 255, 0.13);
  --service-card-glow-far: rgba(152, 228, 255, 0.08); --service-card-subtitle-color: rgba(231, 241, 249, 0.82); --service-card-button-border: rgba(156, 223, 255, 0.32); --service-card-button-text: #f2f9ff;
  --service-card-button-hover-border: rgba(188, 236, 255, 0.48); --service-card-button-hover-bg: rgba(58, 179, 255, 0.12); --service-card-button-hover-glow: rgba(58, 179, 255, 0.12); --service-card-button-selected-border: rgba(190, 238, 255, 0.4);
  --service-card-button-selected-start: rgba(96, 208, 255, 0.26); --service-card-button-selected-end: rgba(28, 102, 194, 0.24); --service-card-button-selected-text: #fbfdff; --service-card-button-selected-glow: rgba(72, 188, 255, 0.2);
  --service-card-button-selected-hover-border: rgba(212, 244, 255, 0.48); --service-card-button-selected-hover-start: rgba(120, 216, 255, 0.3); --service-card-button-selected-hover-end: rgba(36, 114, 208, 0.26); --service-card-button-selected-hover-glow: rgba(72, 188, 255, 0.22);
  --service-card-detail-arrow: rgb(18, 182, 255);
}
.service-card-catering
{
  --service-card-edge-position: left top; --service-card-highlight-position: 86% 22%; --service-card-side-wash-position: -10% 68%; --service-card-bottom-wash-position: 18% 90%;
  --service-card-base-angle: 38deg; --service-card-overlay-highlight-position: 84% 24%; --service-card-overlay-angle: 192deg; --service-card-image-overlay-angle: 200deg;
  --service-card-image-vignette-position: 62% 38%; --service-card-surface-top: rgba(18, 12, 8, 0.99); --service-card-surface-mid: rgba(10, 7, 5, 1); --service-card-surface-bottom: rgba(6, 4, 3, 1);
  --service-card-bottom-tint: #3f2317; --service-card-bottom-tint-soft: rgba(63, 35, 23, 0.24); --service-card-edge-top-mid: rgba(255, 160, 92, 0.23); --service-card-edge-top-soft: rgba(255, 160, 92, 0.1);
  --service-card-edge-side-mid: rgba(255, 160, 92, 0.34); --service-card-edge-side-soft: rgba(255, 160, 92, 0.22); --service-card-highlight-core: rgba(255, 240, 226, 0.96); --service-card-highlight-main: rgba(255, 188, 132, 0.82);
  --service-card-highlight-mid: rgba(255, 125, 46, 0.54); --service-card-highlight-shadow: rgba(138, 54, 8, 0.2); --service-card-left-wash: rgba(255, 128, 58, 0.16); --service-card-left-shadow: rgba(65, 28, 11, 0.08);
  --service-card-bottom-wash: rgba(182, 83, 33, 0.09); --service-card-base-0: rgba(9, 7, 5, 1); --service-card-base-1: rgba(9, 7, 5, 1); --service-card-base-2: rgba(18, 10, 7, 0.98);
  --service-card-base-3: rgba(96, 40, 17, 0.9); --service-card-base-4: rgba(255, 122, 58, 0.42); --service-card-base-5: rgba(255, 216, 184, 0.22); --service-card-glow-soft: rgba(255, 138, 66, 0.11);
  --service-card-glow-far: rgba(255, 202, 164, 0.08); --service-card-subtitle-color: rgba(249, 236, 228, 0.82); --service-card-button-border: rgba(255, 199, 154, 0.3); --service-card-button-text: #fff7f1;
  --service-card-button-hover-border: rgba(255, 211, 179, 0.46); --service-card-button-hover-bg: rgba(255, 146, 74, 0.1); --service-card-button-hover-glow: rgba(255, 146, 74, 0.1); --service-card-button-selected-border: rgba(255, 215, 186, 0.38);
  --service-card-button-selected-start: rgba(255, 183, 118, 0.24); --service-card-button-selected-end: rgba(172, 79, 29, 0.22); --service-card-button-selected-text: #fffcfa; --service-card-button-selected-glow: rgba(255, 149, 83, 0.18);
  --service-card-button-selected-hover-border: rgba(255, 225, 202, 0.46); --service-card-button-selected-hover-start: rgba(255, 194, 136, 0.28); --service-card-button-selected-hover-end: rgba(184, 86, 33, 0.24); --service-card-button-selected-hover-glow: rgba(255, 149, 83, 0.2);
  --service-card-detail-arrow: rgb(255, 125, 46);
}
@media (prefers-reduced-motion: reduce) {
.service-card-image{
  transition:
  opacity 0.8s ease,
  filter 0.8s ease;
}
html.service-slideshow-ready .service-card-image.is-visible{
  animation: none; transform: scale(1.03) translate3d(0, 0, 0);
}
}
.beer-showcase-kicker{
  margin: 0 0 0.85rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.34em; color: rgba(248, 249, 250, 0.52);
}
.beer-showcase-title{
  margin: 0; font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.92; font-weight: 400; letter-spacing: -0.03em;
  color: var(--warm-white);
}
.beer-showcase-title-outline{
  display: inline-block; font-family: var(--font-display); font-weight: 400;
  letter-spacing: 0.015em; color: rgba(248, 249, 250, 0.96); text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.beer-showcase-title-line,
.section-title-soft,
.section-title-strong{
  display: block;
}
.services-head .beer-showcase-kicker{
  margin: 0 0 0.9rem; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.4em; color: var(--neon-green);
}
.services-head .beer-showcase-title{
  font-size: clamp(2rem, 5.7vw, 5.1rem); line-height: 1.24; letter-spacing: 0;
}
.services-head .beer-showcase-title-outline{
  display: block; white-space: nowrap; font-weight: 300; letter-spacing: 0; text-transform: none; color: rgba(248, 249, 250, 0.7); opacity: 0.7; text-shadow: none;
}
.services-head .beer-showcase-title-line{
  display: block; margin-top: -0.08em; white-space: nowrap;
  font-weight: 400; letter-spacing: 0.04em; line-height: inherit;
  color: var(--warm-white);
}
.beer-showcase-extra{
  --about-extra-max-height: 320px; position: relative; width: 100%; max-height: 0; opacity: 0; overflow: hidden; transform: translateY(-0.8rem) scale(0.985); filter: blur(14px); clip-path: inset(0 0 100%0 round 1.6rem);
  transition:
  max-height 0.92s cubic-bezier(0.22, 1, 0.36, 1),
  opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
  transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
  filter 0.82s cubic-bezier(0.22, 1, 0.36, 1),
  clip-path 0.88s cubic-bezier(0.22, 1, 0.36, 1),
  margin-top 0.45s ease;
}
.beer-showcase-extra::before{
  content: ""; position: absolute; inset: 0;
  border-radius: 1.6rem; opacity: 0; pointer-events: none;
  transform: scale(1.05);
  background:
  radial-gradient(
  circle at 16% 18%,
  rgba(158, 212, 165, 0.24),
  transparent 24%
  ),
  radial-gradient(
  circle at 82% 18%,
  rgba(240, 187, 102, 0.14),
  transparent 24%
  ),
  linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  transition:
  opacity 0.7s ease,
  transform 0.7s ease;
}
.beer-showcase-extra.is-expanded{
  max-height: var(--about-extra-max-height, 320px); opacity: 1; transform: translateY(0);
  filter: blur(0); clip-path: inset(0 0 0 0 round 1.6rem); margin-top: clamp(1.3rem, 2.6vw, 1.7rem);
}
.beer-showcase-extra.is-expanded::before{
  opacity: 1; transform: scale(1);
}
.beer-showcase-link,
.beer-showcase-link-icon{
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}
.beer-showcase-link{
  gap: 0.58rem; margin-top: 1.65rem; min-height: 50px; min-width: 12.25rem; padding: 0.76rem 0.98rem 0.76rem 1.02rem; border-radius: 9999px !important; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.025); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); color: var(--warm-white); text-decoration: none; cursor: pointer; font-family: inherit; font-size: 0.88rem; font-weight: 400; letter-spacing: 0; text-transform: none;
  box-shadow:
  0 8px 18px rgba(0, 0, 0, 0.14),
  inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
  transform 0.25s ease,
  background-color 0.25s ease,
  box-shadow 0.25s ease,
  border-color 0.25s ease;
}
.beer-showcase-link-icon{
  width: auto; height: auto; flex: 0 0 auto; position: relative; color: var(--neon-green); font-size: 1.12em; font-weight: 900; text-shadow: 0 0 12px color-mix(in srgb, var(--neon-green) 34%, transparent);
  transition:
  transform 0.25s ease,
  color 0.25s ease,
  opacity 0.25s ease;
}
.beer-showcase-link-icon::before{
  content: "↗"; display: block;
}
.beer-showcase-link-icon::after{
  content: none;
}
.beer-showcase-link[aria-expanded="true"]{
  border-color: rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.028);
  box-shadow:
  0 10px 22px rgba(0, 0, 0, 0.15),
  inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.beer-showcase-link[aria-expanded="true"] .beer-showcase-link-icon{
  transform: translateY(-0.02rem);
}
.beer-showcase-link:hover{
  transform: translateY(-1px); border-color: rgba(74, 222, 128, 0.96); background: rgba(10, 11, 12, 0.72);
  box-shadow:
  0 0 30px rgba(74, 222, 128, 0.16),
  0 12px 28px rgba(0, 0, 0, 0.16),
  inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.beer-showcase-link:focus-visible .beer-showcase-link-icon,
.beer-showcase-link:hover .beer-showcase-link-icon{
  color: var(--neon-green); opacity: 1; transform: translate(1px, -1px);
}
.beer-showcase-link:focus-visible{
  outline: 0;
  box-shadow:
  0 0 0 3px rgba(74, 222, 128, 0.14),
  0 0 32px rgba(74, 222, 128, 0.18),
  inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
/* 5) About / story timeline */
.about-premium-section{
  position: relative; z-index: 1; padding: clamp(3.05rem, 5.7vw, 5.2rem) 1.25rem clamp(4.4rem, 8vw, 6.8rem);
  background: 0 0;
}
.about-premium-shell{
  max-width: 1120px; margin: 0 auto;
}
.about-premium-copy{
  display: flex; flex-direction: column; align-items: flex-start;
  gap: clamp(0.88rem, 1.45vw, 1.3rem); max-width: none; padding-inline: clamp(0.65rem, 2.8vw, 3rem);
  text-align: left;
}
.about-premium-copy .beer-showcase-kicker,
.contact-head .beer-showcase-kicker{
  margin: 0 0 0.9rem; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.4em; color: var(--neon-green); text-align: left;
}
.about-premium-heritage{
  margin: 0; max-width: 13ch; font-family: var(--font-display);
  font-size: clamp(2rem, 5.7vw, 5.1rem); line-height: 1.24; font-weight: 400;
  letter-spacing: 0; text-transform: none; color: var(--warm-white);
}
.about-premium-heritage .section-title-soft{
  font-weight: 300; letter-spacing: 0; text-transform: none;
  color: rgba(248, 249, 250, 0.7); opacity: 0.7; text-shadow: none;
  text-wrap: balance;
}
.about-premium-heritage .section-title-strong{
  margin-top: -0.08em; font-weight: 400; letter-spacing: 0.038em;
  line-height: inherit; color: var(--warm-white); text-wrap: balance;
}
.about-premium-experience{
  position: relative; margin: 0; max-width: 45rem; padding-left: clamp(0.95rem, 1.7vw, 1.3rem); font-family: var(--font-body); font-size: clamp(1.08rem, 1.95vw, 1.48rem); line-height: 1.56; font-weight: 300; letter-spacing: -0.01rem; color: rgba(248, 249, 250, 0.7); text-transform: none;
}
.about-premium-experience::before{
  content: ""; position: absolute; left: 0;
  top: 0.28rem; bottom: 0.28rem; width: 2px;
  border-radius: 999px; box-shadow: 0 0 12px rgba(74, 222, 128, 0.12);
  background: linear-gradient(
  180deg,
  rgba(74, 222, 128, 0) 0,
  rgba(74, 222, 128, 0.56) 22%,
  rgba(74, 222, 128, 0.42) 78%,
  rgba(74, 222, 128, 0) 100%
  );
}
.about-premium-copy .beer-showcase-extra{
  width: 100%;
}
.about-premium-copy .beer-showcase-link{
  order: 3; align-self: flex-start; margin-top: 0.85rem;
  margin-inline: 0;
}
.reveal-word{
  display: inline-block; color: rgba(248, 249, 250, 0.2); opacity: var(--reveal-word-opacity, 0.24);
  transform: translateY(var(--reveal-word-shift, 0.12em));
  transition:
  color 1.02s cubic-bezier(0.19, 1, 0.22, 1),
  opacity 1.02s cubic-bezier(0.19, 1, 0.22, 1),
  transform 1.02s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal-word.is-visible{
  color: inherit;
}
.reveal-break{
  display: block; height: 1rem; width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  .beer-showcase-extra,
.beer-showcase-extra::before{
  transition-duration: 0.01ms !important;
}
  .beer-showcase-extra,
.beer-showcase-extra.is-expanded{
  filter: none; clip-path: none; transform: none;
}
}
@media (max-width: 900px) {
.service-card{
  min-height: 390px;
}
.beer-showcase-link{
  margin-left: auto; margin-right: auto;
}
  .about-premium-copy,
.about-premium-experience{
  max-width: none;
}
.about-premium-experience{
  font-size: clamp(1.1rem, 2.5vw, 1.34rem); line-height: 1.76;
}
}
@media (max-width: 640px) {
  .about-premium-heritage,
.contact-head .about-premium-heritage{
  max-width: 13ch; font-size: clamp(1.52rem, 6.25vw, 2.8rem);
}
.services-cards-section{
  margin-top: calc(var(--hero-edge-height) * -0.012); padding-top: calc(3.15rem + (var(--hero-edge-height) * 0.085)); padding-left: max(0.95rem, env(safe-area-inset-left));
  padding-right: max(0.95rem, env(safe-area-inset-right));
}
.about-premium-section{
  padding-top: 2.35rem;
}
.beer-showcase-extra.is-expanded{
  margin-top: 1.1rem; clip-path: inset(0 0 0 0 round 1.15rem);
}
.about-premium-experience{
  font-size: clamp(1.08rem, 4.35vw, 1.24rem); line-height: 1.54;
}
  .about-premium-heritage,
.contact-head .about-premium-heritage{
  letter-spacing: -0.045em;
}
.services-head{
  padding-left: 1.15rem; margin-bottom: 1.65rem;
}
.services-head .beer-showcase-title{
  font-size: clamp(1.68rem, 6.5vw, 3.2rem);
}
.services-grid{
  padding-top: 0.16rem; padding-inline: 0.68rem; gap: 1.08rem;
}
.service-card{
  --service-card-scale-min: 0.94; --service-card-scale-max: 1.07; --service-card-opacity-min: 0.7;
  --service-card-grayscale-max: 0.14; --service-card-saturate-min: 0.86; --service-card-radius: 1.2rem;
  --service-card-padding: 0.24rem;
}
.service-card-image-wrap{
  min-height: 295px;
}
.service-card-title{
  font-size: clamp(2rem, 10vw, 3rem);
}
.service-card-bottom{
  --service-card-subtitle-gap: 0.72rem; --service-card-actions-gap: 1.16rem; padding: 0.82rem 0.18rem 0.22rem 0.46rem;
}
.service-card-subtitle{
  font-size: clamp(0.84rem, 3.6vw, 0.94rem); margin-top: var(--service-card-subtitle-gap); line-height: 1.38;
  letter-spacing: 0.004em;
}
.service-card-restaurant .service-card-title{
  font-size: min(9.2vw, 2.35rem); line-height: 0.92; letter-spacing: 0.005em;
}
.service-card .service-card-visual{
  --service-card-padding: 0.5rem;
}
.service-card .service-card-image-wrap{
  min-height: 286px; border-radius: inherit;
}
.service-card .service-card-bottom{
  padding-top: 0.72rem;
}
.service-card-link{
  flex: 0 1 auto; width: auto; min-width: 0; min-height: 38px; padding: 0.5rem 0.8rem; gap: 0.38rem; font-size: clamp(0.65rem, 2.7vw, 0.78rem); letter-spacing: 0.03em;
}
.service-card-actions{
  margin-top: var(--service-card-actions-gap); flex-wrap: nowrap; gap: 0.48rem;
}
.service-card .service-card-visual::before{
  content: "";
}
.service-card .service-card-image-wrap::after{
  opacity: 0.86;
  background:
  linear-gradient(
  var(--service-card-image-overlay-angle),
  rgba(0, 0, 0, 0.1) 0%,
  rgba(0, 0, 0, 0.12) 34%,
  rgba(0, 0, 0, 0.28) 100%
  ),
  radial-gradient(
  circle at var(--service-card-image-vignette-position),
  rgba(0, 0, 0, 0.03) 0%,
  rgba(0, 0, 0, 0.1) 42%,
  rgba(0, 0, 0, 0.22) 100%
  );
}
.service-delivery-btn{
  height: 44px;
}
.service-delivery-btn img{
  max-width: 44px; max-height: 34px;
}
.service-card-beer .service-delivery-btn{
  min-width: 50px; height: 54px;
}
.service-card-beer .service-delivery-btn img{
  max-width: 46px; max-height: 35px;
}
.service-delivery-popover{
  --delivery-gap: 0.16rem; bottom: calc(100% + 0.28rem); width: max(var(--delivery-popover-width, 188px), 224px);
  padding: 0.46rem;
}
.service-card-beer .service-delivery-popover{
  --delivery-gap: 0.03rem; width: max(var(--delivery-popover-width, 188px), 170px); padding: 0.42rem 0.26rem;
}
.service-card-link::after{
  width: 1.3rem; height: 1.3rem; font-size: 0.7rem;
  border-width: 0.7px;
}
.service-card-link-detail::after{
  font-size: 1.24em;
}
}
@media (max-width: 374px) {
  .about-premium-heritage,
.contact-head .about-premium-heritage{
  max-width: 13ch; font-size: clamp(1.34rem, 5.9vw, 1.95rem); line-height: 1.24;
}
.services-head{
  padding-left: 0.92rem; margin-bottom: 1.32rem;
}
.services-head .beer-showcase-title{
  font-size: clamp(1.42rem, 6.2vw, 2.2rem);
}
.services-cards-section{
  padding-top: calc(3.32rem + (var(--hero-edge-height) * 0.08)); padding-left: max(0.78rem, env(safe-area-inset-left)); padding-right: max(0.78rem, env(safe-area-inset-right));
  padding-bottom: 0.55rem;
}
.services-grid{
  padding-top: 0.12rem; gap: 0.78rem;
}
.service-card-bottom{
  --service-card-subtitle-gap: 0.64rem; --service-card-actions-gap: 1.04rem; padding: 0.74rem 0.18rem 0.18rem 0.44rem;
}
.service-card-subtitle{
  font-size: 0.82rem; line-height: 1.34;
}
.service-card-link{
  min-height: 36px; padding: 0.44rem 0.66rem; gap: 0.3rem;
  font-size: clamp(0.6rem, 2.82vw, 0.68rem); letter-spacing: 0.018em;
}
.service-card-link::after{
  width: 1.06rem; height: 1.06rem; font-size: 0.58rem;
}
.service-card-link-detail::after{
  font-size: 1.28em;
}
.service-delivery-btn{
  height: 40px;
}
.service-delivery-btn img{
  max-width: 40px; max-height: 30px;
}
.service-card-beer .service-delivery-btn{
  min-width: 48px; height: 52px;
}
.service-card-beer .service-delivery-btn img{
  max-width: 44px; max-height: 33px;
}
.service-delivery-popover{
  --delivery-gap: 0.12rem; bottom: calc(100% + 0.24rem); width: max(var(--delivery-popover-width, 188px), 208px);
  padding: 0.4rem;
}
.service-card-beer .service-delivery-popover{
  --delivery-gap: 0.02rem; width: max(var(--delivery-popover-width, 188px), 162px); padding: 0.38rem 0.22rem;
}
.service-card-restaurant .service-card-title{
  font-size: min(8.8vw, 2.1rem);
}
.service-card .service-card-visual{
  --service-card-padding: 0.46rem;
}
.service-card .service-card-image-wrap{
  min-height: 258px; border-radius: inherit;
}
}
/* 6) Gallery */
.photo-gallery-section{
  position: relative; z-index: 1; padding: clamp(2.1rem, 5.4vw, 3.5rem) 0 clamp(3rem, 7vw, 4.5rem);
  background: 0 0;
}
.gallery-swiper{
  position: relative; width: 100%; margin: 0 auto;
  padding: 0; overflow: hidden; touch-action: pan-y;
  -webkit-clip-path: url(#gallery-arc-clip); clip-path: url(#gallery-arc-clip);
}
.gallery-clip-defs{
  position: absolute; width: 0; height: 0;
  overflow: hidden;
}
.gallery-swiper .swiper-wrapper{
  display: flex; width: max-content; gap: 14px;
  align-items: center; transition: none !important; will-change: transform;
}
.gallery-swiper .swiper-slide{
  flex: 0 0 auto; width: clamp(134px, 14.5vw, 190px); display: flex;
  justify-content: center; align-items: center; transform-origin: center center;
  transition: none; margin-right: 0 !important;
}
.gallery-item{
  position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 0; border: 0; padding: 0; cursor: pointer; appearance: none; background: 0 0; box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}
.gallery-item::after{
  content: ""; position: absolute; inset: 0;
  pointer-events: none; mix-blend-mode: multiply;
  background:
  linear-gradient(
  180deg,
  rgba(12, 15, 12, 0.08) 0,
  rgba(12, 15, 12, 0.02) 38%,
  rgba(12, 15, 12, 0.12) 100%
  ),
  linear-gradient(
  180deg,
  rgba(138, 153, 108, 0.04) 0,
  rgba(138, 153, 108, 0) 100%
  );
}
.gallery-item img{
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; display: block; transform: scale(1);
  filter: brightness(0.985) contrast(1.08) saturate(1.08);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.gallery-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}
.gallery-item:hover img{
  transform: scale(1.03);
}
.gallery-item:focus-visible{
  outline: 2px solid rgba(248, 244, 237, 0.9); outline-offset: 2px;
}
.gallery-lightbox{
  --lb-bg-opacity: 0; position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; padding: 0; background: rgba(3, 5, 10, var(--lb-bg-opacity)); opacity: 0;
  visibility: hidden; z-index: 400;
  transition:
  opacity 0.28s ease,
  visibility 0.28s ease,
  background-color 0.32s ease;
}
.gallery-lightbox.is-open{
  opacity: 1; visibility: visible; pointer-events: auto;
}
.gallery-lightbox,
.gallery-lightbox.is-closing{
  pointer-events: none;
}
.gallery-lightbox-image{
  width: 100vw; height: 100vh; max-width: none; max-height: none; border-radius: 0; box-shadow: none; object-fit: contain; object-position: center; user-select: none;
  -webkit-user-select: none; -webkit-user-drag: none; touch-action: none; will-change: transform, opacity; --lb-translate-x: 0px; --lb-translate-y: 0px; --lb-scale: 0.92; --lb-opacity: 0; filter: brightness(0.985) contrast(1.08) saturate(1.08);
  opacity: var(--lb-opacity);
  transform: translate3d(var(--lb-translate-x), var(--lb-translate-y), 0)
  scale(var(--lb-scale));
  transition:
  transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1),
  opacity 0.26s ease;
}
.gallery-lightbox.is-open .gallery-lightbox-image{
  --lb-scale: 1; --lb-opacity: 1;
}
.gallery-lightbox.is-dragging .gallery-lightbox-image{
  transition: none;
}
.gallery-lightbox.is-closing .gallery-lightbox-image{
  transition:
  transform 0.3s cubic-bezier(0.22, 0.7, 0.2, 1),
  opacity 0.22s ease;
}
.gallery-lightbox.is-closing.is-swipe-closing .gallery-lightbox-image{
  transition-duration: 0.34s, 0.26s;
}
.gallery-lightbox-close{
  position: fixed; top: calc(env(safe-area-inset-top, 0) + 0.75rem); right: calc(env(safe-area-inset-right, 0) + 0.75rem);
  opacity: 0; pointer-events: none; transform: translateY(-8px) scale(0.94);
  z-index: 2;
  transition:
  opacity 0.2s ease,
  transform 0.25s ease;
}
.gallery-lightbox.is-open .gallery-lightbox-close{
  opacity: 1; pointer-events: auto; transform: translateY(0) scale(1);
}
.gallery-lightbox.is-open .gallery-lightbox-close:focus-visible,
.gallery-lightbox.is-open .gallery-lightbox-close:hover{
  transform: translateY(-1px) scale(1.03);
}
.gallery-lightbox.is-open .gallery-lightbox-close:active{
  transform: scale(0.97);
}
@media (max-width: 900px) {
.gallery-swiper{
  padding-inline: clamp(0.3rem, 1.2vw, 0.8rem); -webkit-clip-path: url(#gallery-arc-clip-mobile); clip-path: url(#gallery-arc-clip-mobile);
}
.gallery-swiper .swiper-wrapper{
  gap: 14px;
}
.gallery-swiper .swiper-slide{
  width: clamp(132px, 30vw, 182px);
}
}
@media (max-width: 640px) {
.photo-gallery-section{
  padding-top: 1.25rem; padding-bottom: 2.5rem;
}
.gallery-swiper{
  padding-inline: 0.2rem; -webkit-clip-path: url(#gallery-arc-clip-mobile); clip-path: url(#gallery-arc-clip-mobile);
}
.gallery-swiper .swiper-wrapper{
  gap: 8px;
}
.gallery-swiper .swiper-slide{
  width: clamp(116px, 36vw, 160px);
}
}
#about-extra-content.beer-showcase-extra,
#about-extra-content.beer-showcase-extra.is-expanded{
  background: 0 0 !important; clip-path: none !important; filter: none !important;
}
#about-extra-content.beer-showcase-extra{
  will-change: max-height, opacity, transform;
  transition:
  max-height 1.12s cubic-bezier(0.2, 0.9, 0.24, 1),
  opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
  transform 0.96s cubic-bezier(0.22, 1, 0.36, 1),
  margin-top 0.56s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
#about-extra-content.beer-showcase-extra::before,
.about-story-panel-reference::after,
.about-story-panel-reference::before{
  content: none !important; display: none !important;
}
.about-story-panel-reference{
  position: relative; background: 0 0 !important; box-shadow: none !important;
  border-radius: 0 !important; padding: 0 !important; overflow: visible !important;
}
.story-ref-shell{
  position: relative; max-width: 72rem; margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7rem) 0 clamp(3.5rem, 6vw, 5rem); display: grid; gap: clamp(4.5rem, 8vw, 6.75rem);
  text-transform: none !important;
}
.story-ref-shell [data-story-reveal]{
  opacity: 0; transform: translate3d(0, 1.4rem, 0) scale(0.985); filter: blur(12px);
  transition-delay: var(--story-reveal-delay, 0s); will-change: opacity, transform, filter;
  transition:
  opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
  transform 0.96s cubic-bezier(0.22, 1, 0.36, 1),
  filter 0.86s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-ref-shell [data-story-reveal].is-story-visible{
  opacity: 1; transform: none; filter: blur(0);
}
@media (max-width: 900px) {
.story-ref-shell{
  gap: 3.75rem;
}
}
@media (max-width: 640px) {
.story-ref-shell{
  padding-top: 3rem; gap: 3rem;
}
}
@media (prefers-reduced-motion: reduce) {
#about-extra-content.beer-showcase-extra{
  transition: none !important;
}
.story-ref-shell [data-story-reveal]{
  opacity: 1 !important; transform: none !important; filter: none !important;
  transition: none !important;
}
}
.story-ref-shell.story-timeline-shell{
  position: relative; max-width: 42rem; margin: 0; padding: clamp(3rem, 7vw, 4.75rem) 0 clamp(2.5rem, 5vw, 3.25rem); display: grid; gap: clamp(2.4rem, 6vw, 3.4rem); isolation: isolate; --story-rail-left: 0px; --story-content-start: 18px;
  text-transform: none !important;
}
.story-ref-shell.story-timeline-shell::before{
  content: ""; position: absolute; top: clamp(4.1rem, 11vw, 4.95rem); bottom: 0; left: var(--story-rail-left); width: 2px; box-shadow: none; opacity: 0.95; z-index: 0;
  pointer-events: none;
  background: linear-gradient(
  180deg,
  rgba(74, 222, 128, 0) 0,
  rgba(74, 222, 128, 0.9) 12%,
  rgba(74, 222, 128, 0.78) 50%,
  rgba(74, 222, 128, 0.52) 88%,
  rgba(74, 222, 128, 0) 100%
  );
}
.story-timeline-ambient{
  display: none;
}
.story-ref-shell blockquote,
.story-ref-shell figcaption,
.story-ref-shell h3,
.story-ref-shell p,
.story-ref-shell span,
.story-ref-shell.story-timeline-shell figcaption,
.story-ref-shell.story-timeline-shell h3,
.story-ref-shell.story-timeline-shell p,
.story-ref-shell.story-timeline-shell span{
  text-transform: none !important;
}
.story-ref-shell.story-timeline-shell .story-timeline-step[data-story-reveal]{
  opacity: 0; transform: translate3d(0, 1rem, 0) scale(0.992); filter: blur(8px);
  transition:
  opacity 0.92s cubic-bezier(0.22, 1, 0.36, 1),
  transform 1.02s cubic-bezier(0.22, 1, 0.36, 1),
  filter 0.94s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-timeline-intro{
  position: relative; z-index: 1; padding-left: var(--story-content-start);
  display: grid; justify-items: start; gap: 0.92rem;
  text-align: left;
}
.story-timeline-kicker{
  margin: 0; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.36em; text-transform: uppercase !important; color: rgba(74, 222, 128, 0.9);
}
.story-timeline-intro-title{
  margin: 0; font-family: var(--font-display); font-size: clamp(1.55rem, 5.6vw, 2rem); line-height: 1.08; font-weight: 360; letter-spacing: -0.01em; color: rgba(248, 249, 250, 0.96); text-wrap: balance;
}
.story-timeline-intro-copy{
  margin: 0; max-width: 66ch; font-family: var(--font-body); font-size: clamp(1rem, 1.02rem + 0.28vw, 1.14rem); line-height: 1.76; font-weight: 360; letter-spacing: 0.01em; color: rgba(248, 249, 250, 0.82); text-wrap: pretty;
}
.story-timeline-closing,
.story-timeline-step{
  position: relative; z-index: 1; display: grid;
  gap: 0.9rem; padding-left: var(--story-content-start);
}
.story-timeline-closing{
  gap: 1rem;
}
.story-timeline-year-row{
  position: relative; display: inline-flex; align-items: center;
  min-height: 1.35rem; width: fit-content; transform-origin: left center;
  transition:
  transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
  filter 0.45s ease;
}
.story-timeline-year-row::before{
  content: ""; position: absolute; top: 50%; left: calc(var(--story-rail-left) - var(--story-content-start) + 1px); width: 10px; height: 10px; border-radius: 50%; transform: translate(-50%, -50%); background: #4ade80;
  box-shadow:
  0 0 0 4px rgba(74, 222, 128, 0.12),
  0 0 16px rgba(74, 222, 128, 0.32);
}
.story-timeline-year{
  font-family: "Tanker", var(--font-display); font-size: clamp(1.26rem, 5.1vw, 1.58rem); line-height: 1;
  letter-spacing: 0.1em; text-transform: uppercase !important; color: rgba(248, 249, 250, 0.98);
}
.story-timeline-year-row-label .story-timeline-year{
  font-size: clamp(1.08rem, 4.4vw, 1.3rem);
}
.story-timeline-copy h3{
  text-wrap: pretty;
}
.story-timeline-closing-copy p,
.story-timeline-copy p{
  margin: 0; max-width: 68ch; font-size: 0.97rem; line-height: 1.68;
  font-weight: 360; letter-spacing: 0.01em; color: rgba(248, 249, 250, 0.8);
  text-wrap: pretty;
}
.story-timeline-copy{
  display: grid; gap: 0.78rem; text-align: left;
}
.story-timeline-closing-media{
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem;
}
.story-timeline-closing-media .story-timeline-media-card img{
  filter: saturate(1.08) contrast(1.03) brightness(1.01);
}
.story-timeline-closing-copy{
  display: grid; gap: 0.55rem; text-align: left;
}
.story-timeline-closing-copy h3,
.story-timeline-copy h3{
  margin: 0.12rem 0 0; font-family: "Tanker", var(--font-display); font-size: clamp(1.52rem, 5.4vw, 1.82rem);
  line-height: 1.04; font-weight: 400; letter-spacing: 0.045em;
  color: rgba(248, 249, 250, 0.97);
}
.story-timeline-closing-copy p{
  line-height: 1.62;
}
.story-timeline-media-group{
  display: grid; gap: 0.65rem;
}
.story-timeline-media-group-2010{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.story-timeline-media-group-2010 .story-timeline-media-card-hero{
  grid-column: 1/-1; aspect-ratio: 16/9.8;
}
.story-timeline-media-card{
  position: relative; overflow: hidden; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.04); margin: 0;
  min-height: 0;
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.06),
  0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.36s ease, box-shadow 0.36s ease, border-color 0.3s ease;
}
.story-timeline-media-group-single .story-timeline-media-card{
  aspect-ratio: 16/10.8;
}
.story-timeline-media-group-2010 .story-timeline-media-card-face{
  aspect-ratio: 1/1.05;
}
.story-timeline-media-card img{
  display: block; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1);
  transition: transform 0.55s ease, filter 0.4s ease;
}
.story-timeline-media-card:hover{
  transform: none;
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.06),
  0 20px 40px rgba(0, 0, 0, 0.2);
}
.story-timeline-media-card:hover img{
  transform: scale(1);
}
.story-timeline-media-card-face img{
  object-position: center 24%;
}
.story-timeline-media-old .story-timeline-media-card{
  border-color: rgba(255, 255, 255, 0.2);
}
.story-timeline-media-old .story-timeline-media-card img{
  filter: grayscale(0.55) sepia(0.18) saturate(0.84) contrast(1.01)
  brightness(0.94);
}
.story-timeline-media-old .story-timeline-media-card-color img{
  filter: none;
}
.story-timeline-media-old .story-timeline-media-card::after{
  content: ""; position: absolute; inset: 0;
  mix-blend-mode: soft-light; opacity: 0.38;
  pointer-events: none;
  background:
  linear-gradient(180deg, rgba(26, 16, 10, 0.12), rgba(0, 0, 0, 0.08)),
  url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' opacity='0.55' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:
  auto,
  160px 160px;
}
.story-timeline-media-old .story-timeline-media-card-color::after{
  content: none;
}
.story-timeline-media-vibrant .story-timeline-media-card img{
  filter: saturate(1.14) contrast(1.05) brightness(1.02);
}
.story-timeline-closing.is-story-visible .story-timeline-media-card,
.story-timeline-step.is-story-visible .story-timeline-media-card{
  border-color: rgba(255, 255, 255, 0.16);
}
.story-timeline-step.is-story-current .story-timeline-year-row{
  transform: none; filter: brightness(1.08);
}
.story-timeline-step.is-story-current .story-timeline-year-row::before{
  box-shadow:
  0 0 0 5px rgba(74, 222, 128, 0.16),
  0 0 22px rgba(74, 222, 128, 0.46);
}
.story-timeline-step.is-story-current .story-timeline-year{
  color: #fff; text-shadow: 0 0 18px rgba(74, 222, 128, 0.18);
}
@media (max-width: 640px) {
#about-extra-content.beer-showcase-extra.is-expanded{
  max-height: 12000px; overflow: visible;
}
  .story-ref-shell [data-story-reveal],
  .story-ref-shell.story-timeline-shell
.story-timeline-step[data-story-reveal]{
  opacity: 1; transform: none; filter: none;
  transition: none; will-change: auto;
}
}
@media (max-width: 520px) {
.story-timeline-kicker{
  font-size: 0.66rem; letter-spacing: 0.3em;
}
.story-timeline-intro-title{
  font-size: clamp(1.45rem, 7vw, 1.8rem);
}
.story-timeline-intro-copy{
  font-size: 1rem;
}
.story-timeline-copy h3{
  font-size: clamp(1.55rem, 8vw, 2rem);
}
.story-timeline-copy p{
  font-size: 0.96rem; line-height: 1.62;
}
.story-timeline-year{
  font-size: 1.14rem;
}
}
@media (prefers-reduced-motion: reduce) {
  .story-timeline-year-row,
.story-timeline-year-row::before{
  transition: none !important;
}
}
#hub-overlay .hub-clean{
  position: relative; display: grid; gap: 1.12rem; width: 100%; padding: 1.24rem 1.12rem 1.18rem; overflow: hidden; border-radius: 32px; border: 1px solid rgba(255, 255, 255, 0.08); backdrop-filter: blur(28px) saturate(112%);
  -webkit-backdrop-filter: blur(28px) saturate(112%); isolation: isolate;
  background: linear-gradient(
  180deg,
  rgba(17, 19, 18, 0.24) 0,
  rgba(9, 10, 10, 0.36) 100%
  );
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.05),
  inset 0-8px 20px rgba(0, 0, 0, 0.18),
  0 18px 36px rgba(0, 0, 0, 0.24);
}
#hub-overlay .hub-clean::before,
#master-menu .menu-clean::before{
  content: ""; position: absolute; inset: 0; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='hubSectionNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23hubSectionNoise)'/%3E%3C/svg%3E"); background-size: 220px 220px; background-repeat: repeat; mix-blend-mode: overlay; opacity: 0.03; z-index: 0;
}
#hub-overlay .hub-clean::after,
#master-menu .menu-clean::after{
  content: ""; position: absolute; inset: 0;
  pointer-events: none; opacity: 0.38; z-index: 0;
  background:
  radial-gradient(circle at 18%0, rgba(255, 255, 255, 0.08), transparent 30%),
  radial-gradient(
  circle at 84% 100%,
  rgba(118, 170, 134, 0.1),
  transparent 34%
  );
}
#hub-overlay .hub-clean > *,
#master-menu .menu-clean > *{
  position: relative; z-index: 1;
}
#master-menu .menu-clean{
  position: relative; display: flex; flex-direction: column; gap: 1rem; width: 100%; max-width: 31rem; min-height: clamp(38rem, 88dvh, 50rem); margin: auto; padding: 1.24rem 1.12rem 1.18rem; overflow: hidden; isolation: isolate; border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08); backdrop-filter: blur(28px) saturate(112%); -webkit-backdrop-filter: blur(28px) saturate(112%);
  background: linear-gradient(
  180deg,
  rgba(17, 19, 18, 0.24) 0,
  rgba(9, 10, 10, 0.36) 100%
  );
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.05),
  inset 0-8px 20px rgba(0, 0, 0, 0.18),
  0 18px 36px rgba(0, 0, 0, 0.24);
}
#master-menu .menu-clean > div:last-child{
  width: 100%; margin-top: auto; padding-top: 3rem;
}
#master-menu .menu-clean > div:last-child > div:first-child{
  gap: 0.44rem;
}
#master-menu .menu-clean > div:last-child > div:first-child .social-link{
  opacity: 0.72; transition: opacity 0.22s ease;
}
#master-menu
  .menu-clean
  > div:last-child
  > div:first-child
  .social-link:focus-visible,
#master-menu .menu-clean > div:last-child > div:first-child .social-link:hover{
  opacity: 0.92;
}
#master-menu .menu-clean > div:last-child > p{
  margin-top: 1rem; color: rgba(248, 248, 248, 0.35);
}
#hub-overlay .hub-clean-topbar{
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 0.62rem;
}
#hub-overlay .hub-clean-brand,
#master-menu .hub-clean-brand{
  display: inline-flex; align-items: center; text-decoration: none;
}
#hub-overlay .hub-clean-brand-lockup{
  width: 116px; height: auto; object-fit: contain;
}
#master-menu .hub-clean-brand-lockup{
  height: auto; object-fit: contain; width: 124px;
}
#hub-overlay .hub-clean-topbar .close-button.close-btn,
#master-menu .overlay-head-row .close-button.close-btn{
  width: 56px; height: 56px; margin-top: 0;
  border-radius: 999px; border: 2.5px solid rgba(255, 255, 255, 0.18); background: 0 0;
  box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none;
}
#hub-overlay .hub-clean-topbar .close-button.close-btn::after,
#hub-overlay .hub-clean-topbar .close-button.close-btn::before,
#master-menu .overlay-head-row .close-button.close-btn::after,
#master-menu .overlay-head-row .close-button.close-btn::before{
  width: 19px; height: 1.8px; background: rgba(255, 250, 245, 0.98);
}
#hub-overlay .hub-clean-topbar .close-button.close-btn:focus-visible,
#hub-overlay .hub-clean-topbar .close-button.close-btn:hover{
  transform: translateY(-1px); border-color: rgba(255, 255, 255, 0.18);
}
#master-menu .overlay-head-row .close-button.close-btn:focus-visible,
#master-menu .overlay-head-row .close-button.close-btn:hover{
  transform: rotate(180deg); border-color: rgba(255, 255, 255, 0.18);
}
#hub-overlay .hub-clean-grid{
  display: grid; gap: 1rem;
}
#hub-overlay .hub-clean-panel{
  position: relative; display: grid; gap: 1rem; padding: 1.25rem; overflow: hidden; isolation: isolate; border-radius: 32px; border: 1px solid rgba(255, 255, 255, 0.05); backdrop-filter: blur(18px) saturate(110%);
  -webkit-backdrop-filter: blur(18px) saturate(110%); transform: translate3d(0, 0, 0); transition: box-shadow 0.45s cubic-bezier(0.23, 1, 0.32, 1);
  background:
  linear-gradient(
  90deg,
  rgba(255, 255, 255, 0) 0,
  rgba(255, 255, 255, 0) 18%,
  rgba(132, 177, 145, 0.026) 34%,
  rgba(132, 177, 145, 0.05) 52%,
  rgba(132, 177, 145, 0.026) 70%,
  rgba(255, 255, 255, 0) 88%,
  rgba(255, 255, 255, 0) 100%
  )
  center top/100% 1px no-repeat,
  radial-gradient(
  circle at 88% 52%,
  rgba(92, 137, 104, 0.14) 0,
  rgba(54, 82, 62, 0.08) 30%,
  transparent 68%
  ),
  radial-gradient(
  circle at 16% 12%,
  rgba(156, 191, 163, 0.08) 0,
  transparent 28%
  ),
  linear-gradient(
  180deg,
  rgba(74, 81, 76, 0.68) 0,
  rgba(49, 53, 50, 0.78) 46%,
  rgba(31, 34, 32, 0.86) 100%
  );
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.15),
  inset 0 0 0 1px rgba(255, 255, 255, 0.02),
  inset 0-10px 22px rgba(0, 0, 0, 0.16),
  0 20px 38px rgba(0, 0, 0, 0.22);
}
#hub-overlay .hub-clean-panel::after,
#hub-overlay .hub-clean-panel::before{
  content: ""; position: absolute; inset: 0;
  pointer-events: none; transition: opacity 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
#hub-overlay .hub-clean-panel::before{
  background-repeat: no-repeat, no-repeat, repeat; mix-blend-mode: overlay;
  opacity: 0.16;
  background:
  linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0)),
  radial-gradient(
  circle at 12% 10%,
  rgba(133, 177, 145, 0.05),
  transparent 28%
  ),
  url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='hubCleanRebuildNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23hubCleanRebuildNoise)'/%3E%3C/svg%3E");
  background-size:
  auto,
  auto,
  240px 240px;
}
#hub-overlay .hub-clean-panel::after{
  opacity: 0.76;
  background:
  radial-gradient(
  circle at 16% 10%,
  rgba(255, 255, 255, 0.1),
  transparent 24%
  ),
  radial-gradient(
  circle at 88% 58%,
  rgba(124, 255, 166, 0.12),
  transparent 42%
  ),
  linear-gradient(
  184deg,
  rgba(255, 255, 255, 0.025) 0,
  rgba(255, 255, 255, 0) 26%,
  rgba(0, 0, 0, 0.14) 72%,
  rgba(0, 0, 0, 0.26) 100%
  );
}
#hub-overlay .hub-clean-panel > *{
  position: relative; z-index: 2;
}
#hub-overlay .hub-clean-panel--hero{
  min-height: 20rem; grid-template-rows: 1fr auto;
}
#hub-overlay .hub-clean-panel--hero::before{
  opacity: 0.2;
}
#hub-overlay .hub-clean-copy{
  display: grid; align-content: start; justify-items: start;
  gap: 0.52rem; padding-top: 0.3rem;
}
#hub-overlay .hub-clean-panel--hero .hub-clean-copy{
  align-self: start; gap: 0.4rem; padding-top: 0;
}
#hub-overlay .hub-clean,
#hub-overlay .hub-clean a,
#hub-overlay .hub-clean button,
#hub-overlay .hub-clean h3,
#hub-overlay .hub-clean p,
#hub-overlay .hub-clean span{
  text-transform: none !important;
}
#hub-overlay .hub-clean-title{
  margin: 0; font-family: "Tanker", var(--font-display); font-size: clamp(2.14rem, 4.8vw, 2.92rem); line-height: 1; font-weight: 400; letter-spacing: 0.03em; color: #dce8de; text-shadow: 0 0 18px rgba(182, 213, 191, 0.08);
}
#hub-overlay .hub-clean-panel:not(.hub-clean-panel--hero) .hub-clean-title{
  font-size: clamp(1.84rem, 4.35vw, 2.4rem);
}
#hub-overlay .hub-clean-panel--delivery .hub-clean-title{
  font-size: clamp(1.5rem, 3.6vw, 1.9rem); max-width: none; white-space: nowrap;
}
#hub-overlay .hub-clean-text{
  margin: 0; max-width: none; font-family: var(--font-body); font-size: 0.7rem; line-height: 1.4; font-weight: 450; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.65); opacity: 1;
}
#hub-overlay .hub-clean-text .overlay-word{
  display: inline-block; position: relative; z-index: 1; opacity: 0; filter: blur(8px); transform: translate3d(0, 0.42em, 0); transition-delay: var(--overlay-word-delay, 0s); will-change: transform, opacity, filter;
  transition:
  opacity 0.32s cubic-bezier(0.23, 1, 0.32, 1),
  transform 0.42s cubic-bezier(0.23, 1, 0.32, 1),
  filter 0.42s cubic-bezier(0.23, 1, 0.32, 1);
}
#hub-overlay .hub-clean-text.is-overlay-copy-visible .overlay-word{
  opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0);
}
#hub-overlay .hub-clean-actions{
  display: grid; gap: 0.78rem; grid-template-columns: 1fr;
  margin-top: 1.5rem;
}
#hub-overlay .hub-clean-panel--hero .hub-clean-actions{
  align-self: end; margin-top: 2rem;
}
#hub-overlay .hub-clean-actions--double{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
#hub-overlay .hub-clean-btn{
  display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 54px; padding: 0 1.08rem; border-radius: 999px; text-decoration: none; font-family: var(--font-body);
  font-size: 0.98rem; font-weight: 600; letter-spacing: -0.01em; color: rgba(248, 245, 240, 0.96); border: 1px solid rgba(255, 255, 255, 0.18); white-space: nowrap;
  transition:
  transform 0.2s ease,
  border-color 0.2s ease,
  background 0.2s ease,
  box-shadow 0.2s ease;
}
#hub-overlay .hub-clean-btn:focus-visible,
#hub-overlay .hub-clean-btn:hover{
  transform: translateY(-1px);
}
#hub-overlay .hub-clean-btn--primary{
  border: 0; background: #367360; color: rgba(248, 245, 240, 0.98);
  box-shadow:
  0 12px 26px rgba(0, 0, 0, 0.18),
  inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
#hub-overlay .hub-clean-btn--ghost{
  background: linear-gradient(
  180deg,
  rgba(255, 255, 255, 0.055),
  rgba(255, 255, 255, 0.028)
  );
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.06),
  inset 0 0 0 1px rgba(255, 255, 255, 0.05),
  0 10px 18px rgba(0, 0, 0, 0.14);
}
#hub-overlay .hub-clean-btn--ghost:focus-visible,
#hub-overlay .hub-clean-btn--ghost:hover{
  border-color: #367360;
  background: linear-gradient(
  180deg,
  rgba(255, 255, 255, 0.075),
  rgba(255, 255, 255, 0.038)
  );
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.06),
  inset 0 0 0 1px rgba(255, 255, 255, 0.05),
  0 0 0 1px #367360,
  0 10px 18px rgba(0, 0, 0, 0.14);
}
#hub-overlay .hub-clean-delivery{
  display: flex; align-items: center; justify-content: center;
  flex-wrap: nowrap; gap: 14px; width: 100%;
  margin-top: 0.9rem;
}
#hub-overlay .hub-clean-delivery-link img{
  width: 2.95rem; height: 2.95rem; object-fit: contain;
  filter: none; opacity: 1; transition: opacity 0.22s ease;
}
.contact-hours-status.hub-hours-status{
  place-self: start; justify-content: flex-start; justify-self: start; align-self: flex-start; margin-left: 0; margin-right: auto; margin-top: 0.38rem; text-align: left;
}
#hub-overlay .hub-clean-panel:active{
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.18),
  inset 0 0 0 1px rgba(255, 255, 255, 0.03),
  0 24px 42px rgba(0, 0, 0, 0.24);
}
#hub-overlay .hub-clean-btn:active,
#master-menu.active .menu-link:active{
  transform: translate3d(0, 1px, 0);
}
@media (max-width: 480px) {
#hub-overlay .hub-clean{
  padding: 1.08rem 0.98rem 1rem;
}
  #hub-overlay .hub-clean-brand-lockup,
#master-menu .hub-clean-brand-lockup{
  width: 106px;
}
#hub-overlay .hub-clean-panel--hero{
  min-height: 15.8rem;
}
#hub-overlay .hub-clean-panel{
  padding: 1rem;
}
#hub-overlay .hub-clean-panel--delivery{
  min-height: 8.55rem;
}
#hub-overlay .hub-clean-actions--double{
  grid-template-columns: 1fr;
}
#hub-overlay .hub-clean-title{
  font-size: 1.82rem;
}
  #hub-overlay .hub-clean-panel--delivery .hub-clean-title,
#hub-overlay .hub-clean-panel:not(.hub-clean-panel--hero) .hub-clean-title{
  font-size: 1.62rem;
}
#hub-overlay .hub-clean-panel--delivery .hub-clean-title{
  font-size: 1.36rem;
}
#hub-overlay .hub-clean-text{
  font-size: 0.8rem;
}
#hub-overlay .hub-clean-btn{
  min-height: 48px; font-size: 0.84rem;
}
#hub-overlay .hub-clean-delivery-link img{
  width: 2.6rem; height: 2.6rem;
}
}
/* 7) Contact */
.contact-section{
  position: relative; z-index: 1; background: 0 0;
  padding: clamp(3rem, 7vw, 4.8rem) var(--space-section-x)
  clamp(1.8rem, 4.5vw, 3rem);
}
.contact-shell{
  max-width: 1120px; margin: 0 auto;
}
.contact-layout-v2{
  display: grid; grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr); gap: clamp(1rem, 3vw, 2rem);
  align-items: start; padding-inline: clamp(0.65rem, 2.8vw, 3rem);
}
.contact-head{
  margin-bottom: 0; padding-inline: 0; text-align: left;
}
.contact-grid{
  display: grid; grid-template-columns: 1fr; gap: clamp(0.95rem, 2vw, 1.25rem);
  margin-top: clamp(0.85rem, 2.4vw, 1.45rem);
}
.contact-card{
  min-height: 0; padding: var(--space-card); display: grid; align-content: start; gap: 0.95rem; text-align: left; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  transition:
  border-color 0.24s ease,
  background-color 0.24s ease,
  transform 0.24s ease,
  box-shadow 0.24s ease;
}
.contact-card:focus-within,
.contact-card:hover{
  border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.075);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}
.contact-card-stack{
  display: grid; gap: 0.85rem; align-content: start;
}
.contact-link,
.contact-value{
  display: inline-block; margin: 0; font: 500 clamp(1rem, 1.65vw, 1.24rem)/1.55 var(--font-body);
  letter-spacing: 0.02em; color: #efedea; text-decoration: none;
  text-transform: none;
}
.contact-link-maps{
  display: block; width: 100%; max-width: 100%;
  padding-bottom: 0.1rem;
  transition:
  color 0.3s ease-in-out,
  text-shadow 0.3s ease-in-out;
}
.contact-link:hover{
  color: #efedea;
}
.contact-link-main > span:first-child{
  display: block; white-space: normal; font-size: 1.08em;
  font-weight: 600;
}
.contact-link-main{
  display: grid; min-width: 0; max-width: 100%; gap: 0.08rem; overflow-wrap: break-word; word-break: break-word; font-size: 1.04rem; line-height: 1.62;
}
.contact-link-subline{
  display: inline-flex; align-items: center; gap: 0.68rem;
  margin-top: 0; color: rgba(239, 237, 234, 0.7);
}
.contact-link-subline::after{
  content: "↗"; display: inline-block; color: var(--neon-green); font-size: 1.12em; font-weight: 900; line-height: 1; opacity: 1; text-shadow: 0 0 12px color-mix(in srgb, var(--neon-green) 34%, transparent); transform: translate3d(0, 0, 0);
  transition:
  transform 0.22s ease,
  color 0.22s ease,
  opacity 0.22s ease;
}
.contact-link-maps:focus-visible,
.contact-link-maps:hover{
  color: #fff; text-shadow: 0 0 18px rgba(119, 138, 127, 0.14);
}
.contact-link-maps:focus-visible .contact-link-subline::after,
.contact-link-maps:hover .contact-link-subline::after{
  transform: translate3d(2px, -2px, 0);
}
.contact-link-phone{
  color: rgba(235, 238, 236, 0.88); font-weight: 600;
}
.contact-hours{
  display: grid; align-content: start; gap: 0.9rem;
  width: 100%; min-height: 100%;
}
.contact-hours-list{
  width: 100%; display: grid; gap: 0.38rem;
}
.contact-hours-days{
  margin: 0; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.28em; color: rgba(177, 183, 179, 0.54);
}
.contact-hours-summary{
  margin: 0; font-size: clamp(1.26rem, 1.95vw, 1.52rem); font-weight: 620;
  line-height: 1.15; letter-spacing: 0.02em; color: rgba(248, 249, 250, 0.97);
}
.contact-card-note,
.contact-hours-subline{
  margin: 0; font-size: 0.82rem; line-height: 1.5;
  letter-spacing: 0.03em; color: rgba(239, 237, 234, 0.6); text-transform: none;
}
.contact-card-note{
  margin-top: 0.44rem; font-size: 0.78rem; line-height: 1.58;
  color: rgba(201, 204, 202, 0.6);
}
.contact-hours-status{
  display: inline-flex; align-items: center; justify-self: start; align-self: end; width: fit-content; max-width: max-content; margin-left: 0; gap: 0.5rem; margin-top: auto;
  padding: 0.52rem 0.88rem; border: 0; border-radius: 999px; background: rgba(255, 255, 255, 0.08); box-shadow: none; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em; color: rgba(230, 230, 230, 0.76);
  white-space: nowrap; text-transform: none;
}
.contact-hours-status-dot{
  width: 0.48rem; height: 0.48rem; border-radius: 999px;
  background: rgba(153, 255, 205, 0.98); box-shadow: 0 0 0 0 rgba(153, 255, 205, 0.38); animation: contactHoursPulse 1.8s ease-in-out infinite;
}
.contact-hours-status.is-closed{
  animation: none;
}
.contact-hours-status.is-closed .contact-hours-status-dot{
  background: rgba(255, 122, 122, 0.98); box-shadow: 0 0 0 0 rgba(255, 84, 84, 0.56); animation: contactClosedDotPulse 1.85s ease-in-out infinite;
}
/* 8) Footer */
.site-footer{
  position: relative; margin-top: 0; background: 0 0;
  overflow: hidden;
  padding: clamp(5rem, 10vh, 7.2rem) var(--space-section-x)
  clamp(1.2rem, 2.4vw, 1.5rem);
}
.site-footer::after,
.site-footer::before{
  content: ""; position: absolute; left: 50%;
  transform: translateX(-50%); pointer-events: none;
}
.site-footer::before{
  top: clamp(1.1rem, 2.4vw, 1.8rem); width: min(100%, 920px); height: 1px;
  opacity: 1;
  background: linear-gradient(
  90deg,
  rgba(255, 255, 255, 0) 0,
  rgba(214, 216, 218, 0.1) 50%,
  rgba(255, 255, 255, 0) 100%
  );
}
.site-footer::after{
  top: calc(clamp(1.1rem, 2.4vw, 1.8rem) - 8px); width: min(100%, 920px); height: 24px;
  filter: blur(10px); opacity: 0.48;
  background: radial-gradient(
  ellipse at center,
  rgba(255, 255, 255, 0.08) 0,
  rgba(255, 255, 255, 0.03) 34%,
  rgba(255, 255, 255, 0) 72%
  );
}
.site-footer-shell{
  position: relative; z-index: 1; max-width: 520px;
  margin: 0 auto; padding-top: clamp(1.55rem, 3.2vw, 2.35rem); text-align: center;
}
.site-footer-brand-stack{
  display: grid; justify-items: center; gap: clamp(1.8rem, 3.6vw, 2.8rem);
  padding: 0 0 clamp(1.8rem, 3.6vw, 2.8rem);
}
.site-footer-brand{
  display: inline-flex; width: fit-content; text-decoration: none;
  transform: translateY(-0.28rem);
}
.site-footer-brand-image{
  width: clamp(134px, 10vw, 176px); height: auto; filter: brightness(0) invert(1);
  opacity: 0.78;
}
.site-footer-copy{
  position: relative; z-index: 1; margin: 0; max-width: none; color: #555; font-size: 10px; line-height: 1.5; letter-spacing: 0.08em; text-align: center;
  text-transform: none; padding: clamp(0.45rem, 1.2vw, 0.7rem) 0 0;
}
.site-footer-socials-minimal{
  display: flex; flex-wrap: wrap; gap: clamp(1.25rem, 2.4vw, 1.9rem);
  justify-content: center; align-items: center; margin-top: 0.2rem;
}
.site-footer-social-minimal{
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  transition:
  transform 0.26s ease,
  color 0.3s ease,
  opacity 0.3s ease;
}
.site-footer-social-minimal img{
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(0) invert(1); opacity: 0.5;
  transition:
  opacity 0.3s ease,
  filter 0.3s ease,
  transform 0.3s ease;
}
.site-footer-social-minimal:focus-visible,
.site-footer-social-minimal:hover{
  transform: translateY(-2px) scale(1.04); color: rgba(255, 255, 255, 0.86);
}
.site-footer-social-minimal:focus-visible img,
.site-footer-social-minimal:hover img{
  opacity: 1; transform: translateY(-2px);
  filter: brightness(0) invert(1);
}
.site-footer-legal-row{
  display: flex; justify-content: center; margin-top: 2.2rem;
  padding-bottom: 0.08rem;
}
.site-footer-legal-links-minimal{
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1.1rem;
}
.site-footer-legal-minimal{
  color: rgba(255, 255, 255, 0.4); text-decoration: none; font-size: 11px;
  font-weight: 600; letter-spacing: 0.2em; line-height: 1.5;
  transition: color 0.3s ease;
}
.site-footer-legal-minimal:focus-visible,
.site-footer-legal-minimal:hover{
  color: rgba(194, 194, 194, 0.86);
}
.site-footer-legal-separator{
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.72rem; line-height: 1; color: rgba(255, 255, 255, 0.18);
  opacity: 1;
}
.footer-terminal-marquee{
  position: relative; z-index: 1; overflow: hidden; height: clamp(5.8rem, 12vw, 8.8rem); display: flex; align-items: center; margin-top: clamp(0.4rem, 1vw, 0.9rem); padding: 0;
}
.footer-terminal-marquee-track{
  display: flex; width: max-content; gap: 0;
  will-change: transform; transform: translate3d(0, 0, 0); animation: footerTerminalMarqueeLoop 72s linear infinite;
}
.footer-terminal-marquee-track span{
  position: relative; top: -0.02em; flex: 0 0 auto; padding-right: 1.35rem; font-family: var(--font-body); font-size: clamp(5.4rem, 13vw, 10rem); font-weight: 900; line-height: 0.82; letter-spacing: -0.065em;
  white-space: nowrap; color: rgba(255, 255, 255, 0.035);
}
@media (min-width: 1200px) {
.services-cards-shell,
.about-premium-shell,
.contact-shell{
  width: min(100%, 1240px); max-width: 1240px;
}
.services-grid{
  max-width: min(100%, 62rem);
}
.contact-grid{
  gap: 1.35rem;
}
}
@media (min-width: 768px) and (max-width: 1199px) {
.services-cards-section,
.about-premium-section,
.contact-section{
  padding-inline: clamp(1.35rem, 4vw, 2.25rem);
}
.services-grid{
  max-width: min(100%, 58rem); padding-inline: clamp(0.8rem, 2vw, 1.2rem);
}
}
@media (min-width: 901px) {
.contact-layout-v2{
  grid-template-columns: 1fr; gap: clamp(1.6rem, 3vw, 2.4rem); align-items: start;
}
.contact-head{
  max-width: 52rem;
}
.contact-head .about-premium-heritage{
  max-width: 14ch; font-size: clamp(1.9rem, 3.8vw, 4rem); line-height: 1.12;
}
.contact-grid{
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.92fr) minmax(0, 0.98fr); width: 100%; justify-self: start;
  align-self: start; margin-top: 0; gap: 1.2rem;
}
.contact-card{
  min-height: 232px; padding: 1.45rem 1.6rem;
}
.contact-link-main{
  max-width: 100%;
}
  .contact-hours-list,
.contact-link-phone{
  width: 100%;
}
  .contact-link-main,
.contact-link-phone{
  font-size: 0.98rem;
}
.contact-hours-summary{
  font-size: 1.2rem;
}
.site-footer-legal-row{
  position: relative; z-index: 1; margin-top: 1rem;
}
.footer-terminal-marquee{
  height: clamp(5.2rem, 9vw, 7.4rem); align-items: center; margin-top: clamp(0.7rem, 1.4vw, 1.15rem);
}
.footer-terminal-marquee-track span{
  top: 0; font-size: clamp(4.6rem, 8.8vw, 7.6rem);
}
}
@media (max-width: 900px) {
  .contact-grid,
.contact-layout-v2{
  grid-template-columns: 1fr;
}
.contact-card{
  min-height: auto;
}
}
@media (max-width: 640px) {
.contact-section{
  padding-top: 3.5rem; padding-bottom: 4.4rem;
}
.contact-head{
  margin-bottom: 1.8rem;
}
.contact-card{
  padding: 1.35rem 1.2rem 1.45rem;
}
  .contact-link,
.contact-value{
  font-size: clamp(0.88rem, 3.55vw, 1.02rem);
}
.contact-hours-summary{
  font-size: clamp(1.1rem, 4.8vw, 1.28rem);
}
.footer-terminal-marquee-track span{
  font-size: clamp(4.4rem, 16vw, 6.8rem);
}
}
@media (max-width: 420px) {
.contact-section{
  padding-inline: 1rem; padding-top: 3.15rem; padding-bottom: 4rem;
}
.contact-head{
  padding-inline: 0;
}
  .contact-card .contact-link-main,
  .contact-link,
.contact-value{
  font-size: clamp(0.82rem, 3.55vw, 0.95rem);
}
.contact-card-note{
  font-size: 0.74rem;
}
}
/* 10) Responsive polish (tablet / laptop / desktop-wide) */
@media (min-width: 768px) and (max-width: 1023px) {
.nav-container{
  top: 0.9rem;
  width: min(calc(100% - 1.6rem), 980px);
}
.hero-content{
  width: min(calc(100% - 1.8rem), 980px);
  padding-inline: clamp(1.1rem, 2.6vw, 1.7rem);
  padding-top: clamp(6rem, 9.4vh, 7.1rem);
}
.hero-title-display{
  font-size: clamp(3.4rem, 6.6vw, 5.6rem);
  line-height: 0.82;
}
.hero-subtitle-main{
  max-width: 28rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}
.services-cards-shell,
.about-premium-shell,
.contact-shell{
  width: min(100%, 1040px);
  max-width: 1040px;
}
.services-grid{
  max-width: min(100%, 52rem);
  padding-inline: clamp(0.7rem, 1.4vw, 0.95rem);
}
.contact-grid{
  grid-template-columns: 1fr;
}
.site-footer-shell{
  width: min(100%, 1040px);
  padding-inline: clamp(1rem, 2.1vw, 1.4rem);
}
}

@media (min-width: 1024px) and (max-width: 1365px) {
.nav-container{
  top: 0.95rem;
  width: min(calc(100% - 1.8rem), 1220px);
}
.hero-content{
  width: min(calc(100% - 2rem), 1180px);
  padding-inline: clamp(1rem, 1.8vw, 1.35rem);
}
.services-cards-shell,
.about-premium-shell,
.contact-shell{
  width: min(100%, 1180px);
  max-width: 1180px;
}
.services-grid{
  max-width: min(100%, 60rem);
}
.about-premium-copy{
  padding-inline: clamp(1.1rem, 2.1vw, 1.8rem);
}
.contact-grid{
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.94fr) minmax(0, 0.94fr);
}
.site-footer-shell{
  width: min(100%, 1180px);
}
}

@media (min-width: 1366px) {
.hero-content{
  width: min(calc(95% + 88px), 1360px);
  padding-inline: clamp(0.9rem, 1.25vw, 1.25rem);
}
.services-cards-shell,
.about-premium-shell,
.contact-shell{
  width: min(100%, 1320px);
  max-width: 1320px;
}
.services-grid{
  max-width: min(100%, 66rem);
}
.contact-grid{
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.96fr);
  gap: 1.35rem;
}
.site-footer-shell{
  width: min(100%, 1320px);
}
}

/* Motion tuning by device class */
@media (min-width: 1366px) {
.service-card-subtitle{
  font-size: 1rem;
  line-height: 1.56;
}
.service-card-link{
  font-size: 0.8rem;
}
#hub-overlay .hub-clean-text{
  font-size: 0.78rem;
  line-height: 1.5;
}
.gallery-item{
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.32);
}
.gallery-item img{
  transition: transform 0.64s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}
.gallery-item:hover img{
  transform: scale(1.04);
}
.story-timeline-media-card{
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.34s ease;
}
.story-timeline-media-card:hover{
  transform: none;
}
.story-timeline-media-card:hover img{
  transform: scale(1);
}
.contact-card{
  transition: border-color 0.28s ease, background-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.contact-card:focus-within,
.contact-card:hover{
  transform: translateY(-3px);
}
#hub-overlay .hub-clean-btn:focus-visible,
#hub-overlay .hub-clean-btn:hover{
  transform: translateY(-2px) scale(1.01);
}
}

@media (min-width: 768px) and (max-width: 1023px) {
.gallery-item:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}
.gallery-item:hover img{
  transform: scale(1.015);
}
.story-timeline-media-card:hover{
  transform: none;
  box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.06),
  0 20px 40px rgba(0, 0, 0, 0.2);
}
.story-timeline-media-card:hover img{
  transform: scale(1);
}
.contact-card:focus-within,
.contact-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.site-footer-social-minimal:focus-visible,
.site-footer-social-minimal:hover{
  transform: translateY(-1px) scale(1.02);
}
}

/* Device-focused refinements */
@media (max-width: 390px) {
.hero-title-display{
  font-size: clamp(2.8rem, 11.8vw, 4.1rem);
}
.hero-subtitle-main{
  max-width: 15.8rem;
  font-size: 0.92rem;
}
.services-grid{
  padding-inline: 0.56rem;
}
.service-card-link{
  font-size: clamp(0.61rem, 2.9vw, 0.72rem);
}
}

@media (min-width: 768px) and (max-width: 834px) {
.hero-content{
  width: min(calc(100% - 1.4rem), 980px);
}
.services-grid{
  max-width: min(100%, 50rem);
}
}

@media (min-width: 1366px) and (max-width: 1599px) {
.services-grid{
  max-width: min(100%, 62rem);
}
}

@media (min-width: 1600px) {
.hero-content{
  width: min(calc(95% + 120px), 1460px);
}
.services-cards-shell,
.about-premium-shell,
.contact-shell{
  width: min(100%, 1400px);
  max-width: 1400px;
}
.services-grid{
  max-width: min(100%, 70rem);
}
}

/* Secondary pages: balance whitespace on tablet/desktop */
@media (min-width: 1024px) {
.offer-shell{
  width: min(100%, 820px);
}
.privacy-shell{
  width: min(100%, 760px);
}
}

@media (min-width: 768px) and (max-width: 1023px) {
.offer-main{
  padding-inline: max(2rem, env(safe-area-inset-left, 0px) + 1.3rem);
}
.privacy-main{
  padding-inline: max(2.4rem, env(safe-area-inset-left, 0px) + 1.6rem);
}
}
/* 9) Cookie banner */
.glass-banner{
  position: fixed; left: 24px; bottom: 24px; width: min(calc(100% - 48px), 400px); padding: 16px 20px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 16px; background: rgba(10, 11, 12, 0.78); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.34); z-index: 999999;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.glass-banner[hidden]{
  display: none;
}
.glass-banner.is-visible{
  opacity: 1; transform: translateY(0);
}
.glass-content > div:first-child{
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding-left: 6px;
}
.glass-content h3{
  margin: 0 0 0 4px; font-family: "Tanker", var(--font-display); font-size: 18px; line-height: 1.08; font-weight: 400; color: rgba(255, 255, 255, 0.92); letter-spacing: 0.08em; text-transform: none;
}
.glass-content p{
  margin: 0 0 16px; color: rgba(255, 255, 255, 0.9); font-family: var(--font-body);
  font-size: 14px; line-height: 1.5; text-transform: none; letter-spacing: 0;
}
.glass-buttons{
  display: flex; gap: 10px; width: 100%;
}
.glass-buttons > *{
  flex: 1 1 0; min-width: 0;
}
.btn-primary,
.btn-secondary{
  display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 42px; padding: 10px 14px; border-radius: 8px; font-family: "Tanker", var(--font-display); font-size: 14px; letter-spacing: 0.14em; cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}
.btn-primary{
  border: 1px solid #367360; background: #367360; color: #f7fff9; box-shadow: none;
}
.btn-primary:hover{
  background: #3d816d; transform: translateY(-1px);
}
.btn-secondary{
  border: 1px solid rgba(255, 255, 255, 0.26); background: transparent; color: #ffffff;
}
.btn-secondary:hover{
  background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.4);
}
.glass-cookie-icon{
  width: 24px; height: 24px; flex: 0 0 24px; opacity: 1; filter: brightness(0) saturate(100%) invert(37%) sepia(31%) saturate(828%) hue-rotate(112deg) brightness(92%) contrast(89%);
}
@media (max-width: 480px) {
.glass-banner{
  left: 50%; bottom: 12px; width: calc(100% - 24px); max-width: 400px; padding: 14px 18px; transform: translateX(-50%) translateY(12px);
}
.glass-banner.is-visible{
  transform: translateX(-50%) translateY(0);
}
.glass-content > div:first-child{
  gap: 10px; margin-bottom: 12px; padding-left: 4px;
}
.glass-cookie-icon{
  width: 22px; height: 22px; flex-basis: 22px;
}
.glass-buttons{
  gap: 10px;
}
}

/* 10) Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after{
  scroll-behavior: auto !important;
}
.hero-slide,
.gallery-item,
.story-timeline-media-card,
.contact-card{
  transition-duration: 0.01ms !important;
}
.marquee-inner,
.marquee-band.is-looping .marquee-inner{
  animation-duration: 90s !important;
  animation-iteration-count: infinite !important;
}
.footer-terminal-marquee-track{
  animation-duration: 110s !important;
  animation-iteration-count: infinite !important;
}
}