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

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

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

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
}

.bg-video-failed .bg-video {
  display: none;
}

.bg-video-failed .bg-image {
  display: block;
}

.bg-warm-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 90% 70% at 50% 40%,
      rgba(255, 232, 200, 0.22) 0%,
      rgba(255, 220, 180, 0) 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 245, 232, 0.28) 0%,
      rgba(255, 236, 210, 0.12) 45%,
      rgba(120, 60, 20, 0.28) 100%
    );
  pointer-events: none;
}

.table-image {
  position: absolute;
  left: 0;
  bottom: -8vh;
  width: 100%;
  z-index: 4;
  pointer-events: 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: 100px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(120, 60, 20, 0.18));
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 28px;
  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: 40px;
  padding: 8px 10px 8px 22px;
  box-shadow:
    0 4px 14px rgba(120, 60, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(120, 60, 20, 0.09);
}

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

.nav-links a {
  text-decoration: none;
  color: #4a3423;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #e8712a;
}

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

.btn-login {
  text-decoration: none;
  color: #4a3423;
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(120, 60, 20, 0.18);
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}

.btn-login:hover {
  border-color: #e8712a;
  color: #e8712a;
  background: rgba(255, 255, 255, 0.85);
}

.btn-get-started {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f5a623, #e8712a 60%, #d4621e);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
  box-shadow:
    0 4px 12px rgba(232, 113, 42, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-get-started:hover {
  background: linear-gradient(135deg, #e8712a, #d4621e);
  box-shadow: 0 5px 16px rgba(232, 113, 42, 0.4);
  transform: translateY(-1px);
}

.btn-get-started .arrow {
  font-size: 15px;
  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: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: linear-gradient(160deg, #fffaf0 0%, #ffe9cf 100%);
  box-shadow:
    0 4px 12px rgba(232, 113, 42, 0.16),
    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%);
  box-shadow:
    0 5px 16px rgba(232, 113, 42, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.hamburger:active {
  transform: scale(0.94);
}

.hamburger-line {
  display: block;
  width: 19px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #e8712a, #f5a623);
  box-shadow: 0 1px 2px rgba(232, 113, 42, 0.25);
  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-backdrop {
  display: none;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  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: #4a3423;
  font-family: "Nunito", sans-serif;
  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: #e8712a;
  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;
}

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

.hero-content {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 480px;
  z-index: 10;
}

.hero-title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.08;
  color: #2d1f14;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(255, 245, 230, 0.55);
}

.title-line {
  display: block;
}

.title-orange {
  color: #e8712a;
}

.hero-subtitle {
  font-size: clamp(14px, 1.2vw, 17px);
  color: #fff4e0;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 400px;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-start-cooking {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f5a623, #e8712a 60%, #d4621e);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow:
    0 8px 22px rgba(232, 113, 42, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-start-cooking:hover {
  background: linear-gradient(135deg, #e8712a, #d4621e);
  box-shadow: 0 10px 30px rgba(232, 113, 42, 0.55);
  transform: translateY(-2px);
}

.btn-start-cooking .arrow {
  font-size: 18px;
  transition: transform 0.2s;
}

.btn-start-cooking:hover .arrow {
  transform: translateX(4px);
}

.btn-explore-recipes {
  text-decoration: none;
  color: #4a3423;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 50px;
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(120, 60, 20, 0.14);
  box-shadow: 0 4px 14px rgba(120, 60, 20, 0.1);
  transition: all 0.25s;
}

.btn-explore-recipes:hover {
  background: #fffdf8;
  border-color: rgba(232, 113, 42, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(120, 60, 20, 0.16);
}

.btn-explore-recipes .book-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #6b4a2f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s;
}

.btn-explore-recipes:hover .book-icon {
  stroke: #e8712a;
}

.chef-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  width: clamp(420px, 44vw, 680px);
  height: clamp(420px, 44vw, 680px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 160, 0.45) 0%,
    rgba(255, 214, 160, 0.18) 45%,
    rgba(255, 214, 160, 0) 70%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-character {
  position: absolute;
  left: 50%;
  top: 48.5%;
  transform: translate(-50%, -46%);
  z-index: 5;
  pointer-events: none;
}

.hero-character::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 72%;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(70, 35, 10, 0.4) 0%,
    rgba(70, 35, 10, 0) 70%
  );
  filter: blur(4px);
  z-index: -1;
  pointer-events: none;
}

.character-img {
  height: clamp(380px, 68vh, 620px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(90, 40, 10, 0.35));
}

.hero-cards {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.side-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(
    150deg,
    rgba(255, 253, 248, 0.97),
    rgba(255, 244, 230, 0.94)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 14px 18px;
  min-width: 260px;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow:
    0 6px 20px rgba(120, 60, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.side-card:hover {
  transform: translateX(-4px);
  box-shadow:
    0 10px 30px rgba(120, 60, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3e6;
  box-shadow: inset 0 1px 3px rgba(120, 60, 20, 0.12);
}

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

.card-icon .card-icon-img {
  object-fit: contain;
  padding: 2px;
  width: 100%;
  height: 100%;
}

.card-recipe .card-icon {
  background: #fff3e6;
}

.card-pantry .card-icon {
  background: #fff0e2;
}

.card-plan .card-icon {
  background: #ffede3;
}

.card-smart .card-icon {
  background: #fff3e6;
}

.card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.card-label {
  font-size: 12px;
  font-weight: 700;
  color: #9c7b58;
  letter-spacing: 0.3px;
  text-transform: none;
}

.card-value {
  font-size: 15px;
  font-weight: 800;
  color: #2d1f14;
}

.card-arrow {
  color: #c4a882;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition:
    color 0.2s,
    transform 0.2s;
}

.side-card:hover .card-arrow {
  color: #e8712a;
  transform: translateX(3px);
}

.product-showcase {
  position: relative;
  width: 100%;
  padding: 96px 6% 110px;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 40% 40% at 12% 20%,
      rgba(245, 166, 35, 0.14) 0%,
      rgba(245, 166, 35, 0) 70%
    ),
    radial-gradient(
      ellipse 45% 45% at 88% 80%,
      rgba(232, 113, 42, 0.12) 0%,
      rgba(232, 113, 42, 0) 70%
    ),
    linear-gradient(180deg, #f8ead5 0%, #fdf6ea 55%, #fbf3e4 100%);
}

.product-showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.product-showcase-left {
  flex: 1 1 46%;
}

.product-showcase-label {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b07a45;
  margin-bottom: 12px;
}

.product-showcase-heading {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
  color: #2d1f14;
  margin-bottom: 18px;
  text-wrap: balance;
}

.product-showcase-desc {
  font-family: "Nunito", sans-serif;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  color: #7a6452;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 26px;
}

.showcase-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.showcase-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #4a3423;
}

.showcase-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 5px rgba(232, 113, 42, 0.3));
}

.product-showcase-right {
  position: relative;
  flex: 1 1 54%;
}

.showcase-slider {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.showcase-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.5;
}

.shot-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(170deg, #fffdf8 0%, #fdf3e2 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 18px 44px rgba(150, 80, 30, 0.16),
    0 4px 12px rgba(150, 80, 30, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.65s ease;
  will-change: transform, opacity;
}

.shot-card.s0 {
  transform: translateY(0) scale(1) rotate(0deg);
  opacity: 1;
  z-index: 40;
  box-shadow:
    0 24px 60px rgba(150, 80, 30, 0.24),
    0 6px 16px rgba(150, 80, 30, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.shot-card.s1 {
  transform: translateY(16px) scale(0.97) rotate(-1.6deg);
  opacity: 0.8;
  z-index: 30;
}

.shot-card.s2 {
  transform: translateY(34px) scale(0.94) rotate(-3.2deg);
  opacity: 0.55;
  z-index: 20;
}

.shot-card.s3 {
  transform: translateY(52px) scale(0.9) rotate(-4.6deg);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}

.shot-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: linear-gradient(170deg, #fff9ef 0%, #fdedd6 100%);
  border-bottom: 1px solid rgba(180, 120, 70, 0.12);
  flex-shrink: 0;
}

.shot-label {
  display: inline-flex;
  align-items: center;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.6px;
  color: #8a5a30;
  background: rgba(232, 113, 42, 0.1);
  border: 1px solid rgba(232, 113, 42, 0.2);
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.shot-img {
  display: block;
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
}

.slider-chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(168deg, #fffdf8 0%, #fdeeda 100%);
  color: #c07a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 10px 26px rgba(150, 80, 30, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  z-index: 60;
}

.slider-chevron svg {
  width: 22px;
  height: 22px;
}

.slider-chevron:hover {
  transform: translateY(-50%) scale(1.08);
  background: linear-gradient(168deg, #ffe9cf 0%, #f8d5a4 100%);
  box-shadow:
    0 14px 32px rgba(232, 113, 42, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.chevron-prev {
  left: -30px;
}

.chevron-next {
  right: -30px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(180, 120, 70, 0.3);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    width 0.25s ease;
}

.slider-dot:hover {
  background: rgba(232, 113, 42, 0.6);
}

.slider-dot.active {
  width: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f5a623, #e8712a);
}

.community {
  position: relative;
  width: 100%;
  padding-top: 96px;
  background:
    radial-gradient(
      ellipse 70% 50% at 50% 0%,
      rgba(232, 113, 42, 0.14),
      transparent 65%
    ),
    #241708;
}

.community-intro {
  text-align: center;
  padding: 0 5% 48px;
}

.community-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(232, 113, 42, 0.35);
  background: rgba(232, 113, 42, 0.12);
  color: #f5a623;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.community-heading {
  font-family: "Paytone One", "Nunito", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.12;
  color: #fff3dd;
}

.community-heading em {
  font-style: italic;
  color: #f5a623;
}

.deck-height {
  position: relative;
}

.deck-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.deck-card {
  position: absolute;
  left: 50%;
  top: 50vh;
  transform: translate(-50%, -50%);
  display: flex;
  border-radius: 34px;
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 40px 90px rgba(10, 4, 0, 0.55);
}

.deck-card.is-landscape {
  width: min(880px, 74vw);
  min-height: 400px;
}

.deck-card.is-square {
  width: min(430px, 56vw);
  min-height: 430px;
  flex-direction: column;
  padding: 36px;
  gap: 28px;
}

.deck-left {
  flex: 1.05;
  padding: clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.deck-card.is-flip {
  flex-direction: row-reverse;
}

.deck-media {
  position: relative;
  width: 46%;
  min-height: 400px;
  flex-shrink: 0;
}

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

.deck-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 28px;
  padding: 44px 26px 22px;
  background: linear-gradient(180deg, transparent, rgba(18, 8, 0, 0.82));
}

.deck-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.deck-stat b {
  font-family: "Paytone One", "Nunito", sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  color: #fff;
}

.deck-stat small {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255, 240, 220, 0.85);
}

.deck-quote {
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.1px;
}

.deck-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.deck-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.da-1 {
  background: linear-gradient(135deg, #e8a87c, #d4845a);
}
.da-2 {
  background: linear-gradient(135deg, #b8860b, #d4a24c);
}
.da-3 {
  background: linear-gradient(135deg, #cd853f, #e8a86a);
}
.da-4 {
  background: linear-gradient(135deg, #8b6914, #c49a3c);
}
.da-5 {
  background: linear-gradient(135deg, #a0826e, #c4a882);
}

.deck-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.deck-author-info b {
  font-size: 15px;
  font-weight: 800;
}

.deck-author-info small {
  font-size: 12.5px;
  font-weight: 700;
  opacity: 0.6;
}

.deck-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 15px;
  color: #e8712a;
}

.deck-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.deck-card:hover .deck-link svg {
  transform: translateX(4px);
}

.is-cream {
  background: #fff3dc;
  color: #3a2415;
}

.is-butter {
  background: #ffe6ad;
  color: #4a2c10;
}

.is-sage {
  background: #e4eacf;
  color: #37411f;
}

.is-cocoa {
  background: linear-gradient(165deg, #3a2413, #241505);
  color: #ffefd8;
}

.is-photo {
  width: min(430px, 56vw);
  height: min(520px, 62vh);
  padding: 0;
}

.deck-photo-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 22px;
  background: rgba(255, 248, 236, 0.94);
  color: #3a2415;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.deck-photo-card .deck-quote {
  font-size: 16.5px;
}

@media (max-width: 900px) {
  .community {
    padding-top: 72px;
  }

  .community-intro {
    padding-bottom: 36px;
  }

  .deck-card.is-landscape {
    width: min(640px, 88vw);
    flex-direction: column;
    min-height: 0;
  }

  .deck-card.is-landscape.is-flip {
    flex-direction: column;
  }

  .deck-media {
    width: 100%;
    min-height: 210px;
  }

  .deck-card.is-square,
  .deck-card.is-photo {
    width: min(360px, 78vw);
  }

  .deck-card.is-photo {
    height: min(420px, 52vh);
  }

  .deck-card.is-square {
    min-height: 360px;
    padding: 26px;
    gap: 20px;
  }

  .deck-left {
    padding: 24px;
    gap: 14px;
  }

  .deck-quote {
    font-size: 16px;
  }

  .deck-stats {
    gap: 20px;
    padding: 34px 18px 16px;
  }

  .deck-stat b {
    font-size: 24px;
  }

  .deck-stat small {
    font-size: 11.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deck-height {
    height: auto !important;
  }

  .deck-wrap {
    position: static;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    gap: 20px;
    align-items: stretch;
    padding: 0 5% 64px;
    perspective: none;
  }

  .deck-card {
    position: relative;
    left: auto;
    top: auto;
    transform: none !important;
    flex: 0 0 auto;
  }

  .deck-card.is-landscape {
    width: min(880px, 88vw);
  }

  .deck-card.is-square,
  .deck-card.is-photo {
    width: min(430px, 80vw);
  }

  .deck-card.is-photo {
    height: min(520px, 62vh);
  }
}

@media (max-width: 900px) {
  .product-showcase {
    padding: 70px 5% 84px;
  }

  .product-showcase-inner {
    flex-direction: column;
    gap: 44px;
  }

  .product-showcase-left {
    text-align: center;
  }

  .product-showcase-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .product-showcase-right {
    width: 100%;
  }

  .showcase-points {
    align-items: flex-start;
    text-align: left;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .chevron-prev {
    left: 6px;
  }

  .chevron-next {
    right: 6px;
  }
}

@media (max-width: 600px) {
  .product-showcase {
    padding: 60px 5% 70px;
  }

  .product-showcase-heading {
    font-size: 25px;
  }

  .product-showcase-desc {
    font-size: 13px;
  }

  .showcase-points li {
    font-size: 13px;
  }

  .slider-chevron {
    width: 40px;
    height: 40px;
  }

  .slider-chevron svg {
    width: 18px;
    height: 18px;
  }

  .shot-card {
    border-radius: 16px;
  }

  .shot-bar {
    padding: 9px 12px;
  }

  .shot-label {
    font-size: 10.5px;
    padding: 3px 11px;
  }
}

@media (max-width: 1200px) {
  .hero-content {
    max-width: 340px;
  }

  .hero-title {
    font-size: clamp(30px, 3.5vw, 48px);
  }

  .character-img {
    height: clamp(300px, 50vh, 440px);
  }

  .side-card {
    min-width: 230px;
    padding: 12px 14px;
  }

  .card-icon {
    width: 42px;
    height: 42px;
  }

  .card-value {
    font-size: 14px;
  }
}

@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;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    max-width: none;
    top: auto;
    bottom: 20%;
    transform: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 500px;
  }

  .hero-character {
    left: 50%;
    top: 8%;
    transform: translateX(-50%);
  }

  .character-img {
    height: clamp(160px, 24vh, 240px);
  }

  .hero-cards {
    position: absolute;
    right: 16px;
    top: auto;
    bottom: 20%;
    transform: none;
    gap: 10px;
  }

  .side-card {
    min-width: 200px;
    padding: 10px 12px;
    gap: 10px;
  }

  .card-icon {
    width: 38px;
    height: 38px;
  }

  .card-label {
    font-size: 10px;
  }

  .card-value {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0 12px;
  }

  .logo-img {
    height: 28px;
    max-width: 120px;
  }

  .btn-login {
    display: none;
  }

  .hero-content {
    top: 15dvh;
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 13px;
    margin-bottom: 22px;
  }

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

  .btn-start-cooking,
  .btn-explore-recipes {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 13px 24px;
  }

  .hero-cards {
    display: none;
  }

  .hero-character {
    top: 54dvh;
  }

  .character-img {
    height: clamp(240px, 34dvh, 340px);
    margin-top: -5.5dvh;
  }
}

.mobile-menu {
  left: 10px;
  right: 10px;
  padding: 22px 18px 30px;
  border-radius: 24px;
}

.mobile-menu-links a {
  font-size: 15px;
  padding: 12px 15px;
}

.side-card {
  min-width: 170px;
  padding: 8px 10px;
  gap: 8px;
  border-radius: 14px;
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.card-icon .card-icon-img {
  padding: 2px;
}

.card-label {
  font-size: 9px;
}

.card-value {
  font-size: 11px;
}

.card-arrow {
  font-size: 14px;
}

.features-section {
  position: relative;
  width: 100%;
  padding: 96px 6% 116px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 55% 40% at 12% 12%,
      rgba(255, 214, 160, 0.4) 0%,
      rgba(255, 214, 160, 0) 70%
    ),
    radial-gradient(
      ellipse 50% 38% at 88% 88%,
      rgba(245, 166, 35, 0.22) 0%,
      rgba(245, 166, 35, 0) 70%
    ),
    linear-gradient(180deg, #fdf5e8 0%, #f9edd8 45%, #f3e4ca 100%);
}

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

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

.features-heading {
  position: relative;
  z-index: 1;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.22;
  color: #2d1f14;
  margin-bottom: 14px;
  text-wrap: balance;
}

.heading-accent {
  position: relative;
  color: #e8712a;
}

.heading-squiggle {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 12px;
}

.features-sub {
  position: relative;
  z-index: 1;
  font-family: "Nunito", sans-serif;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  color: #4a3628;
  max-width: 460px;
  margin: 0 auto 52px;
  line-height: 1.6;
}

.features-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  --i: 0;
  background: linear-gradient(168deg, #fffaf2 0%, #fff3df 55%, #ffe8c9 100%);
  border-radius: 34px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  border: 1px solid #eae0d5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
  transition-delay: calc(var(--i) * 90ms);
}

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

.feature-card:hover {
  transition-delay: 0s;
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.feature-image-wrap {
  position: relative;
  margin: 14px 14px 0;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, #fffdf8 0%, #f7ead2 100%);
  border: 1px solid #eae0d5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.mini-app {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px 12px 10px;
  gap: 8px;
}

.mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-shrink: 0;
  padding: 7px 10px;
  border-radius: 12px;
  background: linear-gradient(170deg, #fffaf1 0%, #ffe9c8 100%);
  border: 1px solid #eae0d5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.mini-title {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: #2c221e;
}

.mini-count {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 9px;
  color: #fff;
  background: linear-gradient(135deg, #f5a623, #e8712a);
  padding: 2px 8px;
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.count-amber {
  background: linear-gradient(135deg, #bf7a1a, #a56210);
  box-shadow: 0 2px 4px rgba(165, 98, 16, 0.25);
}

.count-green {
  background: linear-gradient(135deg, #3a6b33, #2d5a27);
  box-shadow: 0 2px 4px rgba(45, 90, 39, 0.25);
}

.count-brown {
  background: linear-gradient(135deg, #6b4325, #4b3423);
  box-shadow: 0 2px 4px rgba(75, 52, 35, 0.25);
}

.mini-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-foot {
  flex-shrink: 0;
  text-align: center;
}

.mini-foot span {
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: #6b5340;
  background: rgba(255, 252, 244, 0.9);
  border: 1px solid #eae0d5;
  padding: 3px 12px;
  border-radius: 999px;
}

.mi-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(255, 252, 244, 0.92);
  border: 1px solid #eae0d5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.mi-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.mi-copy strong {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  color: #2c221e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mi-copy small {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 9px;
  color: #5a4534;
}

.mi-arrow {
  font-size: 13px;
  font-weight: 800;
  color: #c07a3a;
}

.pantry-expiring {
  border-color: rgba(224, 109, 48, 0.45);
  background: linear-gradient(170deg, #fffaf4 0%, #fdf0e3 100%);
}

.pantry-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.pantry-expiry {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 999px;
}

.pantry-red {
  background: #fde3d5;
  color: #c2451d;
}

.pantry-amber {
  background: #fdeed0;
  color: #9a640f;
}

.pantry-green {
  background: #e2f0dd;
  color: #2d5a27;
}

.pantry-status {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 7.5px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #e2f0dd;
  color: #2d5a27;
}

.pantry-low {
  background: #fde3d5;
  color: #c2451d;
}

.match-ring {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 2px auto 0;
  border-radius: 50%;
  background: conic-gradient(#3a6b33 0% 80%, #dce6d5 80% 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(45, 90, 39, 0.22);
  flex-shrink: 0;
}

.match-ring-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(170deg, #fffdf8 0%, #fff6e4 100%);
  border: 1px solid #eae0d5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 1);
}

.match-ring-inner strong {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #2c221e;
  line-height: 1;
}

.match-ring-inner small {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 7.5px;
  color: #6b5340;
  margin-top: 2px;
}

.match-status {
  align-self: center;
  flex-shrink: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 8.5px;
  letter-spacing: 0.02em;
  color: #2d5a27;
  background: #e2f0dd;
  border: 1px solid rgba(45, 90, 39, 0.2);
  border-radius: 999px;
  padding: 3px 10px;
}

.match-recipe {
  grid-template-columns: 30px minmax(0, 1fr) auto;
}

.match-thumb {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid #eae0d5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.match-missing {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 8px;
  border-radius: 12px;
  background: rgba(255, 249, 239, 0.75);
  border: 1px dashed rgba(180, 140, 90, 0.45);
}

.match-missing-label {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a6a48;
}

.match-chips {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.match-chip {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 8.5px;
  color: #4a3628;
  background: #fff6e4;
  border: 1px solid rgba(215, 175, 128, 0.3);
  border-radius: 999px;
  padding: 2px 7px;
}

.match-add {
  margin-top: auto;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 9px;
  color: #fff;
  background: linear-gradient(135deg, #f5a623, #e8712a);
  border-radius: 999px;
  padding: 5px 12px;
  box-shadow: 0 2px 6px rgba(232, 113, 42, 0.3);
}

.week-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 252, 244, 0.92);
  border: 1px solid #eae0d5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.wc-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 0 3px;
  border-radius: 9px;
}

.wc-cell b {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 7.5px;
  color: #8a6a48;
}

.wc-cell > span {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 10px;
  color: #2c221e;
}

.wc-today > span {
  background: linear-gradient(135deg, #f5a623, #e8712a);
  color: #fff;
  box-shadow: 0 2px 6px rgba(232, 113, 42, 0.3);
}

.wc-cell i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: transparent;
}

.wc-dot {
  background: #e8712a;
}

.shop-row {
  grid-template-columns: 18px minmax(0, 1fr) auto;
}

.shop-check {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: 1.5px solid #d9b98f;
  background: #fffdf8;
  font-size: 9px;
  font-weight: 900;
  color: #fff;
}

.shop-check:not(:empty) {
  background: linear-gradient(135deg, #f5a623, #e8712a);
  border-color: transparent;
  box-shadow: 0 2px 4px rgba(232, 113, 42, 0.25);
}

.shop-badge {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 7.5px;
  padding: 2px 6px;
  border-radius: 999px;
}

.shop-in {
  background: #e2f0dd;
  color: #2d5a27;
}

.shop-buy {
  background: #fdeed0;
  color: #9a640f;
}

.feature-body {
  position: relative;
  padding: 22px 22px 26px;
}

.feature-title {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #2d1f14;
  margin-bottom: 8px;
}

.feature-desc {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4a3628;
  line-height: 1.55;
  max-width: 240px;
  padding-right: 8px;
}

.feature-arrow {
  position: absolute;
  right: 20px;
  bottom: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #9c7b58;
  background: rgba(255, 250, 240, 0.85);
  border: 1px solid #eae0d5;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-arrow {
  background: linear-gradient(135deg, #f5a623, #e8712a);
  color: #fff;
  border-color: transparent;
  transform: translateX(3px);
  box-shadow: 0 6px 14px rgba(232, 113, 42, 0.4);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features-sub {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 64px 5% 72px;
  }

  .features-heading {
    font-size: 25px;
  }

  .features-sub {
    font-size: 13px;
    margin-bottom: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 380px;
    margin: 0 auto;
  }

  .feature-image-wrap {
    margin: 12px 12px 0;
    border-radius: 20px;
  }

  .feature-body {
    padding: 20px 20px 24px;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-desc {
    font-size: 13px;
    max-width: none;
    padding-right: 34px;
  }

  .feature-arrow {
    right: 18px;
    bottom: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

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

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

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

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

.step-card {
  --i: 0;
  position: relative;
  flex: 0 1 280px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--i) * 150ms);
}

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

.step-badge {
  position: absolute;
  top: -18px;
  left: -2px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: #ffd9a0;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 15px;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  letter-spacing: 0.5px;
}

.step-image-glow {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(210, 140, 50, 0.55) 0%,
    rgba(180, 100, 30, 0.2) 45%,
    transparent 70%
  );
  filter: blur(25px);
  pointer-events: none;
}

.step-screen-wrap {
  position: relative;
  z-index: 1;
  width: min(260px, 100%);
  margin: 0 auto 20px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(170deg, #fffdf8 0%, #f7ead2 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.step-screen-wrap .mini-app {
  padding: 28px 16px 14px;
}

.disc-search {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #eae0d5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 9.5px;
  color: #8a6a48;
}

.disc-search-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.disc-chips {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.disc-chip {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 8px;
  color: #6b5340;
  background: #fff;
  border: 1px solid #eae0d5;
  border-radius: 999px;
  padding: 3px 8px;
}

.disc-chip-on {
  color: #fff;
  background: linear-gradient(135deg, #f5a623, #e8712a);
  border-color: transparent;
  box-shadow: 0 2px 6px rgba(232, 113, 42, 0.3);
}

.thumb-row {
  grid-template-columns: 30px minmax(0, 1fr) auto;
}

.disc-match {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 8.5px;
  color: #2d5a27;
  background: #e2f0dd;
  border-radius: 999px;
  padding: 2px 7px;
}

.disc-match-warm {
  color: #9a640f;
  background: #fdeed0;
}

.save-photo {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 5 / 3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eae0d5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.save-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.save-heart {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #c2451d;
  font-size: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.save-toast {
  align-self: center;
  flex-shrink: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 8px;
  color: #2d5a27;
  background: #e2f0dd;
  border: 1px solid rgba(45, 90, 39, 0.2);
  border-radius: 999px;
  padding: 3px 9px;
}

.cook-photo {
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 5 / 2;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eae0d5;
}

.cook-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cook-step {
  position: absolute;
  left: 6px;
  bottom: 6px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 8.5px;
  color: #fff;
  background: rgba(44, 34, 30, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 3px 8px;
}

.cook-progress {
  flex-shrink: 0;
  height: 6px;
  border-radius: 999px;
  background: #f0e2cd;
  border: 1px solid #eae0d5;
  overflow: hidden;
}

.cook-progress span {
  display: block;
  width: 55%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #f5a623, #e8712a);
}

.cook-row {
  grid-template-columns: 18px minmax(0, 1fr);
}

.step-title {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.step-desc {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 245, 230, 0.8);
  line-height: 1.65;
  max-width: 230px;
  margin: 0 auto;
}

.step-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  margin-top: -20px;
  color: #ffb84d;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 12px rgba(255, 180, 60, 0.45));
  transform: translateY(6px);
}

@media (max-width: 900px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .step-card {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  .step-arrow {
    transform: rotate(90deg) translateX(6px);
    margin: 6px 0;
    margin-top: 0;
  }

  .step-image-glow {
    width: 200px;
    height: 200px;
    top: 35px;
  }

  .step-badge {
    left: 2px;
    top: -14px;
    width: 46px;
    height: 46px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .how-section {
    padding: 64px 5% 72px;
  }

  .how-heading {
    font-size: 25px;
    margin-bottom: 44px;
  }

  .step-badge {
    width: 42px;
    height: 42px;
    font-size: 13px;
    top: -12px;
    left: 4px;
  }

  .step-image-glow {
    width: 170px;
    height: 170px;
    top: 30px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-desc {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-card {
    max-width: 340px;
    width: 100%;
  }

  .step-connector {
    width: 0;
    height: 46px;
    border-top: none;
    border-left: 3px dashed rgba(232, 113, 42, 0.35);
    margin: 18px 0;
  }

  .step-connector::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -3px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 11px solid rgba(232, 113, 42, 0.45);
    border-bottom: none;
  }
}

@media (max-width: 600px) {
  .how-section {
    padding: 64px 5% 72px;
  }

  .how-heading {
    font-size: 25px;
  }

  .how-sub {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .step-card {
    padding: 26px 20px 28px;
  }

  .step-medallion {
    width: 76px;
    height: 76px;
  }

  .step-emoji {
    font-size: 30px;
  }

  .step-title {
    font-size: 17px;
  }

  .step-desc {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

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

  .step-emoji {
    transition: none;
  }
}

.comparison-section {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #fdf5e8 0%, #f5e8d4 50%, #ede0cf 100%);
  padding: 80px 8% 100px;
  overflow-x: clip;
}

.comparison-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.comparison-left,
.comparison-right {
  flex: 1;
  max-width: 480px;
}

.comparison-label {
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8b6f52;
  margin-bottom: 10px;
  text-align: center;
}

.comparison-heading {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 2.8vw, 34px);
  color: #2d1f14;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.25;
}

.comparison-cards-left {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.cl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: linear-gradient(170deg, #f6f1ea 0%, #efe7dd 100%);
  border-radius: 20px;
  padding: 28px 20px 22px;
  min-width: 120px;
  max-width: 140px;
  border: 1.5px dashed rgba(122, 100, 82, 0.35);
  box-shadow:
    0 6px 18px rgba(120, 60, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.cl-card:nth-child(even) {
  transform: rotate(-2deg);
}

.cl-card:nth-child(odd) {
  transform: rotate(1.5deg);
}

.cl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(120, 60, 20, 0.12);
}

.cl-card-icon {
  width: 52px;
  height: 52px;
  color: #a08a74;
  opacity: 0.75;
}

.cl-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cl-card-text {
  font-size: 14px;
  font-weight: 700;
  color: #4a3423;
  text-align: center;
  line-height: 1.4;
}

.comparison-center {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -20px;
  align-self: stretch;
  overflow: visible;
}

.spoon-wrap {
  width: 100%;
  height: 100%;
  min-height: 420px;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.spoon-model {
  display: block;
  transform: rotate(90deg);
  transform-origin: center center;
  overflow: hidden;
}

.spin-btn:disabled {
  opacity: 0.55;
  cursor: default;
  transform: translateX(-50%) scale(0.98);
}

.spoon-arrow {
  position: absolute;
  bottom: 80%;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 80px;
  z-index: 3;
  color: #c08a52;
  filter: drop-shadow(0 2px 4px rgba(120, 60, 20, 0.25))
    drop-shadow(0 0 10px rgba(200, 140, 80, 0.35));
}

.spin-btn {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, #f5a623, #e8712a);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    0 10px 26px rgba(232, 113, 42, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  z-index: 5;
  white-space: nowrap;
}

.spin-btn svg {
  width: 17px;
  height: 17px;
}

.spin-btn:hover {
  transform: translateX(-50%) scale(1.06);
  box-shadow:
    0 14px 34px rgba(232, 113, 42, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.spin-btn:active {
  transform: translateX(-50%) scale(0.97);
}

.spin-hint {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8b6f52;
  white-space: nowrap;
  z-index: 5;
}

.spin-result {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  min-width: 190px;
  padding: 16px 22px;
  border-radius: 20px;
  background: linear-gradient(168deg, #fffdf8 0%, #fff3e0 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 18px 44px rgba(150, 80, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  text-align: center;
  animation: spin-result-pop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.spin-result-label {
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b07a45;
  margin-bottom: 5px;
}

.spin-result-recipe {
  font-family: "Nunito", sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: #2d1f14;
}

@keyframes spin-result-pop {
  0% {
    transform: translateX(-50%) translateY(14px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
  }
}

.comparison-cards-right {
  display: flex;
  gap: 22px;
  justify-content: center;
}

.cr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cr-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f5a623 0%, #e8712a 70%, #d95f1f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 8px 24px rgba(232, 113, 42, 0.28),
    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.35);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

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

.cr-circle:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 14px 36px rgba(232, 113, 42, 0.38),
    inset 0 2px 0 rgba(255, 255, 255, 0.28),
    inset 0 -4px 10px rgba(150, 60, 10, 0.25);
}

.cr-card-text {
  font-size: 15px;
  font-weight: 800;
  color: #4a3423;
  text-align: center;
}

.comparison-tagline {
  margin-top: 40px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  color: #5a4435;
  text-align: center;
}

@media (max-width: 1100px) {
  .comparison-inner {
    gap: 0;
  }

  .comparison-cards-left {
    gap: 12px;
  }

  .cl-card {
    min-width: 105px;
    max-width: 120px;
    padding: 22px 14px 18px;
  }

  .cl-card-icon {
    width: 44px;
    height: 44px;
  }

  .comparison-cards-right {
    gap: 16px;
  }

  .cr-circle {
    width: 95px;
    height: 95px;
  }

  .cr-circle svg {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 900px) {
  .comparison-section {
    padding: 60px 5% 70px;
  }

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

  .comparison-left,
  .comparison-right {
    max-width: 100%;
  }

  .comparison-center {
    width: 100%;
    margin: 0;
    align-self: auto;
  }

  .spoon-wrap {
    width: 120px;
    height: 320px;
    min-height: auto;
  }

  .spoon-arrow {
    display: none;
  }

  .comparison-cards-left {
    flex-wrap: wrap;
  }

  .comparison-cards-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .comparison-section {
    padding: 40px 4% 50px;
  }

  .comparison-cards-left {
    gap: 10px;
  }

  .cl-card {
    min-width: 80px;
    max-width: 100px;
    padding: 16px 10px 14px;
    border-radius: 14px;
  }

  .cl-card-icon {
    width: 34px;
    height: 34px;
  }

  .cl-card-text {
    font-size: 11px;
  }

  .comparison-center {
    width: 100%;
    margin: 0;
    align-self: auto;
  }

  .spoon-wrap {
    width: 100px;
    height: 260px;
    min-height: auto;
  }

  .spin-btn {
    bottom: 10px;
    padding: 9px 15px;
    font-size: 12px;
  }

  .spin-hint {
    bottom: -24px;
    font-size: 11px;
  }

  .spin-result {
    min-width: 160px;
    padding: 12px 16px;
    top: 10%;
  }

  .spin-result-recipe {
    font-size: 16px;
  }

  .cr-circle {
    width: 76px;
    height: 76px;
  }

  .cr-circle svg {
    width: 34px;
    height: 34px;
  }

  .comparison-cards-right {
    gap: 14px;
  }

  .cr-card-text {
    font-size: 13px;
  }
}

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

.cta-title {
  font-family: "Paytone One", "Nunito", sans-serif;
  font-weight: 400;
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: 1.06;
  letter-spacing: 0.005em;
  margin-bottom: 32px;
  text-shadow: none;
  perspective: 900px;
}

@keyframes cta-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes cta-pop {
  0% {
    opacity: 0;
    transform: rotateX(-55deg) translateY(34px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: rotateX(12deg) translateY(-5px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg) translateY(0) scale(1);
  }
}

@keyframes cta-sheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta-title .title-line {
  transform-origin: 50% 80%;
}

.cta-title .title-line:first-child {
  color: #fff7e6;
  text-shadow:
    0 1px 0 #eeddc0,
    0 2px 0 #e4cdab,
    0 3px 0 #d9bd96,
    0 4px 0 #cead81,
    0 5px 0 #c39d6c,
    0 6px 0 #b88d57,
    0 7px 0 #ad7d42,
    0 8px 0 #a26d2d,
    0 14px 24px rgba(58, 31, 9, 0.42),
    0 26px 48px rgba(58, 31, 9, 0.3);
}

.cta-title .title-orange {
  position: relative;
  color: transparent;
  background-image: linear-gradient(
    100deg,
    #ffd24a 0%,
    #ff9425 28%,
    #ffd97a 47%,
    #f4771f 65%,
    #ffab33 88%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

.cta-title .title-orange::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: #c25710;
  background-image: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  text-shadow:
    0 1px 0 #ad4d0a,
    0 2px 0 #9c4308,
    0 3px 0 #8b3905,
    0 4px 0 #7a3003,
    0 5px 0 #692702,
    0 6px 0 #581e00,
    0 7px 0 #471500,
    0 8px 0 #360c00,
    0 16px 30px rgba(90, 30, 0, 0.45),
    0 30px 56px rgba(90, 30, 0, 0.32);
}

@media (prefers-reduced-motion: no-preference) {
  .cta-section .cta-title {
    animation: cta-float 7s ease-in-out infinite;
  }

  .cta-title .title-line:not(.is-in-view) {
    opacity: 0;
  }

  .cta-title .title-line.is-in-view {
    animation: cta-pop 0.85s cubic-bezier(0.2, 1.25, 0.35, 1) both;
  }

  .cta-title .title-orange.is-in-view {
    animation:
      cta-pop 0.85s cubic-bezier(0.2, 1.25, 0.35, 1) 140ms both,
      cta-sheen 6s ease-in-out 1.15s infinite;
  }
}

.cta-section .hero-subtitle {
  color: #fff4e0;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  max-width: 540px;
  margin-bottom: 36px;
  text-shadow:
    0 1px 2px rgba(61, 30, 6, 0.6),
    0 4px 18px rgba(61, 30, 6, 0.5);
}

@media (min-width: 901px) {
  .cta-section .hero-content {
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .cta-section .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-section .hero-buttons {
    justify-content: center;
  }
}

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

  .cta-section .cta-title {
    font-size: clamp(34px, 4.6vw, 58px);
  }
}

@media (max-width: 900px) {
  .cta-section .hero-content {
    bottom: 16%;
  }
}

@media (max-width: 600px) {
  .cta-section .hero-content {
    top: 30dvh;
  }
}

@media (max-height: 520px) and (min-width: 601px) {
  .hero-content {
    bottom: 4%;
  }

  .hero-character {
    top: 2%;
  }

  .character-img {
    height: clamp(100px, 26vh, 150px);
  }

  .hero-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .hero-buttons {
    flex-direction: row;
    max-width: none;
    width: auto;
  }

  .btn-start-cooking,
  .btn-explore-recipes {
    width: auto;
    padding: 10px 20px;
  }

  .cta-section .hero-content {
    bottom: 4%;
  }
}

.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-family: "Nunito", sans-serif;
  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, #f5a623, #e8712a);
  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-family: "Nunito", sans-serif;
  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-family: "Nunito", sans-serif;
  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: #f5a623;
  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-family: "Nunito", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 235, 210, 0.5);
}

.footer-heart {
  color: #e8712a;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

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

@media (max-width: 600px) {
  .site-footer {
    padding: 56px 5% 0;
  }

  .footer-logo-img {
    height: 64px;
  }

  .footer-links {
    gap: 28px;
    flex-direction: column;
  }

  .footer-col {
    min-width: 0;
  }
}
