/* ============================================================
   WTF! What the Fizz! — Brand CSS
   Colors from logo: Coral #FF6B6B, Teal #4ECDC4, Yellow #FFD93D,
   Brown #8B5E3C, Cream #FFF8EC
   ============================================================ */

/* ── TOKENS ── */
:root {
  /* Brand palette */
  --coral:        #FF6B6B;
  --coral-dark:   #e84c4c;
  --coral-light:  #FFE5E5;
  --teal:         #4ECDC4;
  --teal-dark:    #2DB3AA;
  --teal-light:   #D5F5F3;
  --yellow:       #FFD93D;
  --yellow-dark:  #F5C400;
  --yellow-light: #FFF8D0;
  --brown:        #8B5E3C;
  --brown-dark:   #6A4428;
  --brown-light:  #F5EBE0;
  --cream:        #FFF8EC;
  --cream-2:      #FFF3D8;
  --white:        #FFFFFF;

  /* Semantic roles */
  --color-bg:           var(--cream);
  --color-surface:      var(--white);
  --color-surface-2:    #FFFDF7;
  --color-text:         #2D1B00;
  --color-text-muted:   #7A5C3A;
  --color-text-faint:   #C4A880;
  --color-primary:      var(--coral);
  --color-primary-dark: var(--coral-dark);
  --color-accent:       var(--teal);
  --color-accent-dark:  var(--teal-dark);
  --color-border:       #F0DFC0;
  --color-divider:      #F5E8CC;

  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7rem);

  /* Spacing */
  --space-1:  0.25rem; --space-2:  0.5rem;  --space-3:  0.75rem;
  --space-4:  1rem;    --space-5:  1.25rem; --space-6:  1.5rem;
  --space-8:  2rem;    --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.5rem; --radius-md: 0.875rem; --radius-lg: 1.25rem;
  --radius-xl: 1.75rem; --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(139,94,60,0.08);
  --shadow-md: 0 6px 20px rgba(139,94,60,0.12);
  --shadow-lg: 0 16px 40px rgba(139,94,60,0.16);
  --shadow-pop: 0 8px 0px rgba(139,94,60,0.18);

  /* Fonts */
  --font-display: 'Fredoka', 'Comic Sans MS', cursive;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --trans: 200ms var(--ease);

  /* Layout */
  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1200px;
}

/* Dark mode */
[data-theme="dark"] {
  --color-bg:         #1A1208;
  --color-surface:    #231A0B;
  --color-surface-2:  #2A200E;
  --color-text:       #F5E8CC;
  --color-text-muted: #C4A880;
  --color-text-faint: #7A5C3A;
  --color-border:     #3D2D14;
  --color-divider:    #2E2010;
  --coral:            #FF8080;
  --coral-dark:       #FF6B6B;
  --teal:             #5FD8CF;
  --teal-dark:        #4ECDC4;
  --yellow:           #FFE04D;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:         #1A1208;
    --color-surface:    #231A0B;
    --color-surface-2:  #2A200E;
    --color-text:       #F5E8CC;
    --color-text-muted: #C4A880;
    --color-text-faint: #7A5C3A;
    --color-border:     #3D2D14;
    --color-divider:    #2E2010;
  }
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh; line-height: 1.65;
  font-family: var(--font-body); font-size: var(--text-base);
  color: var(--color-text); background-color: var(--color-bg);
}
img, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.2; font-family: var(--font-display); }
p, li { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

::selection { background: rgba(78,205,196,0.25); color: var(--color-text); }
:focus-visible { outline: 2.5px solid var(--coral); outline-offset: 3px; border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-full);
  font-family: var(--font-display); font-size: var(--text-base); font-weight: 600;
  letter-spacing: 0.02em; transition: transform var(--trans), box-shadow var(--trans), background var(--trans);
  text-decoration: none; white-space: nowrap; border: 2.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--coral); color: white; border-color: var(--coral); box-shadow: 0 4px 0 var(--coral-dark); }
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); box-shadow: 0 6px 0 #c73c3c; }
.btn-outline { background: transparent; color: var(--color-text); border-color: var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: var(--color-bg); }
.btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-lg); }
.btn-full { width: 100%; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--color-divider);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: var(--content-wide); margin: 0 auto;
  padding: var(--space-3) var(--space-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-8);
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { width: 140px; height: auto; }
.logo-sm { width: 120px; }
/* Real logo image in header */
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform var(--trans);
}
.logo-img:hover { transform: scale(1.04) rotate(-1deg); }
.main-nav { display: flex; align-items: center; gap: var(--space-6); }
.main-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  color: var(--color-text-muted); transition: color var(--trans);
}
.main-nav a:hover { color: var(--coral); }
.nav-cta {
  background: var(--teal); color: white !important;
  padding: var(--space-2) var(--space-5); border-radius: var(--radius-full);
  box-shadow: 0 3px 0 var(--teal-dark);
  transition: transform var(--trans), box-shadow var(--trans) !important;
}
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 5px 0 var(--teal-dark) !important; color: white !important; }
.mobile-menu-btn { display: none; padding: var(--space-2); color: var(--color-text); }
.mobile-nav { display: none; flex-direction: column; gap: 0; border-top: 2px solid var(--color-divider); background: var(--color-bg); }
.mobile-nav.open { display: flex; }
.mob-link { padding: var(--space-4) var(--space-6); font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); border-bottom: 1px solid var(--color-divider); color: var(--color-text); transition: background var(--trans), color var(--trans); }
.mob-link:hover { background: var(--color-divider); color: var(--coral); }
.mob-cta { background: var(--teal); color: white !important; border-bottom: none; }
.mob-cta:hover { background: var(--teal-dark) !important; }

