/* ==========================================================================
   Tasti Café — Good Food, Brighter Days
   Palette pulled from the logo: brush blue, sunny yellow, leaf green.
   ========================================================================== */

:root {
  /* Brand */
  --blue-ink:   #0A2E6E;   /* deepest blue, for text on light */
  --blue:       #1560C4;   /* the logo brush blue */
  --blue-bright:#2E86F0;   /* highlight blue */
  --blue-wash:  #E7F1FE;   /* pale blue fill */
  --sun:        #FFC72C;   /* logo yellow swoosh */
  --sun-deep:   #F0A800;
  --leaf:       #5FC22B;   /* logo leaf */
  --leaf-deep:  #2F8F17;
  --wa:         #25D366;   /* WhatsApp */
  --wa-deep:    #128C4B;

  /* Surface */
  --paper:      #FDFCF8;
  --cream:      #FFF6E3;
  --ink:        #10203A;
  --ink-soft:   #4A5B75;
  --line:       rgba(10, 46, 110, .12);

  /* Form */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 44px;
  --shadow-sm: 0 2px 6px rgba(10, 46, 110, .07);
  --shadow-md: 0 14px 30px -14px rgba(10, 46, 110, .28);
  --shadow-lg: 0 34px 60px -26px rgba(10, 46, 110, .45);

  --shell: 1180px;
  --gutter: clamp(18px, 5vw, 44px);

  --f-display: "Fredoka", "Trebuchet MS", system-ui, sans-serif;
  --f-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-script: "Caveat", "Segoe Script", cursive;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: clamp(16px, .55vw + 15px, 18px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }
h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.05; margin: 0; letter-spacing: -.015em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 200; background: var(--blue); color: #fff;
  padding: 12px 22px; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--f-display); font-weight: 600; font-size: 1rem;
  padding: .72em 1.4em;
  border: 0; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .18s cubic-bezier(.3,1.4,.5,1), box-shadow .18s, filter .18s;
}
.btn:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.05); }
.btn:active { transform: translateY(0) scale(.99); }
.btn-lg { font-size: 1.08rem; padding: .88em 1.7em; }
.btn-wa { --btn-bg: var(--wa); --btn-fg: #05331b; }
.btn-sun { --btn-bg: var(--sun); --btn-fg: #3A2600; }
.btn-ghost {
  --btn-bg: transparent; --btn-fg: var(--blue-ink);
  box-shadow: inset 0 0 0 2.5px var(--blue-ink);
}
.wa-glyph { width: 1.25em; height: 1.25em; fill: currentColor; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(253, 252, 248, .82);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
  padding-top: env(safe-area-inset-top, 0px);
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex; align-items: center; gap: clamp(14px, 3vw, 34px);
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }

/* Wordmark — the logo, set in type so it stays crisp at any size.
   Swap for the supplied artwork by replacing .wordmark with an <img>. */
.wordmark {
  display: inline-grid;
  justify-items: start;
  font-family: var(--f-script);
  line-height: .82;
  color: var(--blue);
  --wm: clamp(30px, 3.6vw, 40px);
}
.wm-tasti {
  position: relative;
  font-size: var(--wm); font-weight: 700;
  letter-spacing: -.01em;
  padding-right: .34em;
}
.wm-leaf {
  position: absolute; right: 0; top: .04em;
  width: .21em; height: .3em;
  background: linear-gradient(150deg, #8FE04B, var(--leaf-deep));
  border-radius: 100% 0 100% 0;
  transform: rotate(12deg);
}
.wm-cafe {
  position: relative;
  margin-left: .5em; margin-top: -.12em;
  font-size: calc(var(--wm) * .82); font-weight: 700;
}
.wm-cafe::after {
  content: ""; position: absolute; left: -6%; right: -14%; bottom: -.02em; height: .13em;
  background: var(--sun);
  border-radius: 50% 50% 46% 54% / 100% 100% 0 0;
  transform: rotate(-2deg);
}
.wordmark--light { color: #fff; --wm: clamp(34px, 4.4vw, 46px); }

.chat-avatar {
  position: relative;
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--blue); color: #fff;
  font-family: var(--f-script); font-weight: 700; font-size: 1.25rem;
  line-height: 1;
}
.chat-avatar i {
  position: absolute; right: 4px; top: 4px;
  width: 8px; height: 11px;
  background: #8FE04B; border-radius: 100% 0 100% 0; transform: rotate(14deg);
}
.brand-tag {
  font-family: var(--f-script); font-size: 1.05rem; line-height: 1;
  color: var(--blue-ink); padding-left: 12px;
  border-left: 2px solid var(--line);
}

.nav { display: flex; gap: clamp(10px, 1.6vw, 22px); margin-left: auto; }
.nav a {
  position: relative;
  font-weight: 600; font-size: .95rem; text-decoration: none;
  color: var(--blue-ink); padding: 6px 2px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--sun); border-radius: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); }

.header-cta { padding: .6em 1.2em; font-size: .95rem; }

.menu-toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border: 0; border-radius: 14px;
  background: var(--blue-wash); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.menu-toggle span {
  display: block; width: 20px; height: 2.5px; border-radius: 2px;
  background: var(--blue-ink); transition: transform .25s, opacity .2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: grid; gap: 4px;
  padding: 10px var(--gutter) 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-nav a {
  font-family: var(--f-display); font-weight: 500; font-size: 1.1rem;
  text-decoration: none; padding: 12px 4px; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 14px; border-bottom: 0; justify-self: start; }
[hidden] { display: none !important; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 110px); }
.hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; }
.blob-1 {
  width: 62vw; height: 62vw; max-width: 720px; max-height: 720px;
  right: -18vw; top: -22vw;
  background: radial-gradient(circle at 35% 35%, #DCEBFF, rgba(231, 241, 254, 0) 70%);
}
.blob-2 {
  width: 40vw; height: 40vw; max-width: 460px; max-height: 460px;
  left: -14vw; bottom: -16vw;
  background: radial-gradient(circle at 50% 50%, rgba(255, 199, 44, .35), rgba(255, 199, 44, 0) 70%);
}
.leaf {
  position: absolute; width: 46px; height: 72px;
  background: linear-gradient(150deg, var(--leaf), var(--leaf-deep));
  border-radius: 100% 0 100% 0;
  opacity: .8;
  animation: sway 7s ease-in-out infinite;
}
.leaf-a { top: 12%; right: 6%; transform: rotate(18deg); }
.leaf-b { top: 58%; right: 46%; width: 30px; height: 46px; opacity: .45; animation-delay: -2.4s; }
.leaf-c { bottom: 8%; left: 3%; width: 36px; height: 56px; transform: rotate(-30deg); animation-delay: -4.2s; }
@keyframes sway {
  0%, 100% { transform: translateY(0) rotate(14deg); }
  50%      { transform: translateY(-14px) rotate(24deg); }
}

.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 70px); align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: .55em;
  background: #fff; border: 1.5px solid var(--line);
  color: var(--blue-ink); font-weight: 700; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5em 1.05em; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.pill .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(95, 194, 43, .6);
  animation: ping 2.2s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(95, 194, 43, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(95, 194, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 194, 43, 0); }
}

