/* ================================================
   180 DEGREES SPIRITS — Shared Stylesheet
   ================================================ */

/* ================================================
   AGE GATE
   ================================================ */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,8,16,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: ageFadeIn 0.4s ease;
}
@keyframes ageFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
#age-gate.hidden {
  animation: ageFadeOut 0.4s ease forwards;
}
@keyframes ageFadeOut {
  from { opacity: 1; } to { opacity: 0; pointer-events: none; }
}
.age-gate-box {
  max-width: 440px; width: 100%;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.age-gate-logo {
  font-family: 'Knewave', sans-serif; font-size: 40px;
  background: linear-gradient(135deg, #63bbc5, #f6b69e);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.age-gate-title {
  font-family: 'Knewave', sans-serif;
  font-size: clamp(26px, 5vw, 38px);
  color: #fff; line-height: 1.1;
}
.age-gate-sub {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.age-gate-btns {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}
.age-yes {
  padding: 14px 40px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  background: linear-gradient(135deg, #63bbc5, #f6b69e);
  color: #fff; border: none; border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(99,187,197,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(99,187,197,0.45); }
.age-no {
  padding: 14px 32px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.12); border-radius: 50px;
  cursor: pointer; transition: background 0.2s;
}
.age-no:hover { background: rgba(255,255,255,0.1); }
.age-gate-legal {
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em; line-height: 1.6;
}
#age-gate-blocked {
  display: none; flex-direction: column; align-items: center; gap: 16px;
}
#age-gate-blocked p {
  font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.5); line-height: 1.7;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* --- CSS Variables --- */
:root {
  --teal: #63bbc5;
  --peach: #f6b69e;
  --dark: #080810;
  --dark-mid: #0d0d14;
  --dark-footer: #0a2e33;
  --grey-bg: #f7f6f4;
  --text-muted: #888;
  --border: #efefef;
}

/* ================================================
   NAV
   ================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 26px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.stuck {
  padding: 16px 52px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(99,187,197,0.12), 0 4px 24px rgba(99,187,197,0.08);
}
.nav-logo {
  font-family: 'Knewave', sans-serif; font-size: 26px;
  color: #fff; transition: color 0.3s;
}
.site-nav.stuck .nav-logo { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 36px; }

/* Hamburger button */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; z-index: 502;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s ease;
}
.site-nav.stuck .nav-burger span { background: #333; }
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-link {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); transition: color 0.25s;
}
.nav-link:hover { color: #fff !important; }
.site-nav.stuck .nav-link { color: #666; }
.site-nav.stuck .nav-link:hover { color: var(--teal) !important; }
.nav-link.active { color: #fff; }
.site-nav.stuck .nav-link.active { color: var(--teal); }

/* Nav CTA — liquid glass */
.nav-cta {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 22px; border-radius: 50px;
  background: rgba(99,187,197,0.18);
  border: 1px solid rgba(99,187,197,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 2px 12px rgba(99,187,197,0.2);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav-cta:hover {
  background: rgba(99,187,197,0.32) !important;
  border-color: rgba(99,187,197,0.65) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 4px 20px rgba(99,187,197,0.35) !important;
}
.site-nav.stuck .nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--peach)) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(99,187,197,0.35) !important;
}
.site-nav.stuck .nav-cta:hover {
  box-shadow: 0 6px 24px rgba(99,187,197,0.45) !important;
  transform: translateY(-1px);
}

/* ================================================
   INNER PAGE HERO (story, find-us, contact)
   ================================================ */
.page-hero {
  position: relative;
  height: 58vh; min-height: 400px;
  background: var(--dark);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding-bottom: 72px;
}
.page-hero-bg {
  position: absolute; inset: -20% 0;
  background-size: cover; background-position: center;
  opacity: 0.65;
}
.page-hero-vignette {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,0.75) 0%, rgba(8,8,16,0.1) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 52px;
  display: flex; flex-direction: column; gap: 12px;
}
.page-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--teal);
  display: flex; align-items: center; gap: 10px;
}
.page-eyebrow::after {
  content: ''; flex: 0 0 32px; height: 1px;
  background: linear-gradient(to right, var(--teal), transparent);
}
.page-title {
  font-family: 'Knewave', sans-serif;
  font-size: clamp(42px, 7vw, 84px);
  color: #fff; line-height: 0.95;
}
.page-title .grad {
  background: linear-gradient(135deg, var(--teal) 0%, var(--peach) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ================================================
   SHARED SECTION STYLES
   ================================================ */
.section-eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--teal);
}
.section-h2 {
  font-family: 'Knewave', sans-serif;
  font-size: clamp(34px, 4.5vw, 62px);
  color: #111; line-height: 1;
}
.section-body {
  font-size: 15px; font-weight: 600; color: var(--text-muted);
  line-height: 1.85; max-width: 480px;
}

