* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  font-family: "Quicksand", "Nunito", sans-serif;
  overflow-x: clip;
  overflow-y: auto;
}

.about-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: clip;
}


:root {
  --clr-brown-dark: #2d1f14;
  --clr-brown: #4a3423;
  --clr-brown-mid: #5a4435;
  --clr-brown-light: #7a6452;
  --clr-tan: #9c7b58;
  --clr-tan-light: #b07a45;
  --clr-orange: #e8712a;
  --clr-gold: #f5a623;
  --clr-orange-deep: #d4621e;
  --clr-cream: #fffaf0;
  --clr-cream-soft: #fdf5e8;
  --clr-warm-white: #fffdf8;
  --font-display: "Baloo 2", "Paytone One", sans-serif;
  --font-hand: "Caveat", cursive;
  --font-body: "Quicksand", "Nunito", sans-serif;
}



.about-hero .hero-title,
.companion-section .hero-title,
.cta-section .hero-title,
.why-heading,
.journey-heading,
.beliefs-heading {
  font-family: var(--font-display);
}

.wc-title,
.js-title,
.belief-title {
  font-family: var(--font-display);
  font-weight: 700;
}

.about-hero-label,
.beliefs-label {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
}




.navbar {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 5%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 114px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(120, 60, 20, 0.25));
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(250, 240, 226, 0.92));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 50px;
  padding: 10px 12px 10px 28px;
  box-shadow: 0 8px 30px rgba(120, 60, 20, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--clr-brown);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  text-decoration: none;
  color: var(--clr-brown);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid rgba(120, 60, 20, 0.18);
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.btn-login:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  background: rgba(255, 255, 255, 0.85);
}

.btn-get-started {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 26px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-orange) 60%, var(--clr-orange-deep));
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
  box-shadow: 0 6px 18px rgba(232, 113, 42, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-get-started:hover {
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-deep));
  box-shadow: 0 8px 24px rgba(232, 113, 42, 0.5);
  transform: translateY(-1px);
}

.btn-get-started .arrow {
  font-size: 17px;
  transition: transform 0.2s;
}

.btn-get-started:hover .arrow {
  transform: translateX(3px);
}



