:root {
  --sand: #FBF7EE;
  --sand-deep: #F3EBDA;
  --teal-deep: #135A68;
  --teal: #1F8DA2;
  --teal-bright: #33ADC4;
  --coral: #F0587A;
  --coral-deep: #D63E60;
  --mango: #F5B942;
  --ink: #16323E;
  --ink-soft: #3A5560;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --sand: #0E2229;
    --sand-deep: #0A1A20;
    --ink: #F2EEE2;
    --ink-soft: #C7D6DA;
    --card-bg: #14343D;
    --white: #14343D;
  }
}

:root[data-theme="dark"] {
  --sand: #0E2229;
  --sand-deep: #0A1A20;
  --ink: #F2EEE2;
  --ink-soft: #C7D6DA;
  --card-bg: #14343D;
  --white: #14343D;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--sand);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3, .display {
  font-family: 'Baloo 2', 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.08;
  font-weight: 700;
}

a { color: inherit; }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 238, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(19, 90, 104, 0.12);
}
header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--teal-deep);
  letter-spacing: 0.01em;
}
.brand .paw { color: var(--coral); font-size: 1.1rem; transform: rotate(-8deg); }
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-top: 1px;
}
.call-btn {
  background: var(--coral);
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 20px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(240, 88, 122, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.call-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(240, 88, 122, 0.36); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--teal-deep) 0%, var(--teal) 55%, var(--teal-bright) 100%);
  color: white;
  overflow: hidden;
  padding: 64px 0 0;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { padding-bottom: 70px; }
.hero-eyebrow { font-weight: 600; color: #FFE3B3; font-size: 1rem; margin-bottom: 14px; }
.hero h1 { color: white; font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.01em; }
.hero h1 .accent { color: var(--mango); }
.hero p.lede { margin-top: 18px; font-size: 1.12rem; color: rgba(255,255,255,0.92); max-width: 46ch; }
.hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--mango);
  color: var(--ink);
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(245, 185, 66, 0.35);
  transition: transform 0.15s ease;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: white;
  padding: 13px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.hero-art {
  position: relative;
  align-self: end;
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  animation: rise 0.9s cubic-bezier(.2,.7,.3,1) 0.15s forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-art img {
  border-radius: 22px 22px 0 0;
  box-shadow: 0 30px 60px -20px rgba(6,30,36,0.55);
}

.wave { display: block; width: 100%; height: auto; margin-top: -2px; }

/* ---------- Benefits strip ---------- */
.benefits { background: var(--sand); padding: 54px 0 10px; }
.benefit-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit { display: flex; align-items: flex-start; gap: 14px; padding: 6px 4px; }
.benefit .icon {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: white;
}
.benefit:nth-child(1) .icon { background: var(--teal); }
.benefit:nth-child(2) .icon { background: var(--coral); }
.benefit:nth-child(3) .icon { background: var(--mango); color: var(--ink); }
.benefit h3 { font-size: 1.05rem; margin-bottom: 3px; }
.benefit p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Story ---------- */
.story { padding: 90px 0; }
.story .wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.story-art { position: relative; }
.story-art img { border-radius: 20px; box-shadow: 0 26px 50px -18px rgba(19,90,104,0.3); }
.story-tag {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--coral); color: white;
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 0.92rem;
  padding: 12px 18px; border-radius: 14px;
  box-shadow: 0 12px 24px rgba(214,62,96,0.35);
  max-width: 190px; line-height: 1.25;
}
.story h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.story p { color: var(--ink-soft); font-size: 1.03rem; max-width: 54ch; }
.story p + p { margin-top: 14px; }
.story-badges { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.story-badges span {
  background: var(--white); border: 1px solid rgba(19,90,104,0.15);
  color: var(--teal-deep); font-weight: 600; font-size: 0.86rem;
  padding: 9px 16px; border-radius: 100px;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--sand-deep); padding: 90px 0; }
.gallery-head { max-width: 60ch; margin-bottom: 42px; }
.gallery-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.gallery-head p { color: var(--ink-soft); font-size: 1.03rem; }
.gallery-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; }
.gallery-main { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 48px -20px rgba(19,90,104,0.3); }
.gallery-side { display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.flavor-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.flavor-list li {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); padding: 14px 18px; border-radius: 14px;
  font-weight: 600; color: var(--ink);
  box-shadow: 0 4px 14px -6px rgba(19,90,104,0.18);
}
.flavor-list .dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.flavor-list li:nth-child(1) .dot { background: #F6C6D0; }
.flavor-list li:nth-child(2) .dot { background: #FBD9A5; }
.flavor-list li:nth-child(3) .dot { background: #C9B7DE; }
.flavor-list li:nth-child(4) .dot { background: #F7F3E8; border: 1px solid #ddd; }

/* ---------- Order / contact ---------- */
.order { padding: 90px 0 100px; }
.order-panel {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-bright));
  border-radius: 28px; padding: 56px; color: white; position: relative;
  overflow: hidden; display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 40px; align-items: center;
}
.order-panel::after {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; background: rgba(245,185,66,0.18); border-radius: 50%;
}
.order h2 { color: white; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.order p.lede2 { color: rgba(255,255,255,0.9); margin-top: 14px; max-width: 48ch; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 26px; position: relative; z-index: 1; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.contact-list .ic {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center; flex: none; font-size: 1rem;
}
.order-card {
  background: white; color: var(--ink); border-radius: 20px; padding: 30px;
  position: relative; z-index: 1; box-shadow: 0 24px 48px -18px rgba(6,30,36,0.4);
}
.order-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.order-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 20px; }
.order-card .btn-primary { display: block; text-align: center; width: 100%; }
.order-card .btn-secondary {
  display: block; text-align: center; width: 100%; margin-top: 10px;
  padding: 13px 24px; border-radius: 100px; border: 1.5px solid rgba(19,90,104,0.3);
  color: var(--teal-deep); text-decoration: none; font-weight: 600;
}

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 40px 0; font-size: 0.9rem; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer .fbrand { font-family: 'Baloo 2', sans-serif; font-weight: 700; color: white; }
footer .heart { color: var(--coral); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-copy { padding-bottom: 40px; text-align: left; }
  .benefit-row { grid-template-columns: 1fr; gap: 26px; }
  .story .wrap { grid-template-columns: 1fr; }
  .story-art { max-width: 420px; margin: 0 auto; }
  .story-tag { left: 12px; bottom: -14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .order-panel { grid-template-columns: 1fr; padding: 34px 26px; }
}
@media (max-width: 480px) {
  header .bar { padding: 12px 18px; }
  .call-btn { padding: 9px 14px; font-size: 0.82rem; }
  .wrap { padding: 0 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
a:focus-visible, button:focus-visible { outline: 3px solid var(--mango); outline-offset: 2px; }
