:root {
  --mint: #a8e3dc;
  --mint-dark: #31b8a8;
  --aqua: #35d7c7;
  --coral: #ff6f61;
  --coral-dark: #e9564b;
  --berry: #f64c7f;
  --gold: #ffd166;
  --lime: #d9f871;
  --navy: #23364a;
  --ink: #172436;
  --cream: #fff9f2;
  --white: #ffffff;
  --muted: #667789;
  --shadow: 0 24px 70px rgba(35, 54, 74, 0.14);
  --color-shadow: 0 30px 80px rgba(246, 76, 127, 0.22);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 209, 102, 0.48), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(53, 215, 199, 0.5), transparent 25rem),
    radial-gradient(circle at 82% 72%, rgba(246, 76, 127, 0.24), transparent 28rem),
    linear-gradient(135deg, #fff7cf 0%, #ffedf1 28%, #d8fbf6 58%, #fff9f2 100%);
  background-attachment: fixed;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,0.22) 1px, transparent 1px),
    linear-gradient(30deg, rgba(35,54,74,0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  animation: drift-bg 28s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10% -18% -10%;
  height: 38vh;
  z-index: -1;
  opacity: 0.72;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(168,227,220,0.65), transparent 70%);
  filter: blur(20px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(35, 54, 74, 0.08);
  box-shadow: 0 14px 45px rgba(35, 54, 74, 0.06);
  backdrop-filter: blur(22px) saturate(1.35);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; color: var(--navy); }
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 16px; }

nav { display: flex; align-items: center; gap: 24px; font-weight: 800; color: var(--navy); }
nav a { opacity: 0.82; }
nav a:hover { opacity: 1; color: var(--coral-dark); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  opacity: 1;
}
nav .nav-cta:hover { color: white; background: var(--coral); }

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 72px) 60px;
  min-height: calc(100vh - 86px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 7% 3% auto auto;
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  z-index: -1;
  border-radius: 42% 58% 68% 32% / 42% 36% 64% 58%;
  background: linear-gradient(135deg, rgba(255,111,97,0.28), rgba(53,215,199,0.42), rgba(255,209,102,0.34));
  filter: blur(2px);
  animation: morph 13s ease-in-out infinite alternate;
}

.orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.72;
  animation: float 8s ease-in-out infinite;
}
.orb-mint { width: 120px; height: 120px; left: 5%; top: 18%; background: var(--aqua); }
.orb-coral { width: 82px; height: 82px; left: 46%; top: 13%; background: var(--coral); animation-delay: -2s; }
.orb-gold { width: 150px; height: 150px; right: 10%; bottom: 9%; background: var(--gold); animation-delay: -4s; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; color: var(--navy); line-height: 0.96; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { max-width: 760px; font-size: clamp(3.4rem, 8vw, 7.6rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.15rem, 4.6vw, 4.6rem); letter-spacing: -0.045em; }
h3 { font-size: 1.25rem; line-height: 1.15; }

.lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: #3d4f61;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px) scale(1.02); }
.primary { background: linear-gradient(135deg, var(--coral), var(--berry)); color: white; box-shadow: 0 16px 34px rgba(255, 111, 97, 0.32); }
.primary:hover { background: linear-gradient(135deg, var(--coral-dark), var(--berry)); }
.secondary { color: var(--navy); background: rgba(255,255,255,0.82); box-shadow: 0 14px 30px rgba(35, 54, 74, 0.08); backdrop-filter: blur(10px); }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span {
  padding: 9px 13px;
  border: 1px solid rgba(35, 54, 74, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--navy);
  font-weight: 900;
}

.hero-card {
  position: relative;
  min-height: 560px;
  padding: 18px;
  border-radius: 42px;
  background: linear-gradient(145deg, var(--mint), var(--gold), #fff, #ffdfe6);
  box-shadow: var(--color-shadow), var(--shadow);
  transform: rotate(1deg);
  animation: card-breathe 5.5s ease-in-out infinite;
}
.hero-card > img { width: 100%; height: 100%; min-height: 524px; object-fit: cover; border-radius: 30px; }
.hero-badge {
  position: absolute;
  right: 36px;
  bottom: 36px;
  max-width: 250px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(35, 54, 74, 0.16);
}
.hero-badge strong { display: block; color: var(--coral-dark); font-size: 1.05rem; }
.hero-badge span { display: block; margin-top: 4px; color: var(--muted); line-height: 1.4; }

.sparkle {
  position: absolute;
  z-index: 2;
  color: var(--gold);
  font-size: 3rem;
  text-shadow: 0 12px 25px rgba(35,54,74,0.18);
  animation: twinkle 2.6s ease-in-out infinite;
}
.sparkle-one { left: -8px; top: 42px; }
.sparkle-two { right: 16px; top: -10px; color: var(--coral); animation-delay: -1.2s; }

.marquee {
  overflow: hidden;
  padding: 16px 0;
  background: linear-gradient(90deg, var(--navy), var(--mint-dark), var(--coral), var(--navy));
  color: white;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 20px 55px rgba(35,54,74,0.12);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.section-pad { padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px); }
.intro {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(circle at 8% 15%, rgba(255,209,102,0.35), transparent 22rem),
    radial-gradient(circle at 94% 70%, rgba(53,215,199,0.35), transparent 26rem),
    var(--navy);
  color: white;
}
.intro::after {
  content: "Sweet Fit";
  position: absolute;
  right: -3vw;
  bottom: -2vw;
  color: rgba(255,255,255,0.055);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 800;
  line-height: 1;
}
.intro h2, .intro .eyebrow { color: white; }
.intro .eyebrow { color: var(--mint); }
.intro p:last-child { margin: 0; font-size: clamp(1.18rem, 2.2vw, 1.7rem); line-height: 1.58; color: #e9f5f3; }

.section-heading { max-width: 820px; margin-bottom: 36px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.15rem; line-height: 1.6; }
.narrow { max-width: 700px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 16px 46px rgba(35, 54, 74, 0.09);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:nth-child(1) { background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,209,102,0.2)); }
.product-card:nth-child(2) { background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(246,76,127,0.14)); }
.product-card:nth-child(3) { background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(168,227,220,0.35)); }
.product-card:nth-child(4) { background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,111,97,0.15)); }
.product-card:hover { transform: translateY(-9px) rotate(-0.6deg); box-shadow: var(--color-shadow), var(--shadow); }
.product-card img { width: 100%; height: 245px; object-fit: cover; background: var(--mint); }
.product-card div { padding: 22px; }
.product-card p { color: var(--muted); line-height: 1.55; margin: 10px 0 0; }

