@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600&family=Bebas+Neue&family=Bricolage+Grotesque:wght@600;700;800&family=Cormorant+Garamond:wght@500;600;700&family=Instrument+Serif:ital@0;1&family=Marcellus&family=Pacifico&family=Playfair+Display:wght@600;700&family=Yeseva+One&display=swap");

:root {
  --bg: #050403;
  --fg: #fffaf0;
  --muted: rgba(255, 250, 240, 0.66);
  --gold: #d9a84f;
  --gold-soft: #f4d98f;
  --glass-bg: rgba(255, 255, 255, 0.01);
  --glass-line: rgba(255, 255, 255, 0.24);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: var(--fg);
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
.button,
.watch-link,
.brand-mark,
.flavor-grid article,
.hero-drink-logo {
  cursor: pointer;
}

a:hover,
button:hover,
.button:hover,
.watch-link:hover,
.brand-mark:hover,
.flavor-grid article:hover,
.hero-drink-logo:hover {
  cursor: url("./Images/BTV_Logo_Cursor.png?v=4") 7 7, pointer;
}

.protein-calculator-site a:hover,
.protein-calculator-site button:hover,
.protein-calculator-site .button:hover,
.protein-calculator-site .brand-mark:hover,
.protein-calculator-site .protein-fact-card:hover {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.glass-nav {
  position: fixed;
  z-index: 50;
  top: 16px;
  right: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(7, 5, 4, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12), 0 24px 70px rgba(0, 0, 0, 0.32);
}

.brand-mark,
.glass-nav nav,
.glass-nav nav a {
  display: flex;
  align-items: center;
}

.brand-mark {
  position: relative;
  gap: 10px;
  font-weight: 500;
}

.brand-mark img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(217, 168, 63, 0.2));
}

.glass-nav nav {
  gap: 4px;
}

.glass-nav nav a {
  position: relative;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.92rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.glass-nav nav a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.glass-nav nav a:active {
  transform: translateY(1px) scale(0.96);
  background: rgba(217, 168, 63, 0.22);
  box-shadow: 0 0 0 7px rgba(217, 168, 63, 0.12);
}

.glass-nav nav a:focus-visible,
.brand-mark:focus-visible,
.button:focus-visible,
.watch-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 246, 210, 0.18), 0 0 0 8px rgba(217, 168, 63, 0.18);
}

.solid-pill,
.button.solid {
  border: 1.8px solid rgba(255, 250, 240, 0.42);
  background: linear-gradient(135deg, #ffffff, #f2d783);
  color: #050403;
  box-shadow: 0 12px 30px rgba(217, 168, 63, 0.28);
  font-weight: 700;
}

.glass-nav nav a.solid-pill {
  color: #050403;
}

.glass-nav nav a.solid-pill:hover {
  background: linear-gradient(135deg, #ffffff, #ffeaa8 48%, #f6c84f);
  color: #050403;
  box-shadow: 0 14px 34px rgba(246, 200, 79, 0.34), 0 0 0 7px rgba(255, 238, 184, 0.12);
}

.solid-pill:hover,
.button.solid:hover {
  background: linear-gradient(135deg, #fff8d7, #d9a84f);
  color: #050403;
  transform: translateY(-2px);
}

.cinema {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: #000;
}

.hero {
  height: 1000px;
}

.cinema-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slow-zoom {
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.55) 100%);
}

.shade.stronger {
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.12) 22%, rgba(0, 0, 0, 0.12) 68%, #000 100%),
    rgba(0, 0, 0, 0.5);
}

.hero-content,
.center-copy,
.content-section {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 150px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 14px 4px 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.badge strong {
  border-radius: 999px;
  background: #fff;
  color: #000;
  padding: 6px 12px;
  font-weight: 700;
}

.badge span {
  color: rgba(255, 250, 240, 0.92);
  font-weight: 600;
}

.blur-title,
.hero-title,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.blur-title {
  max-width: 820px;
  margin: 24px auto 0;
  font-size: clamp(4rem, 9vw, 6.8rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
}

.hero-title {
  max-width: 820px;
  margin: 26px auto 0;
  color: #fff9ed;
  font-size: clamp(3.25rem, 7vw, 5.7rem);
  font-style: normal;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  color: #ffd66f;
  font-family: "Pacifico", "Brush Script MT", cursive;
  font-size: 0.7em;
  font-style: normal;
  font-weight: 400;
  line-height: 1.16;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.48);
}

.hero-title span:last-child {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 14px auto 0;
  padding-bottom: 8px;
  color: #fff7e7;
  font-family: "Bebas Neue", "Barlow", Arial, sans-serif;
  font-size: 0.94em;
  font-style: normal;
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: 0;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.5);
}

.hero-title span:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9a83f, #fff0b7 52%, #d9a83f);
  box-shadow: 0 10px 24px rgba(217, 168, 63, 0.3);
}

.hero-drink-logo {
  position: relative;
  top: auto;
  left: auto;
  display: grid;
  place-items: center;
  width: clamp(150px, 15vw, 220px);
  margin: 20px auto 0;
  border-radius: 50%;
  cursor: pointer;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.58)) drop-shadow(0 0 30px rgba(217, 168, 63, 0.28));
}

.hero-drink-logo img {
  width: 100%;
  height: auto;
  transform-origin: 64% 52%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-drink-logo::before,
.hero-drink-logo::after,
.hero-drink-logo i {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.hero-drink-logo::before {
  top: 39%;
  right: 31%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 238, 170, 0.72);
  box-shadow: 0 0 18px rgba(255, 214, 111, 0.42);
  transform: scale(0.45);
}

.hero-drink-logo::after {
  top: 35%;
  right: 22%;
  width: 7px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 238, 170, 0), #ffe89b 32%, #d9a84f 70%, rgba(217, 168, 79, 0));
  box-shadow: 0 0 16px rgba(255, 214, 111, 0.42);
  transform: rotate(54deg) scaleY(0.2);
  transform-origin: center bottom;
}

.hero-drink-logo i {
  top: 45%;
  right: 43%;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 246, 210, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 214, 111, 0.45);
}

.hero-drink-logo:hover img {
  animation: drinkShake 1.35s cubic-bezier(0.42, 0, 0.18, 1) infinite;
  filter: saturate(1.12) contrast(1.06);
}

.hero-drink-logo:hover::before {
  animation: mouthSip 1.35s ease-in-out infinite;
}

.hero-drink-logo:hover::after {
  animation: liquidSip 1.35s ease-in-out infinite;
}

.hero-drink-logo:hover i {
  animation: gulpPulse 1.35s ease-in-out infinite;
}

.blur-word {
  display: inline-block;
  padding-right: 0.15em;
  opacity: 1;
  transform: translateY(0);
  animation: riseIn 0.7s ease-out both;
}