.hero-title {
  margin: 22px 0 0;
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  font-weight: 600;
  color: var(--blue-ink);
  isolation: isolate; /* keeps the yellow swoosh behind the text, not the page */
}
.title-accent {
  position: relative; display: inline-block;
  color: var(--blue);
}
.title-accent::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .04em; height: .22em;
  background: var(--sun); border-radius: 50% 50% 46% 54% / 100% 100% 0 0;
  transform: rotate(-1.2deg) scaleX(0); transform-origin: left;
  z-index: -1;
  animation: swoosh .8s .45s cubic-bezier(.2,.8,.3,1) forwards;
}
@keyframes swoosh { to { transform: rotate(-1.2deg) scaleX(1); } }

.hero-lede {
  margin: 22px 0 0; max-width: 34ch;
  font-size: 1.1rem; color: var(--ink-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line);
  font-weight: 600; font-size: .94rem; color: var(--blue-ink);
}
.hero-trust li { display: flex; align-items: center; gap: .55em; }
.trust-ico { width: 20px; height: 20px; flex: none; border-radius: 4px; }
.ico-leaf  { background: var(--leaf); border-radius: 100% 0 100% 0; }
.ico-heart { background: #E2382F; clip-path: path("M10 18C4 13.5 1 10.6 1 7.2A4.2 4.2 0 0 1 10 5a4.2 4.2 0 0 1 9 2.2c0 3.4-3 6.3-9 10.8Z"); }
.ico-cart  { background: var(--blue); clip-path: polygon(0 10%, 22% 10%, 32% 55%, 100% 55%, 88% 88%, 30% 88%, 22% 10%, 0 10%); }

/* ---------- Phone (signature) ---------- */
.hero-phone { position: relative; display: flex; justify-content: center; }

.scribble {
  position: absolute; top: -40px; left: -18px;
  font-family: var(--f-script); font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.05; color: var(--blue); transform: rotate(-7deg);
  z-index: 3; pointer-events: none;
}
.scribble::after {
  content: ""; position: absolute; right: -30px; bottom: -4px;
  width: 26px; height: 26px;
  background:
    linear-gradient(var(--sun), var(--sun)) 12px 0/4px 12px no-repeat,
    linear-gradient(var(--sun), var(--sun)) 0 14px/12px 4px no-repeat;
  transform: rotate(-28deg);
}

.phone {
  position: relative; width: min(330px, 78vw);
  padding: 12px; border-radius: var(--r-xl);
  background: linear-gradient(160deg, #2A3244, #0E131C);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.12);
  animation: float 6.5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-12px) rotate(-.4deg); } }