/* ── BUBBLES ── */
.bubbles-bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.bubble {
  position: absolute; border-radius: 50%; opacity: 0.5;
  animation: floatUp linear infinite;
}
.b1  { width:40px; height:40px; left:5%;   bottom:-40px; background:var(--coral);  animation-duration:7s;  animation-delay:0s; }
.b2  { width:25px; height:25px; left:12%;  bottom:-25px; background:var(--teal);   animation-duration:9s;  animation-delay:1s; }
.b3  { width:55px; height:55px; left:20%;  bottom:-55px; background:var(--yellow); animation-duration:11s; animation-delay:2s; }
.b4  { width:18px; height:18px; left:30%;  bottom:-18px; background:var(--coral);  animation-duration:8s;  animation-delay:0.5s;}
.b5  { width:35px; height:35px; left:42%;  bottom:-35px; background:var(--teal);   animation-duration:10s; animation-delay:3s; }
.b6  { width:48px; height:48px; left:55%;  bottom:-48px; background:var(--yellow); animation-duration:7.5s;animation-delay:1.5s;}
.b7  { width:22px; height:22px; left:65%;  bottom:-22px; background:var(--coral);  animation-duration:9.5s;animation-delay:4s; }
.b8  { width:60px; height:60px; left:72%;  bottom:-60px; background:var(--teal);   animation-duration:12s; animation-delay:0.8s;}
.b9  { width:30px; height:30px; left:80%;  bottom:-30px; background:var(--yellow); animation-duration:8.5s;animation-delay:2.5s;}
.b10 { width:15px; height:15px; left:88%;  bottom:-15px; background:var(--coral);  animation-duration:6.5s;animation-delay:3.5s;}
.b11 { width:42px; height:42px; left:93%;  bottom:-42px; background:var(--teal);   animation-duration:10.5s;animation-delay:1.2s;}
.b12 { width:28px; height:28px; left:48%;  bottom:-28px; background:var(--coral);  animation-duration:8s;  animation-delay:5s; }
@keyframes floatUp {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 0.5; }
  50%  { opacity: 0.7; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* ── HERO ── */
.hero {
  position: relative; overflow: visible; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 40%, #FFF0D0 100%);
  padding: var(--space-16) var(--space-6);
  /* clip hero bg but allow logo to overflow top-right */
  clip-path: none;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--content-wide); width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  gap: var(--space-6);
  align-items: start;
  /* leave right side breathing room for the big logo */
  padding-right: clamp(420px, 55vw, 740px);
}
.hero-badge {
  display: inline-flex; align-items: center;
  background: var(--teal-light); color: var(--teal-dark);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-sm);
  border: 2px solid var(--teal);
  width: fit-content;
}
.hero-title {
  display: flex; flex-direction: column; gap: var(--space-2);
}
.wtf-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-hero); line-height: 0.95;
  background: linear-gradient(135deg, var(--coral) 0%, #FF8C3B 50%, var(--yellow-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 0px rgba(139,94,60,0.15));
}
.subtitle-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--text-2xl); color: var(--brown);
}
.hero-desc {
  font-size: var(--text-lg); color: var(--color-text-muted); max-width: 50ch; line-height: 1.7;
}
.hero-actions {
  display: flex; gap: var(--space-4); flex-wrap: wrap; align-items: center;
}
.drink-svg {
  width: clamp(160px, 25vw, 280px); height: auto;
  filter: drop-shadow(0 20px 30px rgba(139,94,60,0.2));
  animation: drinkFloat 4s ease-in-out infinite;
}
/* Hero logo — dropped down, shifted left from the edge */
.hero-drink {
  position: absolute;
  top: 60px;
  right: 80px;
  z-index: 2;
  pointer-events: none;
}
.hero-logo-img {
  width: clamp(500px, 62vw, 860px);
  height: auto;
  display: block;
  filter: drop-shadow(0 32px 56px rgba(139,94,60,0.3));
  animation: drinkFloat 4s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes drinkFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-18px) rotate(2deg); }
}

