/* Tropika Brewing Co. — shared brand tokens & chrome */
:root {
  /* Core brand */
  --ivory: #FFF8F0;
  --cream: #F2EFE6;
  --butter: #FCE48E;
  --amber: #FDBA21;
  --gold: #E6B94E;
  --apricot: #F5A97C;
  --coral: #FF9F68;
  --pink: #F7A9C0;
  --rose: #E8A0B0;
  --mauve: #B86E74;
  --terra: #9D4B34;
  --rust: #943D26;
  --cocoa: #451F16;
  --sky: #9BC3D9;
  --aqua: #A8E3EB;
  --mint: #B8E0D2;
  --sage: #D6E5A3;
  --mist: #E7E7F1;
  --lilac: #D4C8E8;

  --ink: #101112;
  --dark-bg: #141210;
  --dark-card: #221E1C;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-text: #F2EFE6;
  --muted: rgba(242, 239, 230, 0.62);

  /* Brand gradients — playful Tropika system */
  --g-turtle: linear-gradient(135deg, #FDBA21 0%, #9BC3D9 50%, #FDBA21 100%);
  --g-sunset: linear-gradient(135deg, #F7A9C0 0%, #F5A97C 45%, #FDBA21 100%);
  --g-terra: linear-gradient(180deg, #451F16 0%, #9D4B34 55%, #943D26 100%);
  --g-hop: linear-gradient(90deg, #F7A9C0 0%, #9D4B34 25%, #F5A97C 50%, #FDBA21 75%, #9BC3D9 100%);
  --g-stripe: linear-gradient(
    90deg,
    #f7a9c0 0%, #f7a9c0 12.5%,
    #9d4b34 12.5%, #9d4b34 25%,
    #f5a97c 25%, #f5a97c 37.5%,
    #e7e7f1 37.5%, #e7e7f1 50%,
    #f5a97c 50%, #f5a97c 62.5%,
    #9d4b34 62.5%, #9d4b34 75%,
    #9bc3d9 75%, #9bc3d9 87.5%,
    #fce48e 87.5%, #fce48e 100%
  );
  --g-play: linear-gradient(135deg, #F7A9C0, #FDBA21 40%, #A8E3EB 75%, #D6E5A3);
  --g-warm: linear-gradient(100deg, #1A1410 0%, #6B3424 55%, #C47A3A 100%);

  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --max-w: 1280px;
  --radius: 14px;
  --radius-lg: 24px;
  --nav-h: 90px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark-bg);
  color: var(--dark-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.brand-stripe {
  height: 6px;
  width: 100%;
  background: var(--g-hop);
}

/* Progress */
.progress {
  position: fixed; left: 0; right: 0; top: 0; height: 4px;
  background: var(--g-hop);
  transform: scaleX(0); transform-origin: 0 50%;
  z-index: 1100;
}

/* Floating actions */
.wa-float, .call-float {
  position: fixed; width: 58px; height: 58px; right: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float { bottom: 30px; background: #25d366; color: #fff; }
.call-float { bottom: 100px; background: var(--amber); color: var(--ink); }
.wa-float:hover, .call-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-icon, .call-icon { width: 28px; height: 28px; fill: currentColor; }

/* Nav */
.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92%; max-width: var(--max-w); height: var(--nav-h);
  z-index: 900;
  background: rgba(26, 22, 20, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  display: flex; align-items: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  top: 10px; height: 70px;
  background: rgba(20, 18, 16, 0.9);
}
.nav .wrap {
  height: 100%; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
}
.logo-img {
  height: auto; max-height: 72px; width: auto;
  transition: max-height 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}
.nav.scrolled .logo-img { max-height: 52px; }
.nav-right { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.links { display: flex; align-items: center; gap: 18px; }
.links a {
  font-weight: 700; font-size: 0.92rem; text-transform: uppercase;
  font-family: var(--font-display); color: var(--dark-text);
  letter-spacing: 0.04em; transition: color 0.25s;
  position: relative;
}
.links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; border-radius: 2px;
  background: var(--g-sunset);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.links a:hover, .links a.active { color: var(--amber); }
.links a:hover::after, .links a.active::after { transform: scaleX(1); }

.cta {
  background: var(--amber); color: var(--ink);
  padding: 12px 22px; border-radius: 50px;
  font-weight: 800; text-transform: uppercase; font-size: 0.85rem;
  border: none; cursor: pointer; font-family: var(--font-display);
  letter-spacing: 0.04em; transition: all 0.2s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(253,186,33,0.45);
}

.mobile-menu-toggle {
  display: none; background: transparent; border: none; cursor: pointer; padding: 8px; z-index: 999;
}
.mobile-menu-toggle span {
  display: block; width: 26px; height: 3px; background: var(--dark-text);
  margin: 5px 0; border-radius: 3px;
}
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px); z-index: 998;
  opacity: 0; pointer-events: none; transition: 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-nav-links {
  position: fixed; top: 0; right: 0; width: min(320px, 88vw); height: 100vh;
  background: var(--dark-card); z-index: 999;
  display: flex; flex-direction: column; padding: 100px 0 0;
  transform: translateX(100%); transition: transform 0.3s;
}
.mobile-nav-links.active { transform: translateX(0); }
.mobile-nav-links a {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  text-transform: uppercase; padding: 18px 36px; color: var(--dark-text);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.menu-close-btn {
  position: absolute; top: 28px; right: 28px; width: 44px; height: 44px;
  background: var(--dark-bg); border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: #fff;
}

/* Footer */
.site-footer, footer.site-footer, footer {
  padding: 80px 0 40px;
  background: #0A0908;
  color: #fff;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer::before, footer.site-footer::before, footer::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--g-hop);
}
.footer-container {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
footer h4, .site-footer h4 {
  color: var(--amber); font-family: var(--font-display);
  text-transform: uppercase; margin: 0 0 24px; letter-spacing: 0.08em;
}
footer ul, .site-footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li, .site-footer ul li { margin-bottom: 14px; }
footer ul li a, .site-footer ul li a {
  opacity: 0.75; transition: 0.2s; font-size: 1.05rem; font-weight: 500;
}
footer ul li a:hover, .site-footer ul li a:hover { opacity: 1; color: var(--amber); }
.footer-legal {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 16px 28px;
  justify-content: space-between; align-items: center;
  font-size: 0.85rem; opacity: 0.65;
}
.footer-legal a:hover { color: var(--amber); opacity: 1; }
.social-dark { display: flex; gap: 14px; }
.social-dark a {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); transition: 0.25s;
}
.social-dark a:hover { background: var(--amber); color: var(--ink); }
.social-dark svg { width: 20px; height: 20px; }

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .links, .cta#desktopCta, .nav-right .cta:not(.mobile-only) { }
  .links { display: none; }
  .mobile-menu-toggle { display: block; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .social-dark { justify-content: center; }
  .footer-legal { justify-content: center; text-align: center; }
  .wa-float { bottom: 80px; right: 18px; }
  .call-float { bottom: 150px; right: 18px; }
}