.phone::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 20px; border-radius: 999px; background: #0E131C; z-index: 3;
}
.phone-screen {
  border-radius: 34px; overflow: hidden;
  background: #ECE4DB; display: flex; flex-direction: column;
  height: 470px;
}

.chat-top {
  display: flex; align-items: center; gap: 10px;
  padding: 30px 14px 12px; background: #F4F0EA;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.chat-top img { border-radius: 50%; background: #fff; }
.chat-who { display: grid; line-height: 1.15; }
.chat-who strong { font-family: var(--f-display); font-size: .98rem; color: #0E131C; }
.online { font-size: .72rem; color: var(--wa-deep); font-weight: 600; }
.chat-dots { margin-left: auto; color: #6B7280; font-size: 1.1rem; }

.chat-body {
  flex: 1; display: flex; flex-direction: column; gap: 8px;
  padding: 14px 12px; overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.55), transparent 40%),
    #E9E0D6;
}
.bubble {
  max-width: 86%; padding: 9px 12px; font-size: .84rem; line-height: 1.4;
  border-radius: 16px; box-shadow: 0 1px 1px rgba(0,0,0,.08);
  animation: pop .32s cubic-bezier(.2,1.3,.4,1) both;
}
.bubble.in  { align-self: flex-start; background: #fff; border-top-left-radius: 5px; color: #0E131C; }
.bubble.out { align-self: flex-end; background: #D7FDC8; border-top-right-radius: 5px; color: #07300F; }
.bubble.typing { display: flex; gap: 4px; padding: 13px 14px; }
.bubble.typing i {
  width: 6px; height: 6px; border-radius: 50%; background: #9AA3AE;
  animation: blink 1.1s infinite;
}
.bubble.typing i:nth-child(2) { animation-delay: .18s; }
.bubble.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.95); } }

.chat-menu { display: grid; gap: 6px; width: 86%; align-self: flex-start; }
.chat-menu button,
.chat-menu span {
  display: block; width: 100%; text-align: center;
  background: #fff; border: 0; border-radius: 12px;
  padding: 10px; font: 600 .82rem var(--f-body); color: var(--blue);
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
}

