/* ---------- Tokens ---------- */
:root {
  --pink-700: #B5135C;
  --pink-600: #D31571;
  --pink-500: #EC1F73;   /* brand */
  --pink-400: #F35597;
  --pink-300: #FAB1CB;
  --pink-200: #FCD3E2;
  --pink-100: #FCE4EC;
  --cream-100: #FFF8EE;
  --cream-200: #FFF0DD;
  --cream-300: #F8E8D2;
  --ink-900: #2A1820;
  --ink-700: #4A2C36;
  --ink-500: #735561;
  --ink-300: #B6A3AC;
  --gold: #D4A437;
  --shadow-sm: 0 2px 6px rgba(74, 18, 50, .08);
  --shadow-md: 0 8px 24px rgba(74, 18, 50, .12);
  --shadow-lg: 0 20px 50px rgba(74, 18, 50, .18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 999px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Quicksand', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  color: var(--ink-900);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5 {
  font-family: 'Fredoka', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink-900);
}
p { margin: 0; line-height: 1.6; color: var(--ink-700); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 1.4rem; border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink-500); color: #fff;
  box-shadow: 0 6px 0 var(--pink-700), 0 12px 24px rgba(236,31,115,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--pink-700), 0 16px 30px rgba(236,31,115,.35); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--pink-700), 0 6px 12px rgba(236,31,115,.25); }

.btn-ghost {
  background: #fff; color: var(--pink-600);
  border: 2px solid var(--pink-200);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { background: var(--pink-100); border-color: var(--pink-300); transform: translateY(-2px); }

.btn-cream {
  background: var(--cream-100); color: var(--pink-600);
  box-shadow: 0 6px 0 var(--cream-300), 0 12px 24px rgba(0,0,0,.12);
}
.btn-cream:hover { transform: translateY(-2px); }

/* ---------- Sprinkles ---------- */
.sprinkles {
  position: absolute; inset: 0; bottom: auto;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.sprinkles .s {
  position: absolute;
  width: var(--w, 14px); height: var(--h, 6px);
  border-radius: 6px;
  background: var(--c, var(--pink-300));
  opacity: var(--o, .55);
  transform: rotate(var(--r, 20deg));
  animation: floatSprinkle var(--dur, 7s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.sprinkles .s.dot {
  border-radius: 50%;
  width: var(--w, 8px); height: var(--w, 8px);
}
@keyframes floatSprinkle {
  0%, 100% { transform: rotate(var(--r, 20deg)) translateY(0); }
  50% { transform: rotate(calc(var(--r, 20deg) + 25deg)) translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .sprinkles .s { animation: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(255, 248, 238, .85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(236,31,115,.08);
}
.nav-logo { display: flex; align-items: center; gap: .6rem; color: var(--pink-600); }
.logo-mark {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(236,31,115,.3);
  border: 2px solid #fff;
}
.logo-text {
  font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.25rem;
  color: var(--pink-600); letter-spacing: -0.01em;
}
.logo-text em { font-style: normal; color: var(--ink-900); }

.nav-links { display: flex; align-items: center; gap: .5rem; }
.nav-links a {
  font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: .95rem;
  padding: .55rem .9rem; border-radius: var(--radius-pill);
  color: var(--ink-700); transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--pink-100); color: var(--pink-600); }
.nav-cta {
  background: var(--pink-500); color: #fff !important;
  box-shadow: 0 4px 0 var(--pink-700);
  margin-left: .4rem;
}
.nav-cta:hover { background: var(--pink-600) !important; transform: translateY(-1px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 3px; background: var(--pink-600); border-radius: 3px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 4rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.hero-bg {
  position: absolute; inset: -2rem -50vw 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(252,211,226,.7), transparent 55%),
    radial-gradient(ellipse at 90% 30%, rgba(255,240,221,.9), transparent 55%);
  z-index: -1;
}
.hero-inner { position: relative; z-index: 2; }

.badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem 1rem; border-radius: var(--radius-pill);
  background: #fff; color: var(--pink-600);
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .85rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink-500); box-shadow: 0 0 0 4px rgba(236,31,115,.2); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(236,31,115,.2); } 50% { box-shadow: 0 0 0 8px rgba(236,31,115,.05); } }

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin: 1.2rem 0 1.5rem;
}
.pink-stroke {
  color: var(--pink-500);
  position: relative; display: inline-block;
}
.pink-stroke::after {
  content: ""; position: absolute; left: -4px; right: -4px; bottom: -.05em; height: .35em;
  background: var(--pink-200); z-index: -1;
  border-radius: 6px; transform: skew(-4deg);
}

.hero-sub {
  font-size: 1.125rem; color: var(--ink-700);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2.5rem;
}
.meta-card {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1rem;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid rgba(236,31,115,.08);
}
.meta-card div { display: flex; flex-direction: column; line-height: 1.2; }
.meta-card strong { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--ink-900); font-size: .95rem; }
.meta-card span { color: var(--ink-500); font-size: .82rem; margin-top: 2px; }
.meta-emoji { font-size: 1.6rem; }

/* Hero sign — echoes the brand graphic */
.hero-sign {
  position: relative;
  background: var(--pink-500);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 60px rgba(236,31,115,.35), inset 0 0 0 6px rgba(255,255,255,.18);
  transform: rotate(-2deg);
  transition: transform .4s ease;
}
.hero-sign:hover { transform: rotate(-2deg) translateY(-6px) scale(1.02); }
.hero-logo {
  display: block;
  width: 100%; max-width: 360px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-md);
}
.sign-plaque {
  background: var(--cream-100);
  border-radius: 28px;
  padding: 1.4rem 1.2rem 1.6rem;
  border: 4px solid var(--pink-300);
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
}
.sign-line-1 {
  font-family: 'Fredoka', sans-serif; font-weight: 700;
  color: var(--pink-500); font-size: 1.8rem;
  text-shadow: 2px 2px 0 var(--pink-200);
}
.sign-line-2 {
  font-family: 'Fredoka', sans-serif; font-weight: 700;
  color: var(--pink-300); font-size: 1.5rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,.04);
  margin-bottom: .4rem;
}