.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: linear-gradient(160deg, #fffaf0 0%, #ffe9cf 100%);
  box-shadow: 0 6px 18px rgba(232, 113, 42, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hamburger:hover {
  background: linear-gradient(160deg, #ffe9cf 0%, #ffd9a8 100%);
  transform: translateY(-1px);
}

.hamburger-line {
  display: block;
  width: 19px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-gold));
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hamburger-line:nth-child(2) {
  width: 13px;
  margin-right: -6px;
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 19px;
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 19px;
}



.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 12px;
  right: 12px;
  z-index: 9999;
  padding: 26px 22px 34px;
  background: linear-gradient(170deg, #fffaf0 0%, #fdf0db 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(120, 60, 20, 0.25), inset 0 1px 0 rgba(255, 255, 255, 1);
  opacity: 0;
  transform: translateY(-14px) scale(0.97);
  transform-origin: top center;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.mobile-menu-links a {
  text-decoration: none;
  color: var(--clr-brown);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(180, 120, 70, 0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.mobile-menu-links a:hover {
  background: linear-gradient(135deg, rgba(255, 231, 198, 0.85), rgba(255, 220, 178, 0.7));
  color: var(--clr-orange);
  transform: translateX(4px);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu-actions .btn-login {
  text-align: center;
  padding: 13px 22px;
}

.mobile-menu-actions .btn-get-started {
  justify-content: center;
  padding: 13px 22px;
}




.about-hero,
.companion-section,
.cta-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 1;
}


.about-hero .hero-content {
  left: 5%;
}


.companion-section .hero-content {
  left: 5%;
}


@media (min-width: 901px) {
  .cta-section .hero-content {
    left: auto;
    right: 5%;
  }

  .cta-section .chef-glow {
    left: 30%;
  }

  .cta-section .hero-character {
    left: 28%;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .cta-section .hero-content {
    right: 4%;
    max-width: 360px;
  }
}




.about-hero-label {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-tan-light);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  border: 1px solid rgba(176, 122, 69, 0.2);
  backdrop-filter: blur(8px);
}




.companion-traits {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trait {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(255, 244, 230, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 14px rgba(120, 60, 20, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.trait:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(120, 60, 20, 0.14);
}

.trait-icon {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.trait-text {
  font-weight: 700;
  font-size: 14px;
  color: var(--clr-brown);
}




.companion-section .hero-character {
  width: clamp(340px, 40vw, 520px);
  height: clamp(430px, 66vh, 620px);
  pointer-events: auto;
}

.companion-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.companion-tilt {
  width: 100%;
  height: 100%;
  will-change: transform;
}

.companion-tilt.is-waving {
  animation: companion-wave 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.companion-tilt.idle-look {
  animation: companion-idle-look 1.5s ease;
}

.companion-tilt.idle-tilt {
  animation: companion-idle-tilt 1.6s ease;
}

.companion-tilt.idle-bounce {
  animation: companion-idle-bounce 1.2s ease;
}

.companion-tilt.is-stirring {
  animation: companion-stir 0.45s ease-in-out infinite;
}

.companion-model {
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  cursor: grab;
  animation: companion-breathe 5.5s ease-in-out infinite;
}

.speech-bubble {
  position: absolute;
  top: -6%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.92);
  z-index: 20;
  max-width: 250px;
  padding: 12px 18px;
  background: linear-gradient(168deg, #fffdf8 0%, #fff3e0 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(70, 35, 10, 0.35), inset 0 1px 0 #fff;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--clr-brown);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 11px solid transparent;
  border-top-color: #fff3e0;
  border-bottom: none;
}

.speech-bubble.is-showing {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.companion-actions {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  width: max-content;
  max-width: 92%;
}

.companion-choices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.companion-choices:not([hidden]) {
  animation: companion-choices-in 0.35s ease both;
}

.choice-btn {
  padding: 9px 14px;
  font-size: 12.5px;
}

.companion-btn {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, #f5a623, #e8712a);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(232, 113, 42, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.companion-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 113, 42, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.companion-btn:active {
  transform: translateY(0) scale(0.97);
}

.companion-btn.ghost {
  background: rgba(255, 250, 242, 0.92);
  color: var(--clr-brown);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 16px rgba(70, 35, 10, 0.25), inset 0 1px 0 #fff;
}

.companion-btn.ghost:hover {
  background: #fffdf8;
}



.ingredient-panel {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: min(380px, 94%);
  padding: 12px 12px 14px;
  background: linear-gradient(168deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 243, 224, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(70, 35, 10, 0.35), inset 0 1px 0 #fff;
  z-index: 28;
  text-align: center;
}

.ingredient-panel:not([hidden]) {
  animation: panel-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.ingredient-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ingredient-panel-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-brown);
  letter-spacing: 0.02em;
}

.ingredient-panel-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(232, 113, 42, 0.15);
  color: #d4621e;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ingredient-panel-close:hover {
  background: #e8712a;
  color: #fff;
  transform: scale(1.08);
}

.ingredient-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.ingredient-input {
  flex: 1;
  min-width: 0;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232, 113, 42, 0.35);
  background: #fffdf8;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--clr-brown);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ingredient-input::placeholder {
  color: #c2a184;
  font-weight: 600;
}

.ingredient-input:focus {
  border-color: #e8712a;
  box-shadow: 0 0 0 3px rgba(232, 113, 42, 0.18);
}

.ingredient-input-row .companion-btn {
  font-size: 12.5px;
  padding: 9px 16px;
}

.ingredient-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  min-height: 32px;
}

.ingredient-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 14px;
  background: linear-gradient(168deg, #fffdf8 0%, #ffe8c9 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 14px rgba(70, 35, 10, 0.22), inset 0 1px 0 #fff;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--clr-brown);
  cursor: default;
  animation: chip-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--d, 0ms);
}

.ingredient-chip .chip-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(232, 113, 42, 0.18);
  color: #d4621e;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.ingredient-chip .chip-x:hover {
  background: #e8712a;
  color: #fff;
}

.companion-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 0 6px 16px rgba(232, 113, 42, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.ingredient-actions-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}

.ingredient-actions-row .companion-btn {
  font-size: 12.5px;
  padding: 9px 16px;
}

.plan-panel {
  width: min(430px, 94%);
}

.plan-grid {
  display: grid;
  gap: 6px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
  margin-top: 2px;
  text-align: left;
}

.plan-day {
  display: grid;
  grid-template-columns: 58px 1fr 1fr 1fr;
  gap: 8px;
  align-items: center;
  padding: 7px 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.plan-day-name {
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  color: #e8712a;
}

.plan-slot {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.plan-slot-meal {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a9794f;
}

.plan-slot-dish {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--clr-brown);
  line-height: 1.3;
  word-break: break-word;
}

@media (max-width: 600px) {
  .plan-day {
    grid-template-columns: 48px 1fr 1fr 1fr;
    gap: 6px;
  }

  .plan-slot-dish {
    font-size: 10.5px;
  }
}

.try-own-link {
  display: block;
  margin: 10px auto 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  color: #a9794f;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.try-own-link:hover {
  color: #e8712a;
}

.recipe-card {
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 232px;
  padding: 14px 14px 16px;
  background: linear-gradient(168deg, #fffdf8 0%, #fff3e0 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(70, 35, 10, 0.4), inset 0 1px 0 #fff;
  text-align: center;
  z-index: 30;
}

.recipe-card:not([hidden]) {
  animation: card-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.recipe-card-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(232, 113, 42, 0.15);
  color: #d4621e;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.recipe-card-close:hover {
  background: #e8712a;
  color: #fff;
  transform: scale(1.08);
}

.recipe-card-label {
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10.5px;
  font-weight: 700;
  color: #e8712a;
}

.recipe-card-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 16px;
  margin: 8px auto 6px;
  border: 3px solid #fff;
  box-shadow: 0 6px 16px rgba(70, 35, 10, 0.25);
  display: block;
}

.recipe-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--clr-brown);
  margin: 0;
}

.recipe-card-meta {
  font-size: 12px;
  font-weight: 700;
  color: #a9794f;
  margin: 4px 0 10px;
}

.recipe-card .companion-btn {
  font-size: 12.5px;
  padding: 9px 16px;
}

.steam {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 100px;
  z-index: 24;
  opacity: 0;
  pointer-events: none;
}

.steam.is-steaming {
  opacity: 1;
}

.steam-wisp {
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(4px);
  animation: wisp-rise 2.2s ease-out infinite;
}

.steam-wisp:nth-child(1) {
  left: 8px;
  animation-delay: 0.1s;
  animation-duration: 2.2s;
}

.steam-wisp:nth-child(2) {
  left: 52px;
  animation-delay: 0.5s;
  animation-duration: 2.6s;
}

.steam-wisp:nth-child(3) {
  left: 96px;
  animation-delay: 0.9s;
  animation-duration: 2s;
}

.dish-reveal {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 26;
  text-align: center;
}

.dish-reveal:not([hidden]) {
  animation: dish-in 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.dish-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 18px 40px rgba(70, 35, 10, 0.45);
}

.dish-plate {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid #fff;
  background: radial-gradient(circle at 35% 30%, #fff8ec 0%, #ffe4b8 55%, #f3c07e 100%);
  box-shadow: 0 18px 40px rgba(70, 35, 10, 0.45), inset 0 -8px 18px rgba(200, 130, 50, 0.35);
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes companion-breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes companion-idle-look {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(-8deg);
  }
  60% {
    transform: rotateY(-8deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}

@keyframes companion-idle-tilt {
  0% {
    transform: rotateY(0deg);
  }
  30% {
    transform: rotateY(6deg) rotateZ(1.5deg);
  }
  70% {
    transform: rotateY(6deg) rotateZ(1.5deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}

@keyframes companion-idle-bounce {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.035) translateY(-6px);
  }
  60% {
    transform: scale(1.02);
  }
}

@keyframes companion-stir {
  0%, 100% {
    transform: rotateY(0deg) rotateZ(-3deg);
  }
  50% {
    transform: rotateY(4deg) rotateZ(3deg);
  }
}

@keyframes companion-choices-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chip-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85) translateY(14px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }
}

@keyframes dish-in {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

@keyframes wisp-rise {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.7);
  }
  30% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateY(-72px) scale(1.25);
  }
}

@keyframes companion-wave {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-4deg) scale(1.04);
  }
  50% {
    transform: rotate(3deg) scale(1.05);
  }
  75% {
    transform: rotate(-2deg) scale(1.02);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}




.story-section {
  position: relative;
  width: 100%;
  padding: 100px 6% 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 88% 12%, rgba(232, 113, 42, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 45% 45% at 8% 88%, rgba(245, 166, 35, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, var(--clr-cream-soft) 0%, #f8ead5 50%, #f3e4ca 100%);
}

.story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(150, 90, 40, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.story-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.story-text {
  flex: 0 1 300px;
  min-width: 230px;
}

.story-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 27px;
  line-height: 1;
  color: var(--clr-orange);
  margin-bottom: 16px;
  transform: rotate(-1.2deg);
}

.story-label-leaf {
  width: 20px;
  height: 20px;
  color: #7c9a5c;
}

.story-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.22;
  color: var(--clr-brown-dark);
  margin-bottom: 16px;
}

.story-heading .heading-accent {
  color: var(--clr-orange);
  white-space: nowrap;
}

.story-heading .heading-squiggle {
  left: -4px;
  width: calc(100% + 8px);
  bottom: -7px;
}

.story-desc {
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
  color: var(--clr-brown-light);
  line-height: 1.7;
  max-width: 300px;
}



.story-cards-row {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
}



.story-paper-card {
  position: relative;
  flex: 1 1 0;
  background: linear-gradient(165deg, #fffdf6 0%, #fdf3e2 100%);
  border-radius: 18px;
  padding: 34px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 34px rgba(150, 85, 35, 0.13),
    0 3px 8px rgba(150, 85, 35, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.story-paper-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: radial-gradient(rgba(150, 90, 40, 0.05) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

.story-problem-card {
  transform: rotate(-1.2deg);
}

.story-solution-card {
  transform: rotate(1.1deg);
}

.paper-tape {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 92px;
  height: 26px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 244, 214, 0.95), rgba(250, 232, 190, 0.9));
  border-left: 1px dashed rgba(190, 150, 90, 0.4);
  border-right: 1px dashed rgba(190, 150, 90, 0.4);
  box-shadow: 0 2px 6px rgba(120, 60, 20, 0.12);
}

.problem-card-tag {
  display: inline-block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  padding: 3px 14px 5px;
  border-radius: 10px;
  margin-bottom: 20px;
  transform: rotate(-1.5deg);
}

.problem-tag-orange {
  color: #b3422f;
  background: rgba(214, 100, 60, 0.12);
}

.problem-tag-green {
  color: #3f7d4e;
  background: rgba(90, 160, 100, 0.14);
}

.problem-list,
.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.problem-list li,
.solution-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-brown);
}

.problem-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(214, 100, 60, 0.13);
  color: #b3422f;
  flex-shrink: 0;
}

.problem-x svg {
  width: 11px;
  height: 11px;
}

.solution-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(90, 160, 100, 0.14);
  color: #3f7d4e;
  flex-shrink: 0;
}

.solution-check svg {
  width: 11px;
  height: 11px;
}



.story-arrow-wrap {
  flex-shrink: 0;
  width: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.story-curl-arrow {
  width: 84px;
  height: 42px;
  color: #d9a441;
}



.story-sticky-note {
  position: relative;
  flex-shrink: 0;
  width: 196px;
  padding: 30px 22px 24px;
  background: linear-gradient(170deg, #fdf2cf 0%, #f9e6b6 100%);
  border-radius: 3px;
  box-shadow:
    0 12px 28px rgba(140, 90, 40, 0.2),
    0 3px 8px rgba(140, 90, 40, 0.12);
  transform: rotate(2.5deg);
  align-self: center;
  margin-left: 4px;
}

.sticky-tape {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 74px;
  height: 24px;
  background: rgba(214, 180, 110, 0.45);
  border-left: 1px dashed rgba(190, 150, 90, 0.5);
  border-right: 1px dashed rgba(190, 150, 90, 0.5);
}

.sticky-ring {
  position: absolute;
  bottom: -6px;
  right: -4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(190, 140, 80, 0.28);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(15deg);
}

.sticky-heart {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 18px;
  height: 18px;
  color: #e8712a;
}

.sticky-text {
  font-family: var(--font-hand);
  font-size: 21px;
  font-weight: 600;
  color: var(--clr-brown-dark);
  line-height: 1.3;
  margin-top: 2px;
}

.sticky-sparkle {
  display: block;
  margin-top: 8px;
  margin-left: auto;
  width: 17px;
  height: 17px;
  color: rgba(232, 113, 42, 0.6);
}



.story-doodle {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

.doodle-leaf {
  top: 46px;
  right: 6%;
  width: 54px;
  height: 54px;
  color: rgba(140, 160, 80, 0.4);
  transform: rotate(-14deg);
}

.doodle-spark {
  bottom: 64px;
  left: 5%;
  width: 26px;
  height: 26px;
  color: rgba(232, 113, 42, 0.4);
  transform: rotate(12deg);
}




.why-section {
  position: relative;
  width: 100%;
  padding: 100px 6% 120px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 40% at 50% 15%, rgba(255, 214, 160, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 85%, rgba(245, 166, 35, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(232, 113, 42, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, #fdf5e8 0%, #f9edd8 50%, #f3e4ca 100%);
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(232, 113, 42, 0.06) 1.2px, transparent 1.2px);
  background-size: 28px 28px;
  pointer-events: none;
}

.why-glow {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: min(760px, 90%);
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.25) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.why-heading {
  position: relative;
  z-index: 1;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.22;
  color: var(--clr-brown-dark);
  margin-bottom: 18px;
}

.why-heading .heading-accent {
  color: var(--clr-orange);
  white-space: nowrap;
}

.why-heading .heading-squiggle {
  left: -4px;
  width: calc(100% + 8px);
  bottom: -6px;
}

.why-sub {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  color: var(--clr-brown-light);
  max-width: 420px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

.why-doodle {
  position: absolute;
  z-index: 0;
  color: var(--clr-orange);
  pointer-events: none;
}

.why-doodle-1 {
  top: 88px;
  right: 13%;
  width: 30px;
  height: 30px;
  opacity: 0.38;
}

.why-doodle-2 {
  bottom: 120px;
  left: 9%;
  width: 36px;
  height: 36px;
  opacity: 0.3;
  transform: rotate(-14deg);
}

@media (prefers-reduced-motion: no-preference) {
  .why-doodle-1 { animation: why-float 5.5s ease-in-out infinite; }
  .why-doodle-2 { animation: why-float 7s ease-in-out 1.4s infinite; }
}

@keyframes why-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.why-cards {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 24px;
}

.why-card {
  --i: 0;
  position: relative;
  background: linear-gradient(168deg, #fffaf2 0%, #fff3df 55%, #ffe8c9 100%);
  border-radius: 28px;
  padding: 36px 32px 32px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 38px rgba(140, 70, 25, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  transition-delay: calc(var(--i) * 120ms);
}

.why-card.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  transition-delay: 0s;
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(140, 70, 25, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.why-card--hero {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  padding: 44px 36px 36px;
  transform: translateY(30px) rotate(-1deg);
}

.why-card--hero.is-in-view {
  transform: translateY(0) rotate(-1deg);
}

.why-card--hero:hover {
  transform: translateY(-8px) rotate(-0.3deg);
}

.wc-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(140, 70, 25, 0.18);
  margin-bottom: 22px;
}

.why-card--hero .wc-title {
  font-family: var(--font-display);
  font-size: 26px;
}

.why-card--hero .wc-desc {
  font-size: 14.5px;
  margin-bottom: 0;
  max-width: 42ch;
}

.wc-stat-big {
  margin-top: auto;
  padding-top: 32px;
}

.wc-stat-big .wc-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(58px, 5.5vw, 76px);
  line-height: 1;
  color: var(--clr-orange);
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.65);
}

.wc-stat-big .wc-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
}

.wc-note {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--font-hand);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: var(--clr-tan-light);
  transform: rotate(-1.5deg);
}

.wc-note-arrow {
  width: 44px;
  height: 22px;
  flex-shrink: 0;
}

.why-card--mini {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 26px 26px;
}

.wc-photo-thumb {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(140, 70, 25, 0.16);
  flex-shrink: 0;
}

.wc-mini-body {
  flex: 1;
  min-width: 0;
}

.why-card--mini .wc-title {
  font-size: 17px;
  margin-bottom: 6px;
}

.why-card--mini .wc-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.why-card--mini .wc-stat {
  padding: 6px 13px;
}

.why-card--mini .wc-stat-num {
  font-family: var(--font-display);
  font-size: 17px;
}

.why-card--mini .wc-stat-label {
  font-size: 12px;
}

.wc-title {
  font-weight: 800;
  font-size: 20px;
  color: var(--clr-brown-dark);
  margin-bottom: 12px;
}

.wc-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-brown-light);
  line-height: 1.65;
  margin-bottom: 22px;
}

.wc-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(232, 113, 42, 0.12), rgba(245, 166, 35, 0.08));
  border: 1px solid rgba(232, 113, 42, 0.15);
}

.wc-stat-num {
  font-weight: 900;
  font-size: 18px;
  color: var(--clr-orange);
}

.wc-stat-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--clr-brown-mid);
}