.hero-copy,
.center-copy p,
.feature-row p,
.why-grid p,
.team-list p,
.quote-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: 660px;
  margin: 24px auto 0;
  font-size: 1.05rem;
  color: rgba(255, 250, 240, 0.88);
  font-weight: 500;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.64);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
.watch-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1.8px solid rgba(255, 250, 240, 0.36);
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.watch-link {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  color: #fff8dd;
  font-weight: 700;
  backdrop-filter: blur(16px);
}

.button:hover,
.watch-link:hover {
  transform: translateY(-3px);
}

.button.liquid-glass-strong {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(217, 168, 63, 0.72));
  color: #fffdf7;
  box-shadow: 0 16px 40px rgba(217, 168, 63, 0.26), inset 0 1px 1px rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 238, 184, 0.5);
}

.button.liquid-glass-strong:hover,
.watch-link:hover {
  background: linear-gradient(135deg, #fff7d1, #d9a84f);
  color: #080503;
  box-shadow: 0 22px 60px rgba(217, 168, 63, 0.42);
}

.button::after,
.watch-link::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
}

.button:active,
.watch-link:active {
  transform: translateY(1px) scale(0.96);
  box-shadow: 0 10px 26px rgba(217, 168, 63, 0.3), inset 0 4px 12px rgba(0, 0, 0, 0.22);
}

.button:active::after,
.watch-link:active::after {
  animation: clickRipple 0.45s ease-out;
}

.partners {
  margin-top: auto;
  padding-bottom: 128px;
}

.partners p {
  display: inline-block;
  margin: 0 0 28px;
  border: 0;
  border-bottom: 1px solid rgba(255, 214, 111, 0.42);
  border-radius: 0;
  padding: 0 0 9px;
  background: transparent;
  color: #ffd66f;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.partners p.liquid-glass::before {
  display: none;
}

.partners div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 56px;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.65rem, 2.7vw, 2.2rem);
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.liquid-glass,
.liquid-glass-strong {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  background-blend-mode: luminosity;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.liquid-glass-strong {
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.liquid-glass::before,
.liquid-glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.16) 22%,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 255, 255, 0) 58%,
    rgba(255, 255, 255, 0.16) 78%,
    rgba(255, 255, 255, 0.5)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.split-section {
  display: grid;
  place-items: center;
}

.page-hero {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding-top: 90px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 22px auto 0;
  font-size: clamp(3.4rem, 7vw, 5.7rem);
  line-height: 0.9;
  color: #fff9ed;
  font-weight: 700;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
}

.center-copy {
  max-width: 780px;
  text-align: center;
}

.section-badge {
  display: inline-block;
  border: 1.8px solid rgba(255, 250, 240, 0.38);
  border-radius: 999px;
  padding: 9px 18px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18), 0 12px 30px rgba(0, 0, 0, 0.18);
}

.center-copy h2,
.section-head h2,
.cta h2 {
  margin: 22px auto 0;
  max-width: 820px;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  line-height: 0.88;
}

.tap-blend-title {
  font-family: "Pacifico", "Cormorant Garamond", cursive;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #ffd66f;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.58), 0 0 26px rgba(217, 168, 63, 0.28);
}

.tap-blend-title span {
  display: block;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px auto 0;
}

.process-flow article {
  position: relative;
  overflow: hidden;
  border: 1.3px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  padding: 20px 16px;
  background:
    linear-gradient(145deg, rgba(255, 246, 214, 0.12), rgba(217, 168, 79, 0.07) 48%, rgba(0, 0, 0, 0.24)),
    rgba(10, 7, 4, 0.42);
}

.process-flow article::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -16px;
  width: 32px;
  height: 1px;
  background: rgba(255, 214, 111, 0.42);
}

.process-flow article:last-child::after {
  display: none;
}

.process-flow i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 247, 189, 0.32);
  border-radius: 50%;
  color: #d9f7bd;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  line-height: 1;
}

.process-flow h3 {
  margin: 16px 0 0;
  color: #fff8d8;
  font-family: "Bricolage Grotesque", "Barlow", sans-serif;
  font-size: 1.12rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
}

.process-flow p {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
  text-shadow: none;
}

.process-studio {
  --shake-fill: #4b2416;
  --shake-accent: #d5a76a;
  margin: 30px auto 0;
  border: 1.4px solid rgba(255, 229, 168, 0.22);
  border-radius: 18px;
  padding: clamp(16px, 3vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 246, 214, 0.1), rgba(217, 168, 79, 0.06) 44%, rgba(0, 0, 0, 0.3)),
    rgba(10, 7, 4, 0.48);
}

.process-studio .process-flow {
  margin-top: 0;
}

.process-step {
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.process-step.is-active {
  border-color: rgba(217, 247, 189, 0.44);
  background:
    linear-gradient(145deg, rgba(217, 247, 189, 0.14), rgba(217, 168, 79, 0.08) 52%, rgba(0, 0, 0, 0.2)),
    rgba(18, 16, 10, 0.56);
  transform: translateY(-2px);
}

.process-interactive {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.flavor-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.flavor-choice {
  min-height: 42px;
  border: 1.2px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  padding: 10px 9px;
  background: rgba(0, 0, 0, 0.24);
  color: rgba(255, 250, 240, 0.76);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
  transition: 0.22s ease;
}

.flavor-choice:hover,
.flavor-choice:focus-visible,
.flavor-choice.is-selected {
  border-color: rgba(255, 238, 184, 0.56);
  background: rgba(217, 168, 79, 0.18);
  color: #fff8d8;
  outline: none;
}

.blend-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
  min-height: 255px;
}

.blender-machine,
.shake-result {
  display: grid;
  justify-items: center;
}

.blender-jar {
  position: relative;
  width: min(100%, 118px);
  height: 134px;
  overflow: hidden;
  border: 2px solid rgba(255, 250, 240, 0.36);
  border-radius: 16px 16px 25px 25px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.12), 0 18px 36px rgba(0, 0, 0, 0.28);
}

.blender-jar::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 12px;
  height: 88px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.blend-liquid {
  position: absolute;
  right: -12%;
  bottom: 0;
  left: -12%;
  height: 54%;
  background:
    radial-gradient(circle at 28% 24%, var(--shake-accent), transparent 18%),
    linear-gradient(180deg, var(--shake-accent), var(--shake-fill));
  transform-origin: center bottom;
}

.blend-liquid::before {
  content: "";
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.blend-bubbles span {
  position: absolute;
  bottom: 26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.42);
  opacity: 0;
}

.blend-bubbles span:nth-child(1) {
  left: 34%;
}

.blend-bubbles span:nth-child(2) {
  left: 52%;
}

.blend-bubbles span:nth-child(3) {
  left: 68%;
}