/* ── SECTIONS SHARED ── */
.section-inner {
  max-width: var(--content-wide); margin: 0 auto;
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-6);
}
.section-label {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-sm); color: var(--teal-dark); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: var(--space-3);
  padding: var(--space-1) var(--space-3); background: var(--teal-light);
  border-radius: var(--radius-full); border: 1.5px solid var(--teal);
}
.section-title {
  font-size: var(--text-2xl); font-weight: 700; color: var(--color-text);
  margin-bottom: var(--space-4);
}
.section-desc {
  font-size: var(--text-lg); color: var(--color-text-muted); max-width: 55ch; margin-bottom: var(--space-10);
}

/* ── MENU ── */
.menu-section { background: var(--white); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: var(--space-6);
}
.menu-card {
  background: var(--color-bg); border-radius: var(--radius-xl);
  border: 2.5px solid var(--color-border); overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.menu-card[data-color="coral"] { border-color: var(--coral-light); }
.menu-card[data-color="teal"]  { border-color: var(--teal-light); }
.menu-card[data-color="yellow"]{ border-color: var(--yellow-light); }
.menu-card[data-color="brown"] { border-color: var(--brown-light); }
.menu-card-icon {
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-6) var(--space-6) var(--space-2);
  background: linear-gradient(180deg, var(--cream) 0%, transparent 100%);
}
.menu-card-icon svg { width: 80px; height: 90px; }
.menu-card[data-color="coral"] .menu-card-icon { background: linear-gradient(180deg,#FFF0F0,transparent); }
.menu-card[data-color="teal"]  .menu-card-icon { background: linear-gradient(180deg,#E8FAF9,transparent); }
.menu-card[data-color="yellow"].menu-card-icon { background: linear-gradient(180deg,#FFFAE0,transparent); }
.menu-card[data-color="brown"] .menu-card-icon { background: linear-gradient(180deg,#FAF0E6,transparent); }
.menu-card-body { padding: var(--space-4) var(--space-6) var(--space-6); flex: 1; display: flex; flex-direction: column; gap: var(--space-3); }
.menu-card-body h3 { font-size: var(--text-lg); font-weight: 700; color: var(--color-text); }
.menu-card-body p { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.6; flex: 1; }
.tag-list { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.tag-list li {
  font-size: var(--text-xs); font-weight: 600; font-family: var(--font-display);
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
  background: var(--color-divider); color: var(--color-text-muted);
}
.menu-card[data-color="coral"] .tag-list li { background: var(--coral-light); color: var(--coral-dark); }
.menu-card[data-color="teal"]  .tag-list li { background: var(--teal-light);  color: var(--teal-dark); }
.menu-card[data-color="yellow"].tag-list li { background: var(--yellow-light);color: #A07800; }
.menu-card[data-color="brown"] .tag-list li { background: var(--brown-light); color: var(--brown-dark); }

/* ── BUILD SECTION ── */
.build-section {
  background: linear-gradient(160deg, var(--cream-2) 0%, #FFF5E0 100%);
  position: relative; overflow: hidden;
}
.build-steps {
  display: flex; flex-wrap: wrap; align-items: flex-start;
  gap: var(--space-4); justify-content: center; margin-bottom: var(--space-10);
}
.build-step {
  background: var(--color-surface); border-radius: var(--radius-xl);
  border: 2.5px solid var(--color-border); padding: var(--space-6);
  flex: 1; min-width: min(100%, 200px); max-width: 240px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans);
}
.build-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--coral); color: white;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 0 var(--coral-dark);
}
.step-icon svg { width: 56px; height: 56px; }
.build-step h3 { font-size: var(--text-base); font-weight: 700; color: var(--color-text); }
.step-options {
  list-style: none; display: flex; flex-direction: column; gap: var(--space-1);
  width: 100%;
}
.step-options li {
  font-size: var(--text-xs); color: var(--color-text-muted);
  padding: var(--space-1) 0;
  border-bottom: 1px solid var(--color-divider);
}
.step-options li:last-child { border-bottom: none; }
.build-connector {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-2xl);
  color: var(--teal); align-self: center; flex-shrink: 0; line-height: 1;
  text-shadow: 0 3px 0 var(--teal-dark);
}
.build-cta { text-align: center; }

/* ── ABOUT ── */
.about-section { background: var(--white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: var(--space-16); align-items: center;
}
.about-visual { display: flex; justify-content: center; align-items: center; }
.about-logo-wrap {
  position: relative;
  display: flex; justify-content: center;
}
.about-logo-img {
  width: clamp(200px, 30vw, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(139,94,60,0.2));
  transition: transform 0.4s var(--ease);
}
.about-logo-img:hover { transform: scale(1.04) rotate(2deg); }
.about-text { display: flex; flex-direction: column; gap: var(--space-5); }
.about-text p { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.75; max-width: 60ch; }
.about-text strong { color: var(--color-text); font-weight: 700; }
.about-text em { color: var(--coral); font-style: normal; font-weight: 700; }
.founders-tag {
  display: inline-flex; align-items: center; gap: var(--space-3);
  background: var(--teal-light); color: var(--teal-dark);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-lg);
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm);
  border: 2px solid var(--teal); width: fit-content;
  margin-top: var(--space-2);
}

/* ── CONTACT ── */
.contact-section {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, #FFF0D8 100%);
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--space-16); align-items: start;
  position: relative; z-index: 1;
}
.contact-info { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-info p { font-size: var(--text-base); color: var(--color-text-muted); line-height: 1.75; max-width: 40ch; }
.contact-details { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-2); }
.contact-item {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-base); font-family: var(--font-display); font-weight: 600;
  color: var(--color-text-muted);
}
.contact-item svg { color: var(--coral); flex-shrink: 0; }
.contact-form-wrap {
  background: var(--color-surface); border-radius: var(--radius-xl);
  border: 2.5px solid var(--color-border); padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: var(--space-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label {
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-sm);
  color: var(--color-text);
}
.form-group input, .form-group select, .form-group textarea {
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-bg); font-size: var(--text-base);
  color: var(--color-text); transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(78,205,196,0.2);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
  display: none; align-items: center; gap: var(--space-3);
  background: #D5F5F3; color: var(--teal-dark);
  padding: var(--space-4); border-radius: var(--radius-md);
  border: 2px solid var(--teal); font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-base);
}
.form-success.visible { display: flex; }

/* ── FOOTER ── */
.site-footer {
  background: var(--brown); color: var(--cream);
  padding: var(--space-10) 0 0;
}
.footer-inner {
  max-width: var(--content-wide); margin: 0 auto;
  padding: 0 var(--space-6) var(--space-8);
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--space-8); flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-4); line-height: 0; }
.footer-brand p { line-height: 1.7; } /* restore line-height for text */
.footer-brand p { font-size: var(--text-sm); color: var(--cream); opacity: 0.75; line-height: 1.7; }
.footer-logo-img {
  width: 200px;   /* fix to a pixel width so height scales naturally */
  height: auto;   /* never distort — always preserve aspect ratio */
  display: block;
  flex-shrink: 0; /* prevent flex from squishing it */
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45));
}
.footer-nav { display: flex; gap: var(--space-6); flex-wrap: wrap; align-items: center; margin-top: var(--space-2); }
.footer-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: var(--text-base);
  color: var(--cream); opacity: 0.8; transition: opacity var(--trans), color var(--trans);
}
.footer-nav a:hover { opacity: 1; color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: var(--space-5) var(--space-6); text-align: center;
  font-size: var(--text-xs); color: var(--cream); opacity: 0.6;
}

/* ── SCROLL ANIMATIONS ── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { padding-right: var(--space-6); }
  .hero-drink { position: absolute; top: -10px; right: -10px; }
  .hero-logo-img { width: clamp(200px, 38vw, 320px); }
  .about-inner { grid-template-columns: 1fr; }
  .about-logo-img { width: clamp(160px, 50vw, 260px); }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-content { padding-right: var(--space-6); padding-top: clamp(160px, 45vw, 240px); }
  .hero-drink { top: 0; right: 0; }
  .hero-logo-img { width: clamp(160px, 55vw, 260px); }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .build-connector { display: none; }
  .build-steps { flex-direction: column; align-items: stretch; }
  .build-step { max-width: 100%; }
  .footer-inner { flex-direction: column; }
}