.journey-section {
  position: relative;
  width: 100%;
  padding: 100px 6% 120px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #1a0e06 0%, #2a1a0d 40%, #1f1209 100%);
}

.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(200, 120, 40, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 15% 70%, rgba(180, 90, 20, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 85% 70%, rgba(180, 90, 20, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.journey-heading {
  position: relative;
  z-index: 2;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.22;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.journey-sub {
  position: relative;
  z-index: 2;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  color: rgba(255, 235, 210, 0.7);
  margin-bottom: 64px;
}

.journey-flow {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.journey-step {
  --i: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i) * 140ms);
}

.journey-step.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.js-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--clr-gold), var(--clr-orange) 70%, #d95f1f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(232, 113, 42, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.28), inset 0 -4px 10px rgba(150, 60, 10, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.js-circle:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 40px rgba(232, 113, 42, 0.45), inset 0 2px 0 rgba(255, 255, 255, 0.28);
}

.js-circle svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 3px rgba(120, 40, 0, 0.25));
}

.js-num {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255, 214, 140, 0.8);
}

.js-title {
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.js-desc {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 245, 230, 0.7);
  max-width: 140px;
}

.journey-arrow {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  margin-top: -20px;
  color: rgba(255, 214, 140, 0.7);
  filter: drop-shadow(0 0 8px rgba(255, 180, 60, 0.35));
}