.blender-base {
  display: grid;
  place-items: center;
  width: 138px;
  height: 44px;
  margin-top: 8px;
  border-radius: 11px 11px 22px 22px;
  background: linear-gradient(180deg, #fff8d8, #d9a84f);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.blender-base span {
  width: 29px;
  height: 7px;
  border-radius: 999px;
  background: rgba(5, 4, 3, 0.7);
}

.shake-result {
  position: relative;
  display: grid;
  justify-items: center;
  opacity: 0.58;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.animated-cup {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 178px);
  height: 230px;
  overflow: visible;
  isolation: isolate;
}

.animated-cup::before {
  content: "";
  position: absolute;
  inset: 26% 4% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--shake-accent), transparent 68%);
  opacity: 0.12;
  filter: blur(24px);
  transform: scale(0.86);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.animated-cup::after {
  content: "";
  position: absolute;
  z-index: 6;
  top: 0;
  left: 50%;
  width: 6px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--shake-accent), var(--shake-fill));
  opacity: 0;
  transform: translateX(-50%);
  box-shadow: 0 0 16px color-mix(in srgb, var(--shake-accent), transparent 32%);
}

.cup-rim {
  position: absolute;
  z-index: 7;
  top: 6px;
  width: 134px;
  height: 29px;
  border: 3px solid rgba(255, 247, 224, 0.88);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(128, 91, 53, 0.2), transparent 56%),
    linear-gradient(180deg, #fffaf0, #e7d3aa 72%, #bb9b68);
  box-shadow: inset 0 8px 13px rgba(255, 255, 255, 0.86), inset 0 -5px 8px rgba(105, 72, 39, 0.22), 0 10px 22px rgba(0, 0, 0, 0.28);
}

.cup-surface {
  position: absolute;
  z-index: 8;
  top: 15px;
  width: 106px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 42% 44%, rgba(255, 255, 255, 0.34), transparent 18%),
    radial-gradient(ellipse at 58% 48%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 50% 50%, var(--shake-accent), var(--shake-fill) 72%);
  opacity: 0.18;
  transform: scale(0.48);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.cup-body {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-content: start;
  width: 128px;
  height: 194px;
  margin-top: 23px;
  overflow: hidden;
  clip-path: polygon(4% 0, 96% 0, 86% 100%, 14% 100%);
  border-radius: 25px 25px 37px 37px;
  background:
    radial-gradient(ellipse at 50% 4%, rgba(255, 255, 255, 0.75), transparent 28%),
    linear-gradient(90deg, rgba(88, 62, 35, 0.2), transparent 18%, rgba(255, 255, 255, 0.3) 48%, transparent 76%, rgba(78, 52, 30, 0.22)),
    linear-gradient(180deg, #f7eac9 0%, #ead1a1 56%, #c7a06b 100%);
  background-size: auto;
  box-shadow: inset 0 11px 22px rgba(255, 255, 255, 0.5), inset 0 -24px 30px rgba(94, 62, 34, 0.2), 0 30px 52px rgba(0, 0, 0, 0.36);
}

.cup-body::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 7px 10px auto;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.02));
}

.cup-body::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 6px;
  bottom: 0;
  left: 6px;
  height: 0%;
  border-radius: 52% 52% 0 0;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(180deg, color-mix(in srgb, var(--shake-accent), #fff 12%), var(--shake-fill));
  opacity: 0.72;
  transition: height 0.48s cubic-bezier(0.2, 0.86, 0.24, 1);
}

.cup-shine {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: 22px;
  width: 11px;
  height: 124px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.04));
  opacity: 0.72;
}

.cup-mascot-mark {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 62px;
  height: 52px;
  margin-top: 31px;
  overflow: visible;
  filter: drop-shadow(0 5px 7px rgba(52, 35, 19, 0.18));
}

.cup-mascot-mark::before {
  content: none;
}

.cup-mascot-mark img {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 52px;
  max-width: none;
  object-fit: contain;
}

.cup-brand {
  position: relative;
  z-index: 4;
  margin-top: 4px;
  color: #3e2617;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 2.22rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.68;
  text-shadow: 0 1px 0 rgba(255, 245, 210, 0.38);
}

.cup-vendor {
  position: relative;
  z-index: 4;
  margin-top: 3px;
  color: #3e2617;
  font-family: "Barlow", sans-serif;
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.cup-flavor {
  position: relative;
  z-index: 4;
  max-width: 92px;
  margin-top: 7px;
  color: #6c3e24;
  font-family: "Pacifico", "Brush Script MT", cursive;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.cup-product {
  position: relative;
  z-index: 4;
  margin-top: 3px;
  color: rgba(62, 38, 23, 0.84);
  font-family: "Barlow", sans-serif;
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.serve-tray {
  position: absolute;
  z-index: 1;
  right: 18%;
  bottom: 8px;
  left: 18%;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 238, 184, 0.42), rgba(0, 0, 0, 0.22) 66%, transparent 70%);
  transform: scaleX(0.8);
  opacity: 0.58;
}

.cup-label {
  margin: -2px 0 0;
  color: #fff8d8;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 1.32rem;
  line-height: 0.9;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.52);
}