.why { background: linear-gradient(135deg, rgba(168, 227, 220, 0.66), rgba(255, 209, 102, 0.34), rgba(255, 111, 97, 0.2)); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit {
  padding: 26px;
  border: 1px solid rgba(35, 54, 74, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(35,54,74,0.06);
  transition: transform 0.22s ease, background 0.22s ease;
}
.benefit:hover { transform: translateY(-6px); background: white; }
.benefit span { color: var(--coral); font-weight: 900; }
.benefit h3 { margin-top: 14px; }
.benefit p { color: var(--muted); line-height: 1.55; margin-bottom: 0; }

.story { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(30px, 6vw, 82px); align-items: center; }
.story-image {
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 42px;
  background: radial-gradient(circle at 40% 35%, white, var(--mint) 48%, var(--gold));
  box-shadow: var(--color-shadow), var(--shadow);
  animation: card-breathe 6s ease-in-out infinite reverse;
}
.story-image img { width: min(76%, 300px); filter: drop-shadow(0 16px 30px rgba(35, 54, 74, 0.1)); }
.story-copy p:not(.eyebrow) { color: #44596a; font-size: 1.08rem; line-height: 1.75; }

.launch { padding-top: 32px; }
.launch-card {
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px);
  border-radius: 42px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,209,102,0.34), transparent 19rem),
    radial-gradient(circle at 88% 100%, rgba(53,215,199,0.36), transparent 21rem),
    linear-gradient(135deg, var(--navy), #153e4e 55%, #2d274c);
  color: white;
  box-shadow: var(--color-shadow), var(--shadow);
}
.launch-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 30px;
  pointer-events: none;
}
.launch-card h2, .launch-card .eyebrow { color: white; }
.launch-card .eyebrow { color: var(--mint); }
.launch-card p { color: #e6f4f2; line-height: 1.65; }
.signup-form {
  display: flex;
  gap: 12px;
  max-width: 650px;
  margin: 28px auto 18px;
  padding: 8px;
  border-radius: 999px;
  background: white;
}
.signup-form label { flex: 1; text-align: left; }
.signup-form span { position: absolute; left: -9999px; }
.signup-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  border-radius: 999px;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
}
.small-note { font-size: 0.95rem; }
.small-note a { color: var(--mint); font-weight: 900; text-decoration: underline; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(14px);
}
footer img { width: 70px; margin-bottom: 10px; }
footer p { margin: 0; max-width: 360px; }
.footer-links { display: flex; gap: 18px; align-items: center; font-weight: 900; color: var(--navy); }