.journey-arrow svg {
  width: 80px;
  height: 24px;
}




.beliefs-section {
  position: relative;
  width: 100%;
  padding: 110px 6% 130px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(232, 113, 42, 0.28) 0%, rgba(232, 113, 42, 0) 60%),
    radial-gradient(ellipse 45% 40% at 88% 82%, rgba(200, 120, 40, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 88%, rgba(245, 166, 35, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, #1c1008 0%, #2a1a0d 45%, #170c05 100%);
}

.beliefs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 214, 160, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.beliefs-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}

.beliefs-glow {
  position: absolute;
  left: 50%;
  top: -6%;
  transform: translateX(-50%);
  width: min(820px, 92%);
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.22) 0%, rgba(245, 166, 35, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.beliefs-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.beliefs-label {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4a26a;
  margin-bottom: 14px;
}

.beliefs-heading {
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.22;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.beliefs-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  color: rgba(255, 235, 210, 0.78);
  max-width: 420px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.beliefs-grid {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  place-items: center;
  margin: 80px 0 175px;
}

.belief-card {
  --i: 0;
  --tx: 0px;
  --ty: 0px;
  grid-area: stack;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  width: 24rem;
  max-width: 100%;
  height: 9.5rem;
  padding: 14px 18px;
  text-align: left;
  user-select: none;
  border-radius: 12px;
  border: 2px solid rgba(255, 252, 245, 0.85);
  background: linear-gradient(165deg, #fffdf7 0%, #f9f3ea 100%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  opacity: 0;
  transform: translate(var(--tx), var(--ty)) skewY(-8deg) translateY(46px);
  transition:
    opacity 0.6s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.belief-card:nth-child(1) {
  z-index: 1;
}

.belief-card:nth-child(2) {
  z-index: 2;
  --tx: 64px;
  --ty: 40px;
}

.belief-card:nth-child(3) {
  z-index: 3;
  --tx: 128px;
  --ty: 80px;
}

.belief-card:nth-child(4) {
  z-index: 4;
  --tx: 192px;
  --ty: 120px;
}

.belief-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(46, 26, 12, 0.3);
  outline: 1px solid rgba(120, 70, 30, 0.12);
  outline-offset: -1px;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.belief-card:nth-child(2)::before {
  background: rgba(46, 26, 12, 0.2);
}

.belief-card:nth-child(3)::before {
  background: rgba(46, 26, 12, 0.1);
}

.belief-card:nth-child(4)::before {
  content: none;
}

.belief-card.is-in-view {
  opacity: 1;
  transform: translate(var(--tx), var(--ty)) skewY(-8deg);
  animation: belief-reveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: calc(var(--i) * 130ms);
}

.belief-card.is-in-view:hover {
  border-color: rgba(232, 113, 42, 0.5);
  box-shadow:
    0 26px 54px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.belief-card.is-in-view:hover::before {
  opacity: 0;
}

.belief-card.is-in-view:nth-child(1):hover {
  transform: translate(0, -40px) skewY(-8deg);
}

.belief-card.is-in-view:nth-child(2):hover {
  transform: translate(64px, -4px) skewY(-8deg);
}

.belief-card.is-in-view:nth-child(3):hover {
  transform: translate(128px, 40px) skewY(-8deg);
}

.belief-card.is-in-view:nth-child(4):hover {
  transform: translate(192px, 80px) skewY(-8deg);
}

.belief-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.belief-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5a623, #e8712a);
  box-shadow: 0 4px 12px rgba(232, 113, 42, 0.4);
  color: #fff;
  flex-shrink: 0;
}

.belief-icon svg {
  width: 15px;
  height: 15px;
}

.belief-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: #2c1a11;
  margin-bottom: 0;
}

.belief-desc {
  font-size: 18px;
  font-weight: 600;
  color: #5f4630;
  white-space: nowrap;
}

.belief-date {
  font-size: 15px;
  font-weight: 700;
  color: #a9794f;
}

@keyframes belief-reveal {
  from {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) skewY(-8deg) translateY(46px);
  }
}

@keyframes belief-reveal-mobile {
  from {
    opacity: 0;
    transform: translateY(46px);
  }
}




.site-footer {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #1a0e06 0%, #281C12 45%, #1f1209 100%);
  padding: 72px 6% 0;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(200, 120, 40, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 25% 30% at 12% 60%, rgba(180, 90, 20, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 25% 30% at 88% 60%, rgba(180, 90, 20, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
}

.footer-tagline {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 235, 210, 0.75);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 245, 230, 0.08);
  border: 1px solid rgba(255, 235, 210, 0.14);
  color: #d4a26a;
  transition: all 0.25s ease;
}

.footer-social-link svg { width: 18px; height: 18px; }

.footer-social-link:hover {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-orange));
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 113, 42, 0.35);
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 130px;
}

.footer-col-title {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4a26a;
  margin-bottom: 6px;
}

.footer-col a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 235, 210, 0.75);
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