.process-actions {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.process-actions p {
  margin: 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.92rem;
  font-weight: 500;
  text-shadow: none;
}

.process-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.process-studio.is-blending .process-step[data-process-step="blend"],
.process-studio.is-served .process-step[data-process-step="serve"] {
  border-color: rgba(217, 247, 189, 0.54);
  background: rgba(217, 168, 79, 0.16);
}

.process-studio.is-blending .blender-jar {
  animation: blenderShake 0.16s linear infinite;
}

.process-studio.is-blending .blend-liquid {
  animation: blendWave 0.32s ease-in-out infinite alternate;
}

.process-studio.is-blending .blend-bubbles span {
  animation: bubbleRise 0.85s ease-in-out infinite;
}

.process-studio.is-blending .blend-bubbles span:nth-child(2) {
  animation-delay: 0.18s;
}

.process-studio.is-blending .blend-bubbles span:nth-child(3) {
  animation-delay: 0.34s;
}

.process-studio.is-blending .blender-base span {
  animation: powerPulse 0.32s ease-in-out infinite alternate;
}

.process-studio.is-served .shake-result {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.process-studio.is-served .animated-cup {
  animation: cupServe 0.72s cubic-bezier(0.2, 0.86, 0.24, 1.2) both;
}

.process-studio.is-served .animated-cup::after {
  animation: cupPour 0.52s ease-out both;
}

.process-studio.is-served .animated-cup::before {
  opacity: 0.3;
  transform: scale(1.08);
}

.process-studio.is-served .cup-body::after {
  height: 18%;
  transition-delay: 0.26s;
}

.process-studio.is-served .cup-surface {
  opacity: 0.92;
  transform: scale(1);
  transition-delay: 0.28s;
}

.process-studio.is-blending .animated-cup::before {
  opacity: 0.26;
  transform: scale(0.95);
}

.home-process-flow {
  width: min(100%, 620px);
  margin-top: 26px;
}

.process-teaser-section {
  min-height: 560px;
}

.process-teaser-copy {
  transform: translateY(44px);
}

.compact-process-title {
  max-width: 740px;
  font-size: clamp(3.1rem, 6vw, 4.8rem);
}

.home-process-flow article {
  padding: 18px 14px;
}

.home-process-flow h3 {
  font-size: 1.22rem;
}

.home-process-flow p {
  font-size: 0.84rem;
}

.process-page-hero h1 {
  max-width: 980px;
}

.process-page .section-badge {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #d9f7bd;
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.process-page .section-badge::before {
  content: none;
}

.process-page-main {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(217, 168, 79, 0.16), transparent 34%),
    radial-gradient(circle at 86% 26%, rgba(217, 247, 189, 0.08), transparent 30%),
    linear-gradient(180deg, #000 0%, #080604 48%, #000 100%);
}

.process-page-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.process-page-shell .section-head {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.process-page-shell .section-head h2,
.process-detail-shell .section-head h2 {
  color: #fff7e7;
  font-family: "Bricolage Grotesque", "Barlow", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.process-page-shell .section-head p {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.03rem;
  line-height: 1.7;
}

.process-page-studio {
  max-width: 980px;
}

.process-detail-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0 120px;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 46%, #000 100%),
    url("./Images/BTV_bg5.png") center / cover no-repeat;
}

.process-detail-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.process-detail-shell .section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.process-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-detail-grid article {
  min-height: 238px;
  border: 1.4px solid rgba(255, 229, 168, 0.22);
  border-radius: 12px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 246, 214, 0.1), rgba(217, 168, 79, 0.07) 46%, rgba(0, 0, 0, 0.22)),
    rgba(10, 7, 4, 0.56);
}

.process-detail-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(217, 168, 79, 0.15);
  color: #d9f7bd;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  line-height: 1;
}

.process-detail-grid h3 {
  margin: 34px 0 0;
  color: #fff8d8;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 0.96;
}

.process-detail-grid p {
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.96rem;
  line-height: 1.55;
}

.chef-smart-title {
  font-family: "Cormorant Garamond", "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: #fff1c2;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.5), 0 0 28px rgba(217, 168, 63, 0.24);
}

.chef-smart-title span {
  display: block;
}

.chef-smart-title span:last-child {
  white-space: nowrap;
}

.team-home-title {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-family: "Bricolage Grotesque", "Barlow", sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ead29a;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.64), 0 0 16px rgba(217, 168, 63, 0.14);
}

.center-copy p {
  max-width: 640px;
  margin: 24px auto 0;
  color: rgba(255, 250, 240, 0.84);
  font-weight: 400;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.62);
}

.center-copy .button {
  margin-top: 16px;
}

.content-section {
  padding: 120px 0;
}

.opening-health-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 130px max(clamp(22px, 5vw, 70px), calc((100vw - var(--max)) / 2 + 22px));
  background:
    linear-gradient(180deg, #000 0%, rgba(5, 4, 3, 0.62) 22%, rgba(5, 4, 3, 0.78) 76%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.72)),
    url("./Images/BTV_darkbg.png") center / cover no-repeat;
  color: #fffaf0;
}

.opening-health-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  grid-template-areas:
    "badge stat"
    "title stat"
    "gift close"
    "button close";
  align-items: center;
  gap: 22px clamp(34px, 6vw, 86px);
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}

.opening-health-section .section-badge {
  grid-area: badge;
  width: fit-content;
  border: 1.8px solid rgba(255, 250, 240, 0.36);
  background: rgba(255, 255, 255, 0.04);
  color: #fff8dd;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16), 0 18px 48px rgba(0, 0, 0, 0.22);
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.opening-health-section h2 {
  grid-area: title;
  max-width: 650px;
  margin: 0;
  color: #fff7e7;
  font-family: "Bricolage Grotesque", "Barlow", sans-serif;
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: none;
  text-shadow: 0 22px 54px rgba(0, 0, 0, 0.52), 0 0 24px rgba(217, 168, 79, 0.18);
}

.opening-health-gift {
  grid-area: gift;
  width: fit-content;
  max-width: 100%;
  margin: 6px 0 0;
  border-left: 4px solid #d9a84f;
  padding: 4px 0 4px 16px;
  color: #d9f7bd;
  font-family: "Barlow", sans-serif;
  font-size: clamp(0.92rem, 1.6vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.opening-health-button {
  grid-area: button;
  width: fit-content;
  margin-top: 6px;
}

.opening-health-stat {
  grid-area: stat;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 2.5vw, 24px);
  margin: 0;
  border: 1.5px solid rgba(255, 229, 168, 0.28);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(145deg, rgba(255, 246, 214, 0.14), rgba(217, 168, 79, 0.08) 42%, rgba(0, 0, 0, 0.26)),
    rgba(10, 7, 4, 0.54);
  color: rgba(255, 250, 240, 0.76);
  font-family: "Barlow", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
}

.opening-health-stat span:first-child {
  color: #d9f7bd;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.opening-health-stat b {
  color: #ffd66f;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(5.4rem, 12vw, 9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
}

.opening-health-section strong {
  grid-area: close;
  display: block;
  max-width: 520px;
  margin: -18px 0 0;
  color: #fff8d8;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.48), 0 0 18px rgba(217, 168, 79, 0.16);
}

.protein-gap-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 112px max(clamp(22px, 5vw, 70px), calc((100vw - var(--max)) / 2 + 22px));
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.34) 18%, rgba(0, 0, 0, 0.58) 72%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.72)),
    url("./Images/BTV_bg4.png") center / cover no-repeat;
}

.protein-gap-section > * {
  position: relative;
  z-index: 1;
}

.protein-gap-section .section-head,
.protein-gap-section .protein-gap-stats,
.protein-gap-section .protein-gap-points {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.protein-gap-section .section-head {
  margin-bottom: 38px;
}

.protein-gap-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 26px);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
  padding: 22px 0 24px;
}

.protein-gap-stats div {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding-left: 18px;
}

.protein-gap-stats div::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d9f7bd, rgba(217, 168, 79, 0.28));
}

.protein-gap-stats strong {
  color: #ffd66f;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.8;
}

.protein-gap-stats span {
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.protein-gap-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}

.protein-gap-points article {
  border: 1.2px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 246, 214, 0.1), rgba(217, 168, 79, 0.06) 46%, rgba(0, 0, 0, 0.32)),
    rgba(0, 0, 0, 0.3);
}

.protein-gap-points span {
  color: #d9f7bd;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 1.4rem;
  line-height: 0.9;
}

.protein-gap-points h3 {
  margin: 12px 0 0;
  color: #fff8d8;
  font-family: "Bricolage Grotesque", "Barlow", sans-serif;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
}

.protein-gap-points p {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
}