@media (max-width: 1000px) {
  .hero, .intro, .story { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { min-height: 420px; }
  .hero-card > img { min-height: 388px; }
  .product-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-header { position: static; align-items: flex-start; flex-direction: column; }
  nav { width: 100%; overflow-x: auto; gap: 14px; padding-bottom: 4px; font-size: 0.92rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .product-grid, .benefit-grid { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; border-radius: 28px; }
  .signup-form .button { width: 100%; }
  footer { flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition: opacity 0.7s ease var(--delay, 0ms), transform 0.7s ease var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-card {
  transform: rotate(1deg) perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.18s ease-out;
}

@keyframes drift-bg {
  from { background-position: 0 0, 0 0; }
  to { background-position: 140px 70px, -70px 140px; }
}

@keyframes morph {
  0% { border-radius: 42% 58% 68% 32% / 42% 36% 64% 58%; transform: rotate(0deg) scale(1); }
  100% { border-radius: 64% 36% 42% 58% / 58% 62% 38% 42%; transform: rotate(9deg) scale(1.06); }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -24px, 0) scale(1.08); }
}

@keyframes card-breathe {
  0%, 100% { box-shadow: var(--color-shadow), var(--shadow); }
  50% { box-shadow: 0 38px 95px rgba(53, 215, 199, 0.24), var(--shadow); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.45; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.16) rotate(16deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.glow {
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 78px);
}
.glow-card {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 44px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.92), transparent 18rem),
    linear-gradient(135deg, rgba(255,209,102,0.86), rgba(255,111,97,0.72), rgba(53,215,199,0.8));
  box-shadow: var(--color-shadow), var(--shadow);
}
.glow-card h2 { max-width: 820px; }
.glow-card p:not(.eyebrow) { max-width: 820px; color: var(--navy); font-size: 1.18rem; line-height: 1.68; }
.stats-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.stats-row span {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  color: var(--navy);
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.stats-row strong { color: var(--berry); }

.gallery { background: rgba(255,255,255,0.34); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border-radius: 30px;
  background: white;
  box-shadow: 0 16px 42px rgba(35,54,74,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-grid figure:hover { transform: translateY(-8px) rotate(0.8deg); box-shadow: var(--color-shadow), var(--shadow); }
.gallery-grid img { width: 100%; height: 300px; object-fit: cover; }
.gallery-grid figcaption { padding: 16px 18px; color: var(--navy); font-weight: 1000; }
.center-action { display: flex; justify-content: center; margin-top: 28px; }

.page-hero { min-height: auto; }
.page-hero h1 { max-width: 980px; font-size: clamp(3.2rem, 7vw, 6.6rem); }
.page-section-tight { padding-top: 20px; }
.menu-grid { grid-template-columns: repeat(4, 1fr); }
.split-page {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.page-feature-img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--color-shadow), var(--shadow);
}
.page-story { grid-template-columns: 0.62fr 1.38fr; }
.page-story h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); }

@media (max-width: 1000px) {
  .gallery-grid, .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .split-page, .page-story { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .gallery-grid, .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 340px; }
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-weight: 1000;
}
.social-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 28px rgba(35,54,74,0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--berry));
}
.launch-social {
  justify-content: center;
  margin-top: 20px;
}
.launch-social a {
  color: white;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
}

.menu-hero {
  position: relative;
  overflow: hidden;
}
.menu-board {
  display: grid;
  gap: 28px;
}
.menu-category {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 40px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 18px 55px rgba(35,54,74,0.09);
  backdrop-filter: blur(14px);
}
.menu-category.featured-menu {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,209,102,0.32), transparent 20rem),
    radial-gradient(circle at 90% 0%, rgba(53,215,199,0.28), transparent 20rem),
    rgba(255,255,255,0.8);
}
.menu-category.color-pop {
  background: linear-gradient(135deg, rgba(35,54,74,0.96), rgba(45,39,76,0.94));
  color: white;
}
.menu-category.color-pop h2,
.menu-category.color-pop h3 { color: white; }
.menu-category.color-pop p:not(.eyebrow) { color: rgba(255,255,255,0.78); }
.menu-category.color-pop-alt {
  background: linear-gradient(135deg, rgba(168,227,220,0.78), rgba(255,209,102,0.42), rgba(255,255,255,0.82));
}
.menu-category > div:first-child {
  margin-bottom: 24px;
}
.menu-items {
  display: grid;
  gap: 14px;
}
.menu-items.two-col { grid-template-columns: repeat(2, 1fr); }
.menu-items.three-col { grid-template-columns: repeat(3, 1fr); }
.menu-items article {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(35,54,74,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-category.color-pop .menu-items article {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
}
.menu-items article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(35,54,74,0.1);
}
.menu-items h3 { font-size: 1.08rem; }
.menu-items p { margin: 8px 0 0; color: var(--muted); line-height: 1.5; }

@media (max-width: 1000px) {
  .menu-items.two-col,
  .menu-items.three-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .menu-items.two-col,
  .menu-items.three-col { grid-template-columns: 1fr; }
}