.footer-col a:hover {
  color: var(--clr-gold);
  transform: translateX(3px);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 235, 210, 0.1);
  padding: 22px 0 26px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 235, 210, 0.5);
}

.footer-heart {
  color: var(--clr-orange);
}




@media (max-width: 1100px) {
  .story-inner,
  .companion-inner {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .navbar {
    width: 100%;
    left: 0;
    right: 0;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px;
  }

  .nav-container { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .logo-img {
    height: 36px;
    max-width: 180px;
  }

  
  .about-hero,
  .companion-section,
  .cta-section {
    flex-direction: column;
    min-height: auto;
    padding: 120px 5% 80px;
    text-align: center;
  }

  .about-hero .hero-content,
  .companion-section .hero-content,
  .cta-section .hero-content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-hero .hero-subtitle,
  .companion-section .hero-subtitle,
  .cta-section .hero-subtitle {
    max-width: 500px;
  }

  .about-hero .hero-character,
  .companion-section .hero-character,
  .cta-section .hero-character {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-top: 40px;
  }

  .companion-section .hero-character {
    width: min(330px, 86vw);
    height: 400px;
    margin: 40px auto 0;
  }

  .about-hero .character-img,
  .companion-section .character-img,
  .cta-section .character-img {
    height: clamp(200px, 30vh, 300px);
  }

  .about-hero .chef-glow,
  .companion-section .chef-glow,
  .cta-section .chef-glow {
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
    width: clamp(240px, 34vw, 340px);
    height: clamp(240px, 34vw, 340px);
  }

  
  .story-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .story-text {
    text-align: center;
  }

  .story-desc {
    max-width: none;
  }

  .story-cards-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .story-arrow-wrap {
    display: none;
  }

  .story-problem-card,
  .story-solution-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 200px;
  }

  .story-sticky-note {
    width: 100%;
    max-width: 280px;
    transform: none;
    margin-left: 0;
  }

  
  .why-cards {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .why-card--hero {
    grid-row: auto;
  }

  
  .journey-flow {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .journey-arrow { display: none; }

  .journey-step {
    flex: 0 0 calc(50% - 12px);
    min-width: 160px;
  }

  
  .companion-traits {
    justify-content: center;
  }

  
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: none;
    gap: 20px;
    max-width: 720px;
    margin: 40px auto 0;
  }

  .beliefs-grid .belief-card {
    grid-area: auto;
    width: auto;
    height: auto;
    min-height: 9.5rem;
    transform: translateY(30px);
  }

  .beliefs-grid .belief-card.is-in-view {
    transform: translateY(0);
    animation: belief-reveal-mobile 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: calc(var(--i) * 120ms);
  }

  .beliefs-grid .belief-card.is-in-view:hover {
    transform: translateY(-6px);
  }

  .beliefs-grid .belief-card::before,
  .beliefs-grid .belief-card::after {
    content: none;
  }

  
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  
  .about-hero-title,
  .companion-section .hero-title,
  .cta-section .hero-title {
    font-size: 28px;
  }

  .about-hero .hero-subtitle,
  .companion-section .hero-subtitle,
  .cta-section .hero-subtitle {
    font-size: 13px;
  }

  .about-hero .character-img,
  .companion-section .character-img,
  .cta-section .character-img {
    height: clamp(180px, 26vh, 260px);
  }

  .cta-section .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .cta-section .btn-start-cooking {
    width: 100%;
    justify-content: center;
  }

  
  .story-section { padding: 60px 4% 70px; }
  .story-heading { font-size: 22px; }
  .story-problem-card,
  .story-solution-card { padding: 20px 18px; }
  .problem-list li,
  .solution-list li { font-size: 13px; }
  .sticky-text { font-size: 19px; }
  .story-doodle { display: none; }

  
  .why-section { padding: 60px 4% 70px; }
  .why-heading { font-size: 25px; }
  .why-card { padding: 30px 24px 28px; }
  .why-card--hero { padding: 38px 24px 30px; }
  .why-doodle { display: none; }

  
  .journey-section { padding: 60px 4% 70px; }
  .journey-heading { font-size: 25px; }
  .js-circle { width: 76px; height: 76px; }
  .js-circle svg { width: 30px; height: 30px; }
  .js-title { font-size: 16px; }

  
  .trait { padding: 8px 14px; }
  .trait-text { font-size: 13px; }

  
  .beliefs-section { padding: 60px 4% 70px; }
  .beliefs-heading { font-size: 25px; }
  .beliefs-grid { grid-template-columns: 1fr; max-width: 380px; }
  .belief-card { padding: 14px 16px; }
  .belief-title { font-size: 16px; }
  .belief-desc { font-size: 15px; white-space: normal; }
  .belief-date { font-size: 13px; }

  
  .site-footer { padding: 56px 5% 0; }
  .footer-logo-img { height: 64px; }
  .footer-links { gap: 28px; flex-direction: column; }
  .footer-col { min-width: 0; }
}

@media (max-width: 900px) {
  .about-hero {
    min-height: 100vh;
    min-height: 100svh;
    justify-content: flex-end;
    padding-bottom: 44px;
  }

  .about-hero .hero-content {
    width: min(560px, 100%);
    background: linear-gradient(150deg, rgba(255, 253, 248, 0.85), rgba(255, 244, 230, 0.78));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow:
      0 14px 36px rgba(120, 60, 20, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}



@media (max-height: 520px) and (min-width: 601px) {
  .about-hero,
  .companion-section,
  .cta-section {
    min-height: auto;
    padding: 80px 5% 40px;
  }

  .about-hero .hero-title,
  .companion-section .hero-title,
  .cta-section .hero-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .about-hero .hero-subtitle,
  .companion-section .hero-subtitle,
  .cta-section .hero-subtitle {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .about-hero .character-img,
  .companion-section .character-img,
  .cta-section .character-img {
    height: clamp(140px, 30vh, 200px);
  }

  .companion-section .hero-character {
    width: min(260px, 70vw);
    height: 280px;
  }
}



@media (prefers-reduced-motion: reduce) {
  .character-img,
  .companion-stage,
  .companion-tilt,
  .companion-model,
  .ingredient-chip,
  .ingredient-panel,
  .recipe-card,
  .dish-reveal,
  .steam-wisp {
    animation: none;
  }

  .companion-tilt {
    transform: none !important;
  }

  .ingredient-chip,
  .recipe-card,
  .dish-reveal {
    opacity: 1;
    transform: none;
  }

  .steam {
    display: none;
  }

  .why-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .why-card:hover {
    transform: none;
  }

  .belief-card {
    opacity: 1;
    transform: translate(var(--tx), var(--ty)) skewY(-8deg);
    transition: none;
    animation: none;
  }
}