.home-page .section-badge {
  overflow: visible;
  border: 0;
  border-left: 3px solid var(--gold);
  border-radius: 0;
  padding: 2px 0 2px 14px;
  background: transparent;
  color: #ffd66f;
  box-shadow: none;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page .section-badge.liquid-glass::before {
  display: none;
}

.home-page .section-head .section-badge {
  margin-right: auto;
  margin-left: auto;
}

.home-page .center-copy .section-badge,
.home-page .signature-panel .section-badge,
.home-page .opening-health-section .section-badge {
  display: inline-block;
}

.why-experience-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 150px max(clamp(22px, 5vw, 70px), calc((100vw - var(--max)) / 2 + 22px));
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.34) 18%, rgba(0, 0, 0, 0.56) 68%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.64)),
    url("./Images/BTV_BG3.png") center / cover no-repeat;
}

.why-experience-section > * {
  position: relative;
  z-index: 1;
}

.team-home-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 150px max(clamp(22px, 5vw, 70px), calc((100vw - var(--max)) / 2 + 22px));
  background:
    radial-gradient(circle at 50% 38%, rgba(217, 168, 79, 0.16), transparent 36%),
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 18%, rgba(0, 0, 0, 0.68) 66%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34) 50%, rgba(0, 0, 0, 0.74)),
    url("./Images/BTV_bg4.png") center / 100% auto no-repeat;
}

.team-home-section > * {
  position: relative;
  z-index: 1;
}

.testimonials {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 150px max(clamp(22px, 5vw, 70px), calc((100vw - var(--max)) / 2 + 22px));
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.34) 18%, rgba(0, 0, 0, 0.58) 68%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.62)),
    url("./Images/BTV_bg5.png") center / cover no-repeat;
}

.testimonials > * {
  position: relative;
  z-index: 1;
}

.why-experience-section .section-head,
.team-home-section .section-head,
.testimonials .section-head,
.why-grid,
.quote-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.section-head {
  margin-bottom: 60px;
  text-align: center;
}

.signature-panel {
  position: relative;
  overflow: hidden;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-bottom: 56px;
  padding: 78px max(clamp(22px, 5vw, 70px), calc((100vw - var(--max)) / 2 + 22px));
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.3) 18%, rgba(0, 0, 0, 0.56) 70%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.16) 50%, rgba(0, 0, 0, 0.62)),
    url("./Images/BTV_Signature.png") center / cover no-repeat;
}

.signature-panel > * {
  position: relative;
  z-index: 1;
}

.signature-panel .section-head {
  margin-bottom: 34px;
}

.signature-panel .feature-row {
  display: block;
  max-width: 100%;
  margin-bottom: 0;
  text-align: center;
}

.signature-panel .feature-row h3,
.signature-panel .feature-row p {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.signature-panel .feature-row .button {
  margin-top: 18px;
}

.signature-panel .chef-smart-title {
  font-size: clamp(2.65rem, 5vw, 4rem);
}

.signature-panel .feature-row h3 {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
}

.signature-panel .feature-row p {
  max-width: 720px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: 46px;
  margin-bottom: 58px;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.venue-upgrade {
  margin-top: 34px;
  margin-bottom: 92px;
}

.feature-row h3 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.9;
}

.feature-row p {
  max-width: 560px;
  margin: 22px 0 0;
}

.feature-row .button {
  margin-top: 18px;
}

.media-card {
  border-radius: 28px;
  aspect-ratio: 16 / 11;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavor-grid,
.why-grid,
.quote-grid {
  display: grid;
  gap: 20px;
}

.flavors-title {
  scroll-margin-top: 140px;
  margin: 34px 0 24px;
  text-align: center;
  color: #ffd66f;
  font-family: "Pacifico", "Cormorant Garamond", cursive;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.46), 0 0 24px rgba(217, 168, 63, 0.22);
}

.flavor-grid {
  grid-template-columns: repeat(4, 1fr);
}

.flavor-grid article {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: #111;
  outline: none;
}

.flavor-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.flavor-grid article:hover img,
.flavor-grid article:focus-visible img {
  transform: scale(1.06);
}

.flavor-grid article:active {
  transform: scale(0.98);
}

.flavor-grid .flavor-name {
  position: absolute;
  right: auto;
  bottom: 14px;
  left: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 12px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #fff8ea;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 1.65rem;
  font-style: normal;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.74), 0 0 14px rgba(255, 255, 255, 0.18);
  box-shadow: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.flavor-grid article:hover .flavor-name,
.flavor-grid article:focus-visible .flavor-name {
  opacity: 0;
  transform: translateY(10px);
}

.flavor-description {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(135deg, rgba(217, 168, 79, 0.18), rgba(0, 0, 0, 0.1));
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.flavor-grid article:hover .flavor-description,
.flavor-grid article:focus-visible .flavor-description {
  opacity: 1;
  transform: translateY(0);
}

.flavor-description h3 {
  margin: 0;
  color: #ffd66f;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.62);
}

.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.flavor-tags span {
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.flavor-description p {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.64);
}

.flavor-grid article:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 246, 210, 0.18), 0 0 0 8px rgba(217, 168, 63, 0.18);
}

.flavor-grid article:nth-child(1) .flavor-name {
  border-color: rgba(255, 250, 240, 0.34);
  color: #fff8ea;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.74), 0 0 14px rgba(255, 255, 255, 0.18);
}

.flavor-grid article:nth-child(2) .flavor-name {
  border-color: rgba(255, 250, 240, 0.34);
  color: #fff8ea;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.74), 0 0 14px rgba(255, 255, 255, 0.18);
}

.flavor-grid article:nth-child(3) .flavor-name {
  border-color: rgba(255, 250, 240, 0.34);
  color: #fff8ea;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.74), 0 0 14px rgba(255, 255, 255, 0.18);
}

.flavor-grid article:nth-child(4) .flavor-name {
  border-color: rgba(255, 250, 240, 0.34);
  color: #fff8ea;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.74), 0 0 14px rgba(255, 255, 255, 0.18);
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-grid article,
.quote-grid article,
.team-list article {
  border-radius: 26px;
  padding: 28px;
}

.why-grid article {
  border: 1.5px solid rgba(255, 229, 168, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 246, 214, 0.16), rgba(217, 168, 79, 0.08) 42%, rgba(0, 0, 0, 0.22)),
    rgba(10, 7, 4, 0.48);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16), 0 24px 55px rgba(0, 0, 0, 0.28);
}

.why-grid article:hover {
  border-color: rgba(230, 186, 94, 0.58);
  background:
    linear-gradient(135deg, rgba(232, 189, 98, 0.46), rgba(142, 95, 39, 0.48)),
    rgba(34, 24, 13, 0.64);
  color: #fff8ea;
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(217, 168, 79, 0.2);
}

.why-grid article:hover i {
  background: rgba(255, 247, 209, 0.16);
  color: #fff1c2;
}

.why-grid article:hover p {
  color: rgba(255, 250, 240, 0.76);
}