/* ---------- Sections ---------- */
.section {
  padding: 6rem 2rem;
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 2;
}
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1; margin: .75rem 0 1rem;
}
.section-head p { font-size: 1.05rem; color: var(--ink-500); }
.eyebrow {
  display: inline-block;
  font-family: 'Fredoka', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; font-size: .8rem;
  color: var(--pink-500);
  background: var(--pink-100);
  padding: .4rem .9rem; border-radius: var(--radius-pill);
}
.eyebrow-light { background: rgba(255,255,255,.18); color: #fff; }
.section-head.light h2, .section-head.light p { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.85); }

.underline-pink {
  position: relative; display: inline-block;
  background-image: linear-gradient(120deg, var(--pink-200) 0%, var(--pink-200) 100%);
  background-repeat: no-repeat; background-size: 100% 30%; background-position: 0 90%;
  padding: 0 .15em;
}
.underline-cream {
  background-image: linear-gradient(120deg, rgba(255,255,255,.25) 0%, rgba(255,255,255,.25) 100%);
  background-repeat: no-repeat; background-size: 100% 30%; background-position: 0 90%;
  padding: 0 .15em;
}

/* ---------- Bakes ---------- */
.bake-grid {
  display: grid; gap: 1.75rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.bake {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(0,0,0,.04);
}
.bake:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bake-img {
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg-a, var(--pink-100)), var(--bg-b, var(--pink-300)));
  position: relative; overflow: hidden;
}
.bake-img::before, .bake-img::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.bake-img::before { width: 80px; height: 80px; top: -20px; right: -20px; }
.bake-img::after { width: 50px; height: 50px; bottom: -10px; left: -10px; background: rgba(0,0,0,.06); }
.bake-emoji {
  font-size: 5rem; line-height: 1;
  filter: drop-shadow(0 6px 8px var(--emoji-shadow, rgba(0,0,0,.2)));
  transform: rotate(-8deg);
  transition: transform .35s ease;
}
.bake:hover .bake-emoji { transform: rotate(0) scale(1.1); }

