:root {
    --yellow: #FFD60A; --yellow-deep: #F2B705; --orange: #FE6901;
    --lime: #87D504; --green: #2CA402; --green-deep: #1A7A02;
    --teal: #04BCC2; --teal-deep: #019CA2; --purple: #7A0FB8; --berry: #C2185B;
    --paper: #FFFDF6; --paper-warm: #FFF8E7; --cream: #FEF4D4;
    --ink: #1A1208; --ink-soft: #4A3F2E; --ink-muted: #8A7E68; --line: #EFE6CE;
    --shadow-soft: 0 4px 24px rgba(122, 80, 10, 0.08);
    --shadow-lift: 0 18px 50px rgba(122, 80, 10, 0.16);
    --font-display: 'Fraunces', Georgia, serif; --font-body: 'Outfit', system-ui, sans-serif;
    --radius: 20px; --transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--paper); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
  .container { width: min(1180px, 92vw); margin-inline: auto; }

  .ribbon { background: var(--ink); color: var(--paper); text-align: center; padding: 12px 20px; font-size: 0.92rem; }
  .ribbon a { color: var(--yellow); font-weight: 600; text-decoration: none; }
  .ribbon a:hover { text-decoration: underline; }

  header { position: sticky; top: 0; z-index: 100; background: rgba(255,253,246,0.82); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); }
  .nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
  .nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav__brand img { height: 46px; width: auto; display: block; }
  .nav__brand-text { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--ink); letter-spacing: -0.01em; }
  .nav__links { display: flex; gap: 30px; list-style: none; align-items: center; }
  .nav__links a { text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; transition: color var(--transition); }
  .nav__links a:hover { color: var(--orange); }
  .nav__cta { background: var(--ink); color: var(--paper) !important; padding: 11px 22px; border-radius: 100px; font-weight: 600 !important; transition: transform var(--transition), background var(--transition); }
  .nav__cta:hover { background: var(--orange); transform: translateY(-1px); }
  .nav__toggle { display: none; background: none; border: 0; font-size: 1.4rem; cursor: pointer; }

  .hero { position: relative; overflow: hidden; background: radial-gradient(120% 90% at 70% 10%, var(--cream) 0%, var(--paper) 55%); }
  .hero__grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 30px; align-items: center; width: min(1180px, 92vw); margin-inline: auto; padding-block: clamp(30px,5vw,60px) clamp(40px,7vw,80px); min-height: 84vh; }
  .hero__blob { position: absolute; border-radius: 50%; filter: blur(46px); opacity: 0.4; z-index: 0; animation: float 9s ease-in-out infinite; }
  .hero__blob--1 { width: 240px; height: 240px; background: var(--yellow); top: 6%; left: -3%; }
  .hero__blob--2 { width: 200px; height: 200px; background: var(--teal); bottom: 8%; left: 30%; animation-delay: -4s; }
  @keyframes float { 0%,100% { transform: translateY(0) translateX(0);} 50% { transform: translateY(-22px) translateX(12px);} }

  .hero__copy { position: relative; z-index: 2; }
  .hero__eyebrow { display: inline-block; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 20px; animation: rise 800ms ease both; animation-delay: 200ms; }
  .hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.5rem, 5.6vw, 4.5rem); line-height: 1.04; letter-spacing: -0.025em; color: var(--ink); animation: rise 800ms ease both; animation-delay: 340ms; }
  .hero h1 .accent { background: linear-gradient(100deg, var(--orange), var(--lime) 42%, var(--teal) 72%, var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero__lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 50ch; margin-top: 24px; animation: rise 800ms ease both; animation-delay: 460ms; }
  .hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; animation: rise 800ms ease both; animation-delay: 600ms; }
  @keyframes rise { 0% { opacity: 0; transform: translateY(24px);} 100% { opacity: 1; transform: translateY(0);} }

  .hero__logo-stage { position: relative; display: grid; place-items: center; aspect-ratio: 1/1; width: 100%; max-width: 480px; margin-inline: auto; z-index: 1; perspective: 1000px; }
  .hero__glow { position: absolute; inset: 10%; border-radius: 50%; z-index: 0; background: conic-gradient(from 0deg, var(--yellow), var(--orange), var(--lime), var(--teal), var(--purple), var(--yellow)); filter: blur(54px); opacity: 0.45; animation: glowspin 16s linear infinite; }
  @keyframes glowspin { to { transform: rotate(360deg); } }
  .hero__logo-tilt { position: relative; z-index: 1; width: 72%; transform-style: preserve-3d; will-change: transform; transition: transform 160ms ease-out; animation: logoEntrance 1100ms cubic-bezier(0.34, 1.56, 0.64, 1) both, bob 5.5s ease-in-out 1.1s infinite; }
  .hero__logo-tilt img { width: 100%; height: auto; display: block; filter: drop-shadow(0 22px 40px rgba(122,80,10,0.28)); }
  @keyframes logoEntrance { 0% { opacity:0; transform: translateY(40px) scale(0.82) rotate(-6deg);} 100% { opacity:1; transform: translateY(0) scale(1) rotate(0);} }
  @keyframes bob { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }
  @media (prefers-reduced-motion: reduce){ .hero__blob, .hero__glow, .hero__logo-tilt { animation: none; } }

  .btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 0; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); }
  .btn--primary { background: linear-gradient(120deg, var(--orange), var(--yellow-deep)); color: #fff; box-shadow: 0 8px 22px rgba(254,105,1,0.32); }
  .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(254,105,1,0.42); }
  .btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
  .btn--ghost:hover { transform: translateY(-2px); border-color: var(--orange); color: var(--orange); }

  section { padding-block: clamp(56px, 9vw, 100px); }
  .section-head { text-align: center; max-width: 60ch; margin: 0 auto clamp(36px, 6vw, 60px); }
  .section-head .eyebrow { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; display: block; }
  .section-head h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 4.4vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
  .section-head p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 16px; }

  .offerings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .offer { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; text-decoration: none; color: inherit; box-shadow: var(--shadow-soft); transition: transform var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
  .offer::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 5px; }
  .offer--1::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
  .offer--2::before { background: linear-gradient(90deg, var(--lime), var(--green)); }
  .offer--3::before { background: linear-gradient(90deg, var(--teal), var(--purple)); }
  .offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
  .offer__icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
  .offer h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
  .offer p { color: var(--ink-soft); font-size: 0.98rem; }
  .offer__more { display: inline-block; margin-top: 18px; color: var(--orange); font-weight: 600; font-size: 0.95rem; }

  .heritage { background: var(--paper-warm); position: relative; overflow: hidden; }
  .heritage::before, .heritage::after {
    content: ''; position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.3; z-index: 0;
  }
  .heritage::before { width: 280px; height: 280px; background: var(--lime); top: -80px; right: -60px; }
  .heritage::after { width: 240px; height: 240px; background: var(--yellow); bottom: -90px; left: -50px; }
  .heritage__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; text-align: center; }
  .heritage .eyebrow { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; display: block; }
  .heritage h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.1rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 26px; }
  .heritage__lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.7; margin-bottom: 36px; }
  .heritage__quote {
    font-family: var(--font-display); font-style: italic; font-weight: 500;
    font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.35; letter-spacing: -0.01em;
    color: var(--ink); border: 0; margin: 0 auto 32px; max-width: 24ch; position: relative;
    padding-block: 28px;
  }
  .heritage__quote::before, .heritage__quote::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%);
    width: 54px; height: 4px; border-radius: 4px;
    background: linear-gradient(90deg, var(--orange), var(--lime), var(--teal), var(--purple));
  }
  .heritage__quote::before { top: 0; }
  .heritage__quote::after { bottom: 0; }
  .heritage__sub { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 28px; }

  .flavors-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .flavor-chip { border-radius: 16px; padding: 22px 16px; color: #fff; text-align: center; font-weight: 600; min-height: 120px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow-soft); transition: transform var(--transition); }
  .flavor-chip:hover { transform: translateY(-5px) scale(1.02); }
  .flavor-chip small { font-weight: 400; font-size: 0.78rem; opacity: 0.92; display: block; margin-top: 4px; }
  .fc--lavender { background: linear-gradient(150deg, #9D5FD6, var(--purple)); }
  .fc--peach { background: linear-gradient(150deg, #FFB36B, var(--orange)); }
  .fc--watermelon { background: linear-gradient(150deg, #FF6F91, var(--berry)); }
  .fc--berry { background: linear-gradient(150deg, #8E63C8, #5E2A9E); }
  .fc--kiwi { background: linear-gradient(150deg, var(--lime), var(--green-deep)); }

  .cta-band { text-align: center; background: linear-gradient(130deg, var(--orange), var(--yellow-deep) 55%, var(--lime)); border-radius: clamp(20px, 4vw, 32px); padding: clamp(40px, 7vw, 70px) 30px; color: #fff; box-shadow: var(--shadow-lift); }
  .cta-band h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.8rem, 4.2vw, 2.9rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
  .cta-band p { font-size: 1.1rem; opacity: 0.95; max-width: 50ch; margin: 0 auto 30px; }
  .cta-band .btn--primary { background: #fff; color: var(--orange); box-shadow: 0 10px 28px rgba(0,0,0,0.18); }
  .cta-band .btn--primary:hover { background: var(--ink); color: #fff; }

  footer { background: var(--ink); color: #D8CDB8; padding-block: 50px 34px; }
  .footer__grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; align-items: start; }
  .footer__brand { display: flex; align-items: center; gap: 12px; }
  .footer__brand img { height: 42px; }
  .footer__brand span { font-family: var(--font-display); font-size: 1.25rem; color: #fff; font-weight: 600; }
  .footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
  .footer__links a { color: #D8CDB8; text-decoration: none; font-size: 0.95rem; }
  .footer__links a:hover { color: var(--yellow); }
  .footer__note { width: 100%; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 30px; padding-top: 22px; font-size: 0.85rem; color: #9A8E78; }
  .footer__note a { color: var(--yellow); text-decoration: none; }

  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    .hero__grid { grid-template-columns: 1fr; text-align: center; }
    .hero__cta-row { justify-content: center; } .hero__lede { margin-inline: auto; }
    .hero__logo-stage { max-width: 290px; order: -1; }
    .offerings { grid-template-columns: 1fr; }
    .flavors-strip { grid-template-columns: repeat(2, 1fr); }
    .nav__links { display: none; } .nav__toggle { display: block; }
    .nav__links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 6vw 16px; box-shadow: var(--shadow-soft); }
    .nav__links.open li { border-top: 1px solid var(--line); }
    .nav__links.open a { display: block; padding: 14px 0; font-size: 1rem; }
    .nav__links.open .nav__cta { margin-top: 12px; text-align: center; }
    header { position: relative; }
  }
/* ============ Shared page additions ============ */
/* Sub-page hero (smaller than homepage) */
.subhero { position: relative; overflow: hidden; background: radial-gradient(120% 100% at 50% -20%, var(--cream) 0%, var(--paper) 60%); text-align: center; padding-block: clamp(50px, 8vw, 90px) clamp(36px, 5vw, 56px); }
.subhero .eyebrow { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 18px; display: block; }
.subhero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 5.2vw, 3.8rem); line-height: 1.06; letter-spacing: -0.025em; color: var(--ink); max-width: 16ch; margin-inline: auto; }
.subhero p { color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.25rem); max-width: 56ch; margin: 20px auto 0; }

/* ---- Flavors grid ---- */
.flavors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.flavor-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform var(--transition), box-shadow var(--transition); background: #fff; border: 1px solid var(--line); }
.flavor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.flavor-card__band { height: 90px; display: flex; align-items: flex-end; padding: 16px 20px; }
.flavor-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.25); }
.flavor-card__body { padding: 20px; }
.flavor-card__ingredients { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 10px; }
.flavor-card__desc { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.6; }
/* flavor band colors */
.band--lavender { background: linear-gradient(135deg, #B57BE8, #7A0FB8); }
.band--peach { background: linear-gradient(135deg, #FFB36B, #FE6901); }
.band--watermelon { background: linear-gradient(135deg, #FF6F91, #C2185B); }
.band--berry { background: linear-gradient(135deg, #8E63C8, #5E2A9E); }
.band--kiwi { background: linear-gradient(135deg, #87D504, #1A7A02); }
.band--mango { background: linear-gradient(135deg, #FFC93C, #FE9001); }
.band--strawberry { background: linear-gradient(135deg, #FF7B7B, #D63031); }
.band--pomegranate { background: linear-gradient(135deg, #C44569, #6D214F); }
.band--bourbon { background: linear-gradient(135deg, #D4A056, #8B5A2B); }

/* ---- Package / bucket cards ---- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-soft); transition: transform var(--transition), box-shadow var(--transition); position: relative; display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.price-card--featured { border-color: var(--orange); box-shadow: 0 14px 40px rgba(254,105,1,0.18); }
.price-card__flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; white-space: nowrap; }
.price-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; margin-bottom: 6px; }
.price-card__price { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--orange); margin-bottom: 4px; }
.price-card__unit { color: var(--ink-muted); font-size: 0.92rem; margin-bottom: 20px; }
.price-card__list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-card__list li { padding: 9px 0 9px 28px; position: relative; color: var(--ink-soft); font-size: 0.96rem; border-top: 1px solid var(--line); }
.price-card__list li:first-child { border-top: 0; }
.price-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.price-card .btn { width: 100%; justify-content: center; }

/* ---- Community gallery ---- */
.gallery { columns: 3; column-gap: 16px; }
.gallery img { width: 100%; border-radius: 14px; margin-bottom: 16px; display: block; box-shadow: var(--shadow-soft); break-inside: avoid; }
.gallery__placeholder { width: 100%; border-radius: 14px; margin-bottom: 16px; aspect-ratio: 4/5; background: linear-gradient(140deg, var(--cream), var(--yellow)); display: grid; place-items: center; color: var(--ink-muted); font-size: 0.85rem; text-align: center; padding: 16px; break-inside: avoid; }

/* ---- Forms ---- */
.form-wrap { max-width: 680px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow-soft); }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 7px; color: var(--ink); }
.form-row .req { color: var(--orange); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--paper);
  transition: border-color var(--transition); }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--orange); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.85rem; color: var(--ink-muted); margin-top: 6px; }
.form-note { background: var(--paper-warm); border-left: 3px solid var(--teal); border-radius: 0 12px 12px 0; padding: 14px 18px; color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 26px; line-height: 1.6; }
.radio-set { display: flex; flex-direction: column; gap: 10px; }
.radio-set label { display: flex; align-items: center; gap: 10px; font-weight: 400; margin: 0; cursor: pointer; }
.radio-set input { width: auto; }
.form-success { display: none; text-align: center; padding: 30px; }
.form-success h3 { font-family: var(--font-display); color: var(--green); font-size: 1.6rem; margin-bottom: 10px; }

/* ---- Prose (story page) ---- */
.prose { max-width: 720px; margin-inline: auto; }
.prose p { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.8; margin-bottom: 22px; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.2rem); letter-spacing: -0.015em; margin: 44px 0 18px; }
.prose .lead { font-size: 1.3rem; color: var(--ink); font-weight: 500; line-height: 1.6; }

@media (max-width: 900px) {
  .flavors-grid { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