.why-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-soft);
  font-style: normal;
}

.why-grid h3,
.team-list h3 {
  margin: 0;
  font-size: 2rem;
}

.team-list {
  display: grid;
  gap: 16px;
}

.team-intro {
  max-width: 920px;
  margin: -18px auto 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: center;
}

.team-intro p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.75;
}

.team-intro .button {
  margin-top: 26px;
}

.team-list article {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
}

.team-list p {
  margin: 0;
}

.team-page-list {
  padding-top: 70px;
}

.article-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 70px auto 120px;
  border-radius: 34px;
  padding: clamp(30px, 6vw, 70px);
}

.article-shell .article-meta {
  margin: 0 0 28px;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.article-shell h2 {
  max-width: 900px;
  margin: 34px 0 16px;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.92;
}

.article-shell h2:first-of-type {
  margin-top: 0;
}

.article-shell p {
  max-width: 980px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-shell .button {
  margin-top: 24px;
}

.protein-calculator-page {
  min-height: 900px;
  display: grid;
  align-items: center;
  padding: 130px 0 90px;
}

.protein-calculator-page .shade.stronger {
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.32) 22%, rgba(0, 0, 0, 0.52) 68%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.74));
}

.protein-calculator-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.protein-calculator-copy h1 {
  max-width: 640px;
  margin: 24px 0 0;
  color: #fff7e7;
  font-family: "Bricolage Grotesque", "Barlow", sans-serif;
  font-size: clamp(3.3rem, 7vw, 6rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
}

.protein-calculator-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 1.7;
}

.protein-calculator-page .section-badge,
.protein-shake-facts-section .section-badge {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #d9f7bd;
  font-family: "Barlow", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.protein-calculator-page .section-badge::before,
.protein-shake-facts-section .section-badge::before {
  content: none;
}

.protein-calculator-card {
  border: 1.5px solid rgba(255, 229, 168, 0.28);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 246, 214, 0.14), rgba(217, 168, 79, 0.08) 42%, rgba(0, 0, 0, 0.28)),
    rgba(10, 7, 4, 0.62);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.14), 0 28px 70px rgba(0, 0, 0, 0.32);
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calculator-wide {
  grid-column: 1 / -1;
}

.height-input-group {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.height-input-group[hidden] {
  display: none;
}

.height-ft-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.protein-calculator-card label,
.protein-calculator-card fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

.protein-calculator-card em {
  color: rgba(255, 250, 240, 0.58);
  font-style: normal;
  font-weight: 400;
}

.protein-calculator-card legend {
  padding: 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

.protein-calculator-card input,
.protein-calculator-card select {
  width: 100%;
  min-height: 46px;
  border: 1.4px solid rgba(255, 250, 240, 0.22);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.34);
  color: #fffaf0;
  font: inherit;
  font-weight: 400;
  outline: none;
  padding: 12px 13px;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.protein-calculator-card select {
  color-scheme: dark;
}

.protein-calculator-card input::placeholder {
  color: rgba(255, 250, 240, 0.42);
}

.protein-calculator-card input:focus,
.protein-calculator-card select:focus {
  border-color: rgba(217, 168, 79, 0.64);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 0 0 4px rgba(217, 168, 79, 0.14);
}

.calculator-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.calculator-toggle label {
  position: relative;
}

.calculator-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calculator-toggle span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1.4px solid rgba(255, 250, 240, 0.22);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 250, 240, 0.76);
  transition: 0.22s ease;
}

.calculator-toggle input:checked + span {
  border-color: rgba(255, 238, 184, 0.58);
  background: rgba(217, 168, 79, 0.26);
  color: #fff8d8;
  box-shadow: 0 0 0 4px rgba(217, 168, 79, 0.1);
}

.calculator-submit {
  width: 100%;
  margin-top: 18px;
}

.calculator-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.calculator-status.success {
  color: #d9f7bd;
}

.calculator-status.error {
  color: #ffd1c7;
}

.protein-shake-facts-section {
  position: relative;
  overflow: hidden;
  padding: 95px 0 105px;
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 168, 79, 0.16), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(217, 247, 189, 0.1), transparent 32%),
    linear-gradient(180deg, #000 0%, #080604 48%, #000 100%);
}

.protein-shake-facts-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.protein-shake-facts-shell .section-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.protein-shake-facts-shell h2 {
  margin: 24px 0 0;
  color: #fff7e7;
  font-family: "Bricolage Grotesque", "Barlow", sans-serif;
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
}

.protein-shake-facts-shell .section-head p {
  max-width: 590px;
  margin: 18px auto 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.03rem;
  line-height: 1.7;
}

.protein-shake-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.protein-fact-card {
  position: relative;
  min-height: 252px;
  outline: none;
  perspective: 1200px;
  cursor: pointer;
}

.protein-fact-card-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.2, 0.86, 0.24, 1);
}

.protein-fact-card.is-flipped .protein-fact-card-inner {
  transform: rotateY(180deg);
}

.protein-fact-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border: 1.4px solid rgba(255, 229, 168, 0.22);
  border-radius: 12px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 246, 214, 0.1), rgba(217, 168, 79, 0.07) 46%, rgba(0, 0, 0, 0.22)),
    rgba(10, 7, 4, 0.58);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12), 0 22px 52px rgba(0, 0, 0, 0.22);
  backface-visibility: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.protein-fact-back {
  justify-content: center;
  background:
    radial-gradient(circle at 24% 18%, rgba(217, 247, 189, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(217, 168, 79, 0.18), rgba(0, 0, 0, 0.28)),
    rgba(12, 9, 5, 0.68);
  transform: rotateY(180deg);
}

.protein-fact-card:hover .protein-fact-face,
.protein-fact-card:focus-visible .protein-fact-face,
.protein-fact-card.is-flipped .protein-fact-face {
  border-color: rgba(255, 221, 139, 0.48);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.14), 0 24px 58px rgba(217, 168, 79, 0.14);
}

.protein-shake-facts-grid i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(217, 168, 79, 0.15);
  color: #d9f7bd;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  line-height: 1;
}

.protein-shake-facts-grid h3 {
  margin: 34px 0 0;
  color: #fff8d8;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 0.96;
}

.protein-shake-facts-grid p {
  margin: 14px 0 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.96rem;
  line-height: 1.55;
}

.protein-fact-front > span,
.protein-fact-back > span {
  margin-top: auto;
  color: #d9f7bd;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.protein-fact-back strong {
  color: #ffd66f;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.protein-fact-back p {
  color: rgba(255, 250, 240, 0.82);
  font-size: 1rem;
}

.calculator-results-section {
  padding: 78px 0 95px;
}

.calculator-results-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.calculator-result-card,
.calculator-breakdown,
.calculator-food-guide {
  border: 1.5px solid rgba(255, 229, 168, 0.24);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(145deg, rgba(255, 246, 214, 0.12), rgba(217, 168, 79, 0.08) 46%, rgba(0, 0, 0, 0.24)),
    rgba(10, 7, 4, 0.52);
}