.bake-body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.bake-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.bake h3 { font-size: 1.15rem; line-height: 1.25; }
.price {
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.1rem;
  color: var(--pink-500);
  background: var(--pink-100);
  padding: .15rem .55rem; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.bake-body p { font-size: .92rem; color: var(--ink-500); margin-top: .15rem; }
.tag {
  align-self: flex-start;
  font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--ink-700); background: var(--cream-200);
  padding: .25rem .6rem; border-radius: var(--radius-pill);
  margin-top: .25rem;
}
.tag-hot { color: #fff; background: var(--pink-500); }

.bake-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  border: 1px dashed var(--pink-300);
  font-size: .92rem; color: var(--ink-700); line-height: 1.6;
}
.bake-note strong { color: var(--pink-600); font-family: 'Fredoka', sans-serif; }

/* ---------- How it works ---------- */
.how {
  background: linear-gradient(165deg, var(--pink-500), var(--pink-600));
  max-width: none; margin: 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.how::before, .how::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.how::before { width: 320px; height: 320px; background: rgba(255,255,255,.06); top: -100px; right: -80px; }
.how::after { width: 240px; height: 240px; background: rgba(0,0,0,.08); bottom: -80px; left: -60px; }

.how > * { position: relative; z-index: 1; max-width: 1280px; margin-left: auto; margin-right: auto; }

.steps {
  list-style: none; padding: 0; margin: 0 auto 3.5rem;
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--pink-500); color: #fff;
  font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 1.4rem;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 0 var(--pink-700);
}
.step h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step p { color: var(--ink-500); font-size: .95rem; }

.trust-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.trust-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  color: #fff;
  backdrop-filter: blur(10px);
}
.trust-icon { font-size: 1.8rem; display: inline-block; margin-bottom: .5rem; }
.trust-card h4 { color: #fff; font-size: 1.05rem; margin-bottom: .35rem; }
.trust-card p { color: rgba(255,255,255,.85); font-size: .88rem; line-height: 1.5; }

/* ---------- Find us ---------- */
.find-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem;
  align-items: stretch;
}
.find-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  aspect-ratio: 600 / 341;
  background: #F3EDE6;
  align-self: start;
}
.map-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.map-pin {
  position: absolute;
  /* Centered on the existing pink dot in the source image (55.8%, 61%) */
  left: 55.8%;
  top: 61%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  display: grid; place-items: center;
  pointer-events: none;
}
.map-pin-img {
  position: relative; z-index: 2;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(236,31,115,.45), 0 4px 8px rgba(0,0,0,.15);
  object-fit: cover;
}
.map-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--pink-500);
  opacity: .35;
  animation: mapPulse 2.4s ease-out infinite;
  z-index: 1;
}
@keyframes mapPulse {
  0% { transform: scale(1); opacity: .45; }
  80%, 100% { transform: scale(1.7); opacity: 0; }
}
.map-label {
  position: absolute;
  left: 55.8%;
  top: 61%;
  transform: translate(-50%, calc(-50% - 80px));
  background: #fff;
  color: var(--pink-600);
  font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: .85rem;
  padding: .35rem .8rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--pink-500);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  white-space: nowrap;
  pointer-events: none;
}

.find-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.find-card h3 { font-size: 1.6rem; line-height: 1.2; color: var(--pink-600); }
.find-direction { font-size: 1rem; }
.find-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.find-list li {
  font-size: .92rem; line-height: 1.55; color: var(--ink-700);
  padding-left: 1.5rem; position: relative;
}
.find-list li::before {
  content: "→"; position: absolute; left: 0; color: var(--pink-500); font-weight: 700;
}
.find-list strong { color: var(--ink-900); font-family: 'Fredoka', sans-serif; font-weight: 600; }

.find-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .25rem; }

.hours { margin-top: .75rem; padding-top: 1.25rem; border-top: 1px dashed var(--pink-200); }
.hours h4 { font-size: 1rem; color: var(--pink-600); margin-bottom: .75rem; }
.hours dl { display: grid; gap: .35rem; margin: 0; }
.hours dl div { display: flex; justify-content: space-between; font-size: .92rem; color: var(--ink-700); }
.hours dl dt { font-family: 'Fredoka', sans-serif; font-weight: 500; }
.hours dl dd { margin: 0; color: var(--ink-500); }
.hours dl .muted dt, .hours dl .muted dd { color: var(--ink-300); }
.hours-note { margin-top: .75rem; font-size: .82rem; color: var(--ink-500); font-style: italic; }