/* ================================================
   CTA BUTTON — Liquid Glass
   ================================================ */
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 42px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(99,187,197,0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(99,187,197,0.4);
  box-shadow:
    0 4px 20px rgba(99,187,197,0.18),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(99,187,197,0.08);
  color: var(--teal);
  border-radius: 50px;
  transition: all 0.25s ease;
  cursor: pointer; font-family: 'Nunito', sans-serif;
}
.cta-btn:hover {
  background: rgba(99,187,197,0.28);
  border-color: rgba(99,187,197,0.6);
  box-shadow:
    0 10px 36px rgba(99,187,197,0.32),
    inset 0 1px 0 rgba(255,255,255,0.65),
    inset 0 -1px 0 rgba(99,187,197,0.12);
  transform: translateY(-2px);
  color: var(--teal);
}

/* On dark backgrounds, white-frosted variant */
.cta-btn-light {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.45);
  color: #fff;
}
.cta-btn-light:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.5);
  box-shadow:
    0 10px 36px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.55);
  color: #fff;
}

.cta-btn-ghost {
  background: rgba(99,187,197,0.08);
  border: 1.5px solid rgba(99,187,197,0.25); color: var(--teal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cta-btn-ghost:hover {
  background: rgba(99,187,197,0.22);
  border-color: rgba(99,187,197,0.5);
  color: var(--teal);
}

/* ================================================
   MARQUEE
   ================================================ */
.marquee-strip {
  background: linear-gradient(135deg, rgba(99,187,197,0.06) 0%, rgba(246,182,158,0.06) 100%);
  border-top: 1px solid rgba(99,187,197,0.15);
  border-bottom: 1px solid rgba(246,182,158,0.15);
  overflow: hidden; padding: 18px 0 28px;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.m-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 32px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: #aaa; white-space: nowrap;
}
.m-val {
  font-family: 'Knewave', sans-serif; font-size: 18px; letter-spacing: 0;
  background: linear-gradient(135deg, var(--teal), var(--peach));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.m-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(99,187,197,0.3); flex-shrink: 0; }

/* ================================================
   FULL BLEED
   ================================================ */
.bleed-section {
  position: relative;
  height: 65vh; min-height: 420px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.bleed-bg {
  position: absolute; inset: -30% 0;
  background-size: cover; background-position: center;
  will-change: transform;
}
.bleed-over {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,46,51,0.72) 0%, rgba(99,187,197,0.38) 100%);
}
.bleed-text {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.bleed-text h2 {
  font-family: 'Knewave', sans-serif;
  font-size: clamp(38px, 7vw, 90px);
  color: #fff; line-height: 0.95;
}
.bleed-text h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal), var(--peach));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bleed-text p {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
}

/* ================================================
   INSTAGRAM SECTION
   ================================================ */
.insta-section {
  background: linear-gradient(135deg, rgba(99,187,197,0.08) 0%, rgba(246,182,158,0.08) 100%);
  padding: 100px 48px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.ig-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px;
  background: rgba(99,187,197,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(99,187,197,0.3);
  border-radius: 50px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.06em;
  color: var(--teal);
  box-shadow: 0 2px 12px rgba(99,187,197,0.15), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.ig-btn:hover {
  background: rgba(99,187,197,0.22);
  box-shadow: 0 8px 28px rgba(99,187,197,0.28), inset 0 1px 0 rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.hash { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #bbb; }
.hash strong { color: var(--teal); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--dark-footer);
  padding: 68px 52px 40px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(99,187,197,0.15);
}
.footer-logo {
  font-family: 'Knewave', sans-serif; font-size: 30px;
  background: linear-gradient(135deg, var(--teal), var(--peach));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-tagline {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.3);
  margin-top: 6px; letter-spacing: 0.06em;
}
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
.footer-nav a {
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); transition: color 0.2s;
}
.footer-nav a:hover { color: var(--peach); }
.footer-bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.2); letter-spacing: 0.04em;
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ================================================
   RESPONSIVE
   ================================================ */
/* ---- Mobile menu overlay (appended to body by JS) ---- */
#mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 1001;
  background: rgba(8,8,16,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
#mobile-menu.open { display: flex; }
#mobile-menu nav {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
#mobile-menu nav a {
  font-family: 'Nunito', sans-serif;
  font-size: 22px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); transition: color 0.2s;
}
#mobile-menu nav a:hover { color: #fff; }
#mobile-menu nav a.mobile-cta {
  margin-top: 8px;
  padding: 14px 40px; border-radius: 50px;
  background: linear-gradient(135deg, #63bbc5, #f6b69e);
  color: #fff; font-size: 14px;
  box-shadow: 0 4px 20px rgba(99,187,197,0.35);
}
#mobileClose {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0; padding: 0;
  transition: background 0.2s;
}
#mobileClose:hover { background: rgba(255,255,255,0.16); }
#mobileClose span {
  display: block; width: 18px; height: 2px;
  background: #fff; border-radius: 2px; position: absolute;
}
#mobileClose span:nth-child(1) { transform: rotate(45deg); }
#mobileClose span:nth-child(2) { transform: rotate(-45deg); }

@media (max-width: 860px) {
  .site-nav { padding: 18px 24px; }
  .site-nav.stuck { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .page-hero-content { padding: 0 24px; }
  .insta-section { padding: 72px 24px; }
  .site-footer { padding: 52px 24px 32px; }
  .footer-top { flex-direction: column; }
  .bleed-bg { inset: -15% 0; }
}