.calculator-food-guide {
  grid-column: 1 / -1;
  scroll-margin-top: 118px;
}

.protein-goal-link {
  width: fit-content;
  margin-top: 22px;
}

.calculator-result-card span {
  color: #d9f7bd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calculator-result-card strong {
  display: block;
  margin-top: 18px;
  color: #ffd66f;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 0.82;
}

.calculator-result-card p,
.calculator-breakdown p,
.calculator-food-guide p {
  color: rgba(255, 250, 240, 0.74);
  font-size: 1.05rem;
  line-height: 1.65;
}

.calculator-breakdown h2,
.calculator-food-guide h2 {
  margin: 0;
  color: #fff7e7;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.calculator-food-guide > span {
  display: block;
  margin-bottom: 14px;
  color: #d9f7bd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.food-builder-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  border: 1.2px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  padding: 14px;
}

.food-builder-summary[hidden] {
  display: none;
}

.food-builder-summary span {
  display: block;
  color: rgba(255, 250, 240, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.food-builder-summary strong {
  display: block;
  margin-top: 8px;
  color: #fff8d8;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 0.82;
}

.food-progress {
  grid-column: 1 / -1;
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
}

.food-progress i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d9f7bd, #ffd66f);
  transition: width 0.24s ease;
}

.food-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
  margin-top: 28px;
}

.food-builder h3,
.selected-food-panel h3 {
  margin: 0 0 14px;
  color: #fff8d8;
  font-family: "Bricolage Grotesque", "Barlow", sans-serif;
  font-size: 1.08rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
}

.food-plan-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 12px;
  scroll-padding: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(217, 168, 79, 0.7) rgba(255, 250, 240, 0.1);
  scrollbar-width: thin;
}

.food-plan-card {
  flex: 0 0 calc((100% - 28px) / 3);
  overflow: hidden;
  border: 1.2px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  scroll-snap-align: start;
}

.food-plan-card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.food-plan-visual {
  position: relative;
  min-height: 164px;
  background: rgba(0, 0, 0, 0.28);
}

.food-plan-visual img {
  width: 100%;
  height: 164px;
  object-fit: cover;
  object-position: center;
  background: rgba(255, 250, 240, 0.08);
  filter: saturate(0.98) contrast(1.03);
}

.food-plan-visual-eggs img,
.food-plan-visual-soya img,
.food-plan-visual-rajma img,
.food-plan-visual-idli img,
.food-plan-visual-dosa img,
.food-plan-visual-coconutChutney img,
.food-plan-visual-peanutChutney img,
.food-plan-visual-chickenCurry img,
.food-plan-visual-fishCurry img,
.food-plan-visual-muttonCurry img,
.food-plan-visual-paneerCurry img,
.food-plan-visual-omelette img {
  object-position: center 42%;
}

.food-plan-visual-shake img {
  object-fit: contain;
  padding: 10px 12px;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 247, 189, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 246, 214, 0.16), rgba(217, 168, 79, 0.12) 48%, rgba(0, 0, 0, 0.32));
}

.food-visual-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.62);
  padding: 9px 10px;
  backdrop-filter: blur(14px);
}

.food-visual-badge em {
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.food-visual-badge strong {
  color: #ffd66f;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 0.78;
}

.food-plan-card span,
.selected-food-list span {
  display: block;
  color: #d9f7bd;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.food-plan-card strong,
.selected-food-list strong {
  display: block;
  color: #fff8d8;
  font-family: "Bricolage Grotesque", "Barlow", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.food-plan-card p {
  margin: 0;
  font-size: 0.92rem;
}

.food-quantity-control {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 8px;
  align-items: center;
}

.food-quantity-control label {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) max-content;
  align-items: center;
  min-height: 40px;
  border: 1.2px solid rgba(255, 250, 240, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  padding: 0 10px 0 12px;
}

.food-quantity-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fffaf0;
  font: inherit;
  font-weight: 800;
  outline: 0;
}

.food-quantity-control span {
  color: rgba(255, 250, 240, 0.68);
  min-width: max-content;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.food-quantity-control[data-food-unit="serving"] label {
  padding-right: 8px;
}

.food-quantity-control[data-food-unit="serving"] span {
  font-size: 0.62rem;
}

.food-plan-card .food-serving,
.selected-food-list p {
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.food-plan-card button,
.selected-food-list button {
  width: 100%;
  min-height: 40px;
  border: 1.2px solid rgba(255, 238, 184, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.food-plan-card button:hover,
.selected-food-list button:hover {
  border-color: rgba(217, 247, 189, 0.54);
  background: rgba(217, 247, 189, 0.12);
  transform: translateY(-1px);
}

.selected-food-panel {
  align-self: start;
  border: 1.2px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  padding: 18px;
}

.selected-food-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 8px;
  overscroll-behavior: contain;
  scrollbar-color: rgba(217, 168, 79, 0.7) rgba(255, 250, 240, 0.1);
  scrollbar-width: thin;
}

.selected-food-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(255, 250, 240, 0.1);
  padding-top: 10px;
}

.selected-food-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.selected-food-list button {
  width: auto;
  min-height: 34px;
  padding: 0 12px;
}

.food-quantity-control button {
  width: 38px;
  min-height: 38px;
  border-radius: 50%;
  padding: 0;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.bob-shake-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  padding-top: 18px;
}

.bob-shake-note[hidden] {
  display: none;
}

.bob-shake-note strong {
  color: #ffd66f;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.bob-shake-note p {
  max-width: 520px;
  margin: 0;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.breakdown-grid div {
  border: 1.3px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.breakdown-grid strong {
  display: block;
  color: #fff8d8;
  font-family: "Bebas Neue", "Barlow", sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 0.9;
}

.breakdown-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.86rem;
  line-height: 1.35;
}

.quote-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote-grid p {
  margin: 0;
  font-style: italic;
}

.quote-grid span {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.cta {
  display: block;
  min-height: 0;
  padding: 120px 0 34px;
}

.cta .shade.stronger {
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.26) 22%, rgba(0, 0, 0, 0.42) 64%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.68));
}

.interest-form {
  scroll-margin-top: 130px;
  width: min(100%, 760px);
  margin: 30px auto 0;
  border-radius: 26px;
  padding: clamp(18px, 3vw, 28px);
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.interest-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

.interest-form label:last-child {
  grid-column: 1 / -1;
}

.interest-form em {
  color: rgba(255, 250, 240, 0.58);
  font-style: normal;
  font-weight: 400;
}

.interest-form input,
.interest-form textarea {
  width: 100%;
  border: 1.4px solid rgba(255, 250, 240, 0.22);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.34);
  color: #fffaf0;
  font: inherit;
  font-weight: 400;
  outline: none;
  padding: 13px 14px;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.interest-form textarea {
  resize: vertical;
  min-height: 90px;
}

.interest-form input::placeholder,
.interest-form textarea::placeholder {
  color: rgba(255, 250, 240, 0.42);
}

.interest-form input:focus,
.interest-form textarea:focus {
  border-color: rgba(217, 168, 79, 0.64);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 0 0 4px rgba(217, 168, 79, 0.14);
}

.interest-form .button {
  width: 100%;
  margin-top: 16px;
  border: 1.8px solid rgba(255, 238, 184, 0.5);
}

.submit-interest {
  min-height: 50px;
  font-size: 1rem;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.form-status.success {
  color: #d9f7bd;
}

.form-status.error {
  color: #ffd1c7;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 24px;
  width: min(100%, 980px);
  margin: 28px auto 0;
  padding: 4px 0 0;
  text-align: center;
}

.contact-links h3 {
  margin: 0;
  color: var(--gold-soft);
  font-family: "Bricolage Grotesque", "Barlow", sans-serif;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-links h3::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  margin-left: 24px;
  background: rgba(255, 250, 240, 0.24);
  vertical-align: middle;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  transition: color 0.22s ease, transform 0.22s ease;
}

.contact-links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.contact-links span {
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links strong {
  color: #fffaf0;
  font-size: 0.96rem;
  font-weight: 600;
  overflow-wrap: anywhere;
  text-align: left;
}

.cta footer {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), var(--max));
  margin: 64px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
}

.cta footer div {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes riseIn {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.12);
  }
}

@keyframes clickRipple {
  0% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes drinkShake {
  0%, 100% {
    transform: rotate(0deg) translate(0, 0) scale(1);
  }
  18% {
    transform: rotate(4deg) translate(3px, -2px) scale(1.01);
  }
  34% {
    transform: rotate(-18deg) translate(-8px, -7px) scale(1.045);
  }
  48% {
    transform: rotate(-22deg) translate(-10px, -6px) scale(1.05);
  }
  58% {
    transform: rotate(-22deg) translate(-10px, -6px) scale(1.05);
  }
  72% {
    transform: rotate(-9deg) translate(-1px, -1px) scale(1.015);
  }
}

@keyframes mouthSip {
  0%, 22%, 78%, 100% {
    opacity: 0;
    transform: scale(0.45);
  }
  36%, 58% {
    opacity: 0.92;
    transform: scale(1);
  }
}

@keyframes liquidSip {
  0%, 24%, 74%, 100% {
    opacity: 0;
    transform: rotate(54deg) scaleY(0.18);
  }
  36% {
    opacity: 0.95;
    transform: rotate(54deg) scaleY(1);
  }
  56% {
    opacity: 0.72;
    transform: rotate(54deg) scaleY(0.55);
  }
}

@keyframes gulpPulse {
  0%, 30%, 76%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0.62);
  }
  44% {
    opacity: 0.88;
    transform: translateY(6px) scale(1);
  }
  58% {
    opacity: 0.45;
    transform: translateY(14px) scale(0.82);
  }
}

@keyframes blenderShake {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(-2px) rotate(-1deg);
  }
  75% {
    transform: translateX(2px) rotate(1deg);
  }
}

@keyframes blendWave {
  from {
    transform: translateX(-8px) rotate(-2deg) scaleY(0.96);
  }
  to {
    transform: translateX(8px) rotate(2deg) scaleY(1.04);
  }
}

@keyframes bubbleRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.6);
  }
  35% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-78px) scale(1.2);
  }
}