/* ---------- Updates ---------- */
.updates { padding-top: 3rem; padding-bottom: 5rem; }
.updates-card {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: #fff;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 60px rgba(236,31,115,.3);
}
.updates-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.15), transparent 30%),
    radial-gradient(circle at 90% 100%, rgba(0,0,0,.15), transparent 35%);
  pointer-events: none;
}
.updates-text { position: relative; max-width: 640px; margin: 0 auto 2rem; }
.updates-text h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: .75rem 0 .75rem; }
.updates-text p { color: rgba(255,255,255,.9); font-size: 1.05rem; }

.signup {
  position: relative;
  display: flex; gap: .5rem;
  max-width: 480px; margin: 0 auto;
  background: rgba(255,255,255,.18);
  padding: .4rem; border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
}
.signup input {
  flex: 1; background: transparent; border: 0; outline: none;
  color: #fff; font-family: inherit; font-size: 1rem; font-weight: 500;
  padding: 0 1rem;
}
.signup input::placeholder { color: rgba(255,255,255,.7); }
.signup-msg {
  position: absolute; left: 0; right: 0; top: 100%; margin-top: .75rem;
  font-size: .9rem; color: #fff; min-height: 1.4em;
}

.socials {
  display: flex; justify-content: center; gap: 1.5rem;
  margin-top: 3rem; position: relative;
}
.social {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #fff; font-family: 'Fredoka', sans-serif; font-weight: 500;
  padding: .55rem 1rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s, transform .2s;
}
.social:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.footer { background: var(--cream-200); padding: 4rem 2rem 1.5rem; border-top: 1px solid rgba(0,0,0,.04); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding-bottom: 2.5rem;
  border-bottom: 1px dashed var(--pink-200);
}
.footer-logo {
  display: block;
  width: 140px; height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.footer-brand p { font-size: .92rem; color: var(--ink-500); margin-top: .75rem; max-width: 320px; }
.footer-col h5 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--pink-600); margin-bottom: .75rem; }
.footer-col p { font-size: .92rem; color: var(--ink-700); }
.footer-col a { color: var(--ink-700); text-decoration: underline; text-decoration-color: var(--pink-300); text-underline-offset: 3px; }
.footer-base {
  max-width: 1280px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--ink-500);
}
.footer-base a { color: var(--pink-600); font-family: 'Fredoka', sans-serif; font-weight: 500; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 2.5rem; padding-bottom: 4rem; gap: 2.5rem; }
  .hero-sign { transform: rotate(-1deg); max-width: 420px; margin: 0 auto; }
  .hero-meta { grid-template-columns: 1fr; }
  .find-grid { grid-template-columns: 1fr; }
  .find-map { min-height: 320px; }
  .find-map svg { min-height: 320px; }
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-base { flex-direction: column; gap: .5rem; }
}

@media (max-width: 720px) {
  .nav { padding: .9rem 1.25rem; }
  .nav-links {
    position: absolute; top: 100%; right: 1rem; left: 1rem;
    flex-direction: column; align-items: stretch;
    background: #fff; padding: 1rem; border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: .75rem 1rem; }
  .nav-burger { display: flex; }
  .section { padding: 4rem 1.25rem; }
  .updates-card { padding: 2.5rem 1.5rem; }
  .signup { flex-direction: column; padding: .75rem; border-radius: var(--radius-md); }
  .signup input { padding: .5rem 1rem; text-align: center; }
  .signup .btn { width: 100%; justify-content: center; }
  .signup-msg { position: static; margin-top: .5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .find-card { padding: 1.75rem; }
  .hero { padding: 2rem 1.25rem 3rem; }
  .sign-name { font-size: 2rem; }
  .sign-line-1 { font-size: 1.4rem; }
  .sign-line-2 { font-size: 1.2rem; }
  .trust-grid { grid-template-columns: 1fr; }
}