.chat-input {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px 14px; background: #F4F0EA;
  font-size: .8rem; color: #8A9099;
}
.chat-input span:first-child {
  flex: 1; background: #fff; border-radius: 999px; padding: 9px 14px;
}
.chat-input .send {
  width: 34px; height: 34px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; font-size: .8rem;
}

.float-chip {
  position: absolute; z-index: 4;
  background: #fff; border-radius: var(--r-md);
  padding: 12px 16px; box-shadow: var(--shadow-md);
  font-size: .78rem; font-weight: 600; color: var(--ink-soft); line-height: 1.25;
}
.float-chip strong {
  display: block; font-family: var(--f-display); font-size: 1.45rem;
  color: var(--blue-ink); line-height: 1;
}
.chip-items { left: -4%; top: 22%; border-left: 5px solid var(--sun); }
.chip-time  { right: -4%; bottom: 14%; border-left: 5px solid var(--leaf); }

/* ---------- Bands ---------- */
.band { padding: clamp(56px, 8vw, 104px) 0; }
.band-light { background: var(--paper); }
.band-cream { background: var(--cream); }
.band-blue {
  background: linear-gradient(165deg, var(--blue-ink), var(--blue) 58%, #1B74DE);
  color: #fff; position: relative; overflow: hidden;
}
.band-blue::after {
  content: ""; position: absolute; inset: auto -10% -60% -10%; height: 60%;
  background: radial-gradient(ellipse at 50% 0, rgba(255,199,44,.22), transparent 65%);
  pointer-events: none;
}

.section-head { max-width: 42ch; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  color: var(--blue-ink); margin-top: 10px;
}
.section-head--light h2, .section-head--light .eyebrow { color: #fff; }
.section-sub { margin-top: 14px; color: var(--ink-soft); }
.eyebrow {
  font-family: var(--f-script); font-size: 1.45rem; line-height: 1;
  color: var(--blue); font-weight: 700;
}
.eyebrow-light { color: var(--sun); }

/* ---------- Perks ---------- */
.perks {
  display: grid; gap: clamp(14px, 2vw, 22px);
  grid-template-columns: repeat(4, 1fr);
}
.perk {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 24px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.perk:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.perk-ico {
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 18px;
  background: var(--blue-wash); margin-bottom: 18px;
}
.perk-ico svg { width: 26px; height: 26px; fill: var(--blue); stroke: var(--blue); stroke-width: 0; }
.perk-ico svg path[d^="M2 10"] { stroke-width: 2; }
.perk:nth-child(2) .perk-ico { background: #FFF2CF; }
.perk:nth-child(2) .perk-ico svg { fill: var(--sun-deep); stroke: var(--sun-deep); }
.perk:nth-child(3) .perk-ico { background: #E4F7DC; }
.perk:nth-child(3) .perk-ico svg { fill: var(--leaf-deep); stroke: var(--leaf-deep); }
.perk:nth-child(4) .perk-ico { background: #FFE6E4; }
.perk:nth-child(4) .perk-ico svg { fill: #E2382F; stroke: #E2382F; }
.perk h3 { font-size: 1.25rem; color: var(--blue-ink); }
.perk p { margin-top: 8px; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid; gap: clamp(16px, 2.4vw, 28px);
  grid-template-columns: repeat(3, 1fr);
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  padding: 30px 26px 32px;
  backdrop-filter: blur(6px);
}
.step-no {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sun); color: #3A2600;
  font-family: var(--f-display); font-weight: 700; font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.5);
}
.step h3 { font-size: 1.3rem; }
.step p { margin-top: 10px; color: rgba(255,255,255,.82); font-size: .96rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 56px; right: -18px;
  width: 22px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.55) 0 5px, transparent 5px 10px);
}

/* ---------- Menu tray ---------- */
.tray {
  display: grid; gap: clamp(12px, 1.6vw, 20px);
  grid-template-columns: repeat(3, 1fr);
}
.tile {
  --tile: var(--blue-wash);
  position: relative; overflow: hidden;
  background: var(--tile);
  border-radius: var(--r-lg);
  padding: 28px 24px 30px;
  min-height: 178px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .25s cubic-bezier(.3,1.2,.5,1), box-shadow .25s;
}
.tile::before {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 130px; height: 130px; border-radius: 50%;
  background: rgba(255,255,255,.5);
  transition: transform .4s ease;
}
.tile:hover { transform: translateY(-7px) rotate(-.8deg); box-shadow: var(--shadow-md); }
.tile:hover::before { transform: scale(1.25); }
.tile:nth-child(even):hover { transform: translateY(-7px) rotate(.8deg); }
.tile-emoji {
  position: relative; font-size: 2.6rem; line-height: 1; margin-bottom: auto;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.14));
  transition: transform .3s cubic-bezier(.3,1.5,.5,1);
}
.tile:hover .tile-emoji { transform: scale(1.14) rotate(-6deg); }
.tile h3 { position: relative; font-size: 1.2rem; color: var(--blue-ink); margin-top: 18px; }
.tile p { position: relative; margin-top: 5px; font-size: .9rem; color: var(--ink-soft); }

.t-bagel  { --tile: #FFF1CE; }
.t-hot    { --tile: #FFE3DC; }
.t-coffee { --tile: #EDE3D8; }
.t-freezo { --tile: #FBD9EA; }
.t-cold   { --tile: #D9EEFF; }
.t-salad  { --tile: #DFF4D6; }
.t-health { --tile: #E6F3D3; }
.t-snack  { --tile: #FFF0D2; }
.t-sweet  { --tile: #EDE0F2; }

/* ---------- Parents ---------- */
.parents-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.parents-copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--blue-ink); margin-top: 10px; }
.parents-lede { margin-top: 18px; color: var(--ink-soft); max-width: 46ch; }
.ticks { margin-top: 26px; display: grid; gap: 12px; }
.ticks li {
  display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start;
  font-weight: 500; font-size: .98rem;
}
.ticks li::before {
  content: ""; width: 24px; height: 24px; border-radius: 50%;
  background: var(--leaf) no-repeat center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7'/%3E%3C/svg%3E");
  background-size: 15px;
}

.pay-card {
  background: #fff; border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow-md); border: 1.5px solid var(--line);
}
.pay-card h3 { font-size: 1.15rem; color: var(--blue-ink); }
.pay-logos {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin: 22px 0 26px; padding-bottom: 26px; border-bottom: 1px solid var(--line);
}
.pay { display: inline-flex; align-items: center; color: var(--ink); }
.applepay { gap: 2px; font-family: var(--f-body); font-weight: 500; font-size: 1.5rem; }
.applepay svg { width: 17px; height: 21px; fill: currentColor; }
.mastercard { width: 52px; height: 32px; position: relative; }
.mastercard i { position: absolute; top: 0; width: 32px; height: 32px; border-radius: 50%; }
.mc-a { left: 0; background: #EB001B; }
.mc-b { right: 0; background: #F79E1B; mix-blend-mode: multiply; }
.visa {
  font-family: var(--f-body); font-weight: 800; font-style: italic;
  font-size: 1.5rem; letter-spacing: -.02em; color: #1A1F71;
}

.kosher { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: center; }
.bd-mark svg { width: 52px; height: 52px; }
.bd-mark path { fill: none; stroke: var(--ink); stroke-width: 3; }
.bd-mark text { font: 700 11px var(--f-body); fill: var(--ink); text-anchor: middle; }
.kosher p { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Notify ---------- */
.band-notify {
  background: linear-gradient(150deg, var(--wa-deep), #0E7C44 55%, #0B5F35);
  color: #fff;
}
.notify-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px); align-items: center;
}
.notify-copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin-top: 10px; }
.notify-copy p { margin-top: 16px; color: rgba(255,255,255,.85); max-width: 40ch; }

.notify-form {
  display: grid; gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.24);
  border-radius: var(--r-lg); padding: clamp(22px, 3vw, 32px);
  backdrop-filter: blur(8px);
}
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: .86rem; color: rgba(255,255,255,.9); }
.field input {
  font: inherit; font-size: 1rem;
  padding: 13px 16px; border-radius: var(--r-sm);
  border: 2px solid transparent; background: #fff; color: var(--ink);
}
.field input::placeholder { color: #9AA3AE; }
.field input:focus-visible { outline: none; border-color: var(--sun); box-shadow: 0 0 0 4px rgba(255,199,44,.4); }
.field.is-bad input { border-color: #FFB4AE; box-shadow: 0 0 0 4px rgba(255,180,174,.3); }
.notify-form .btn { margin-top: 6px; }
.form-note { font-size: .84rem; color: rgba(255,255,255,.78); }
.form-note.is-good { color: var(--sun); font-weight: 600; }
.form-note.is-bad { color: #FFD9D5; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-shell { max-width: 880px; }
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: var(--blue-bright); box-shadow: var(--shadow-md); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; cursor: pointer; list-style: none;
  font-family: var(--f-display); font-weight: 500; font-size: 1.08rem; color: var(--blue-ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none;
  display: grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue-wash); color: var(--blue);
  font-size: 1.3rem; line-height: 1;
  transition: transform .25s, background .25s, color .25s;
}
.faq details[open] summary::after { content: "+"; transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq summary:hover { background: #FBFCFE; }
.faq-body { padding: 0 22px 22px; color: var(--ink-soft); font-size: .98rem; max-width: 62ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-ink); color: #fff;
  padding: clamp(46px, 6vw, 70px) 0 calc(28px + env(safe-area-inset-bottom, 0px));
  text-align: center;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-script {
  font-family: var(--f-script); font-size: 1.25rem; line-height: 1.05;
  color: var(--sun); text-align: left;
  padding-left: 16px; border-left: 2px solid rgba(255,255,255,.22);
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
.footer-nav a { text-decoration: none; font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.82); }
.footer-nav a:hover { color: var(--sun); }
.footer-strap {
  margin-top: 34px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
  width: min(var(--shell), 100%); margin-inline: auto;
  font-family: var(--f-display); letter-spacing: .12em; text-transform: uppercase;
  font-size: .78rem; color: rgba(255,255,255,.7);
  padding-inline: var(--gutter);
}
.footer-legal { margin-top: 12px; font-size: .78rem; color: rgba(255,255,255,.5); padding-inline: var(--gutter); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.3,1);
  transition-delay: var(--delay, 0ms);
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .tray { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: left; }
  .leaf-a, .leaf-b { display: none; }
  /* Stacked layout: caption on top, phone, then the chips in a row underneath,
     so nothing sits over the chat. */
  .hero-phone {
    margin-top: 60px;
    flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px;
  }
  .scribble {
    position: static; order: -1; flex: 0 0 100%;
    margin: 0; text-align: center; transform: rotate(-3deg);
  }
  .scribble::after { display: none; }
  .float-chip { position: static; flex: 1 1 140px; max-width: 220px; text-align: center; }
  .chip-items { border-left: 0; border-top: 5px solid var(--sun); }
  .chip-time { border-left: 0; border-top: 5px solid var(--leaf); }
  .phone { flex: 1 0 100%; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .parents-grid { grid-template-columns: 1fr; }
  .notify-inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand-tag { display: none; }
  .perks { grid-template-columns: 1fr; }
  .tray { grid-template-columns: 1fr; }
  .tile { min-height: 0; }
  .hero-trust { gap: 10px 18px; font-size: .88rem; }
  .btn-lg { width: 100%; }
  .float-chip { padding: 10px 13px; }
  .footer-brand { flex-direction: column; gap: 12px; }
  .footer-script { border-left: 0; padding-left: 0; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .title-accent::after { transform: rotate(-1.2deg) scaleX(1); }
}