@keyframes powerPulse {
  from {
    background: rgba(5, 4, 3, 0.72);
    box-shadow: none;
  }
  to {
    background: #d9f7bd;
    box-shadow: 0 0 18px rgba(217, 247, 189, 0.58);
  }
}

@keyframes cupServe {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.84) rotate(-2deg);
  }
  58% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03) rotate(1deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes cupPour {
  0% {
    height: 0;
    opacity: 0;
    transform: translateX(-50%) translateY(-8px) scaleY(0.3);
  }
  18% {
    height: 90px;
    opacity: 0.95;
  }
  78% {
    height: 90px;
    opacity: 0.9;
    transform: translateX(-50%) translateY(2px) scaleY(1);
  }
  100% {
    height: 0;
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scaleY(0.4);
  }
}

@media (max-width: 900px) {
  .glass-nav {
    border-radius: 24px;
    align-items: flex-start;
  }

  .brand-mark span {
    display: none;
  }

  .glass-nav nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .glass-nav nav a {
    min-height: 32px;
    padding: 0 9px;
    font-size: 0.8rem;
  }

  .hero {
    height: 860px;
  }

  .hero-content {
    padding-top: 128px;
  }

  .feature-row,
  .protein-calculator-shell,
  .calculator-results-shell,
  .team-list article {
    grid-template-columns: 1fr;
  }

  .opening-health-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "title"
      "gift"
      "button"
      "stat"
      "close";
    text-align: center;
  }

  .opening-health-section .section-badge,
  .opening-health-gift,
  .opening-health-button {
    margin-right: auto;
    margin-left: auto;
  }

  .opening-health-gift {
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 240, 0.18);
    border-bottom: 1px solid rgba(255, 250, 240, 0.18);
    padding: 12px 0;
  }

  .opening-health-section h2,
  .opening-health-section strong {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .opening-health-stat {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .protein-gap-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .food-plan-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .food-builder,
  .food-builder-summary {
    grid-template-columns: 1fr;
  }

  .bob-shake-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .protein-gap-points,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow article::after {
    display: none;
  }

  .flavor-picker {
    grid-template-columns: repeat(2, 1fr);
  }

  .protein-calculator-page {
    padding-top: 150px;
  }

  .protein-calculator-copy,
  .protein-calculator-copy p {
    max-width: none;
    text-align: center;
  }

  .flavor-grid,
  .why-grid,
  .quote-grid,
  .protein-shake-facts-grid,
  .process-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .glass-nav nav a:not(.solid-pill) {
    display: none;
  }

  .hero-content,
  .center-copy,
  .content-section {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-drink-logo {
    width: 136px;
    margin: 16px auto 0;
  }

  .flavor-grid,
  .why-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .calculator-grid,
  .height-ft-grid,
  .protein-gap-stats,
  .protein-gap-points,
  .food-builder,
  .food-builder-summary,
  .protein-shake-facts-grid,
  .process-detail-grid,
  .process-flow,
  .flavor-picker,
  .blend-stage,
  .breakdown-grid {
    grid-template-columns: 1fr;
  }

  .food-plan-card {
    flex-basis: 100%;
  }

  .selected-food-list {
    max-height: 420px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-links {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .contact-links h3::after {
    display: none;
  }

  .contact-links a {
    justify-content: center;
  }

  .cta footer {
    flex-direction: column;
  }
}
