/* ============================================================
   Sweets by Dani — site styles
   Warm, artisanal bakery aesthetic
   ============================================================ */

:root {
  color-scheme: light;
  --cream: #FFF8EC;
  --cream-2: #FAEED8;
  --butter: #F6E3C0;
  --caramel: #C98F4A;
  --caramel-deep: #A86B2E;
  --choco: #4A2B1A;
  --choco-deep: #2C180B;
  --ink: #22120A;
  --blush: #F3D5C3;
  --berry: #B4503E;
  --cash: #00D632;
  --cash-deep: #00B528;
  --white: #FFFFFF;
  --line: rgba(74, 43, 26, .12);
  --shadow-soft: 0 24px 60px -28px rgba(74, 43, 26, .4);
  --shadow-card: 0 30px 70px -35px rgba(44, 24, 11, .45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
  color: var(--choco-deep);
}

p { margin: 0; }
button { font: inherit; }

::selection { background: var(--butter); color: var(--choco-deep); }

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

/* Subtle film grain for warmth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .028;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
section[id] { scroll-margin-top: calc(var(--header-h) + 18px); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 300;
  background: var(--choco-deep);
  color: var(--cream);
  padding: .7rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 1rem; }

.icon { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--caramel-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--caramel);
  border-radius: 2px;
}
.section-head-light .eyebrow { color: #EECB96; }
.section-head-light .eyebrow::before { background: #EECB96; }
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  touch-action: manipulation;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .2s, color .2s, border-color .2s;
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn-small { padding: .6rem 1.15rem; font-size: .9rem; }

.btn-primary {
  background: var(--choco-deep);
  color: #FFF7E9;
  box-shadow: 0 12px 30px -14px rgba(44, 24, 11, .55);
}
.btn-primary:hover {
  background: var(--choco);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -16px rgba(44, 24, 11, .6);
}

.btn-cash {
  background: transparent;
  border-color: var(--choco-deep);
  color: var(--choco-deep);
}
.btn-cash:hover { background: var(--choco-deep); color: #FFF7E9; transform: translateY(-2px); }

.btn-cash-solid {
  background: var(--cash);
  color: #0B2B12;
  box-shadow: 0 14px 34px -16px rgba(0, 214, 50, .7);
}
.btn-cash-solid:hover { background: var(--cash-deep); transform: translateY(-2px); }

.btn-copy {
  background: rgba(255, 255, 255, .07);
  color: #FFF7E9;
  border-color: rgba(247, 233, 206, .35);
  border-radius: 999px;
  padding: .95rem 1.5rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  cursor: pointer;
}
.btn-copy:hover { background: rgba(255, 247, 233, .14); transform: translateY(-2px); }

/* ---------- Preloader (only runs when JS is on, so it can never trap the page) ---------- */
.preloader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  place-items: center;
  background: var(--cream);
  transition: opacity .6s var(--ease), visibility .6s;
}
.js .preloader { display: grid; }
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-cookie {
  width: 104px;
  height: 104px;
  margin: 0 auto 1rem;
  animation: preloader-bob 1.1s ease-in-out infinite;
}
@keyframes preloader-bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}
.preloader-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--choco-deep);
}
.preloader-tag { font-size: .85rem; color: var(--caramel-deep); margin-top: .3rem; }

/* ---------- Announcement bar ---------- */
.announcement {
  background: var(--choco-deep);
  color: #F7E9CE;
  text-align: center;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .55rem 1rem;
  position: relative;
  z-index: 60;
}
.announcement[hidden] { display: none; }
/* ---------- Header & nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 236, .92); /* fallback */
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px -18px rgba(44, 24, 11, .25);
  border-bottom-color: var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.brand-mark { width: 34px; height: 34px; border-radius: 50%; box-shadow: 0 6px 14px -6px rgba(74, 43, 26, .5); }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  color: var(--choco-deep);
}
.brand-name em { font-style: italic; color: var(--caramel-deep); font-weight: 500; }

.nav { margin-left: auto; }
.nav-list { display: flex; gap: 2rem; }
.nav-list a {
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
  color: var(--choco);
  position: relative;
  padding: .3rem 0;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--caramel);
  border-radius: 2px;
  transition: width .3s var(--ease);
}
.nav-list a:hover::after, .nav-list a:focus-visible::after { width: 100%; }
.nav-cta { margin-left: .5rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--choco-deep);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  padding: 0 1.25rem 1.4rem;
  border-top: 1px solid var(--line);
}
.mobile-menu.is-open { display: block; }
.mobile-menu-list { display: grid; gap: .3rem; margin-bottom: 1rem; }
.mobile-menu-list a {
  display: block;
  padding: .8rem .4rem;
  text-decoration: none;
  font-weight: 800;
  color: var(--choco);
  border-radius: 10px;
}
.mobile-menu-list a:hover { background: var(--cream-2); }
/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.blob-1 { width: 420px; height: 420px; background: var(--blush); top: -120px; right: -80px; }
.blob-2 { width: 360px; height: 360px; background: var(--butter); bottom: -140px; left: -100px; }

.float-cookie {
  position: absolute;
  opacity: .9;
  filter: drop-shadow(0 18px 26px rgba(74, 43, 26, .28));
  animation: float 7s ease-in-out infinite;
}
.float-cookie img { width: 100%; height: auto; }
.float-cookie-1 { width: 92px; top: 13%; left: 5%; animation-delay: .3s; }
.float-cookie-2 { width: 70px; top: 24%; right: 7%; animation-delay: 1.4s; }
.float-cookie-3 { width: 56px; bottom: 10%; left: 11%; animation-delay: 2.4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 4.9rem);
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--caramel-deep); position: relative; white-space: nowrap; }
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .06em;
  height: .18em;
  background: var(--butter);
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1.2deg);
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #5B4637;
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: .6rem; }
.hero-facts li {
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--caramel-deep);
  background: rgba(249, 230, 200, .7);
  border: 1px solid rgba(201, 143, 74, .25);
  padding: .45rem .85rem;
  border-radius: 999px;
}

.hero-art { position: relative; display: grid; place-items: center; }
.hero-cookie-main { width: min(360px, 82%); animation: hero-bob 6s ease-in-out infinite; }
.hero-cookie-main img { width: 100%; height: auto; filter: drop-shadow(0 42px 52px rgba(74, 43, 26, .35)); }
@keyframes hero-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-2.5deg); }
}
.stamp {
  position: absolute;
  right: 1%;
  bottom: 3%;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  transform: rotate(-12deg);
}
.stamp-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed var(--choco-deep);
  border-radius: 50%;
  opacity: .85;
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.stamp-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.3;
  text-align: center;
  color: var(--choco-deep);
  text-transform: uppercase;
  letter-spacing: .14em;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--choco-deep);
  color: #F7E9CE;
  overflow: hidden;
  padding: .85rem 0;
}
.marquee-inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-inner { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  letter-spacing: .22em;
  font-size: .82rem;
  text-transform: uppercase;
}
.marquee-item + .marquee-item { margin-left: 2.2rem; }
.marquee-item::before {
  content: "◆";
  color: var(--caramel);
  margin-right: 2.2rem;
  font-size: .6em;
}
@keyframes marquee { to { transform: translateX(-50%); } }
/* ---------- Weekly drop / menu ---------- */
.drop { background: var(--cream-2); }
.section-head { max-width: 40rem; margin-bottom: 3rem; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section-head h2 em { font-style: italic; color: var(--caramel-deep); }
.section-sub { color: #5B4637; }
.week-badge {
  display: inline-block;
  margin-left: .4rem;
  background: var(--choco-deep);
  color: #F7E9CE;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .8rem;
  border-radius: 999px;
  vertical-align: middle;
  white-space: nowrap;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}
.menu-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  position: relative;
  transform-origin: center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.menu-card:hover {
  transform: translateY(-10px) rotate(-.6deg);
  box-shadow: var(--shadow-card);
}
.menu-card-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, #FFFDF6, #FAEED8);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.menu-card-art img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(74, 43, 26, .22));
  transition: transform .5s var(--ease);
}
.menu-card:hover .menu-card-art img { transform: scale(1.07) rotate(3deg); }
.menu-badges { position: absolute; top: .7rem; left: .7rem; display: flex; gap: .45rem; }
.badge {
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .32rem .6rem;
  border-radius: 999px;
}
.badge-new { background: var(--berry); color: #FFF; }
.badge-sold { background: #E7DED3; color: #6B5646; }
.menu-card-name { font-size: 1.45rem; letter-spacing: -.01em; }
.menu-card-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--caramel-deep);
  margin-top: .15rem;
}
.menu-card-desc { font-size: .92rem; color: #5B4637; margin-top: .7rem; flex: 1; }
.menu-card-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .6rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--line);
}
.menu-card-price { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--choco-deep); }
.menu-card-note { font-size: .72rem; color: #8A7260; margin-left: .35rem; font-weight: 700; }
.menu-card-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--choco-deep);
  color: #FFF7E9;
  text-decoration: none;
  font-weight: 900;
  font-size: .82rem;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  transition: transform .25s var(--ease), background-color .2s;
}
.menu-card-cta:hover { background: var(--choco); transform: translateY(-2px); }
.menu-card.is-sold .menu-card-art { filter: grayscale(.95); opacity: .8; }
.menu-card.is-sold .menu-card-cta {
  pointer-events: none;
  background: #E7DED3;
  color: #8A7260;
  transform: none;
}
.menu-fallback {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  color: #6B5646;
}
.menu-note { text-align: center; color: #6B5646; margin-top: 2.2rem; font-size: .95rem; }

/* ---------- Order / Cash App ---------- */
.section-dark {
  background: radial-gradient(120% 120% at 50% 0%, #3A2213 0%, var(--choco-deep) 55%);
  color: #F7E9CE;
}
.section-dark h2 { color: #FFF7E9; }
.section-dark .section-sub { color: #D8C3A8; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}
.step {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(247, 233, 206, .14);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  backdrop-filter: blur(6px);
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--caramel);
  opacity: .9;
  display: block;
  margin-bottom: .6rem;
}
.step h3 { font-size: 1.3rem; color: #FFF7E9; margin-bottom: .5rem; }
.step p { font-size: .93rem; color: #D8C3A8; }

.cash-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-card);
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cash-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% -10%, rgba(0, 214, 50, .16), transparent 60%);
  pointer-events: none;
}
.cash-card-top { position: relative; }
.cash-card-label {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--caramel-deep);
  margin-bottom: .4rem;
}
.cash-card-cashtag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--choco-deep);
  letter-spacing: -.01em;
}
.cash-card-note { color: #6B5646; font-size: .95rem; margin-top: .3rem; }
.cash-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
  margin-top: 1.6rem;
  position: relative;
}
.cash-card-feedback { margin-top: .9rem; color: #0B5B1C; font-weight: 900; font-size: .9rem; position: relative; }
.cash-card-meta { position: relative; margin-top: .9rem; font-size: .85rem; color: #6B5646; }
.order-alt { text-align: center; color: #D8C3A8; font-size: .9rem; margin-top: 1.8rem; }
/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.5rem;
  align-items: center;
}
.about-copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -.02em; margin-bottom: 1.2rem; }
.about-copy p { color: #5B4637; margin-bottom: 1rem; max-width: 34rem; }
.about-points { margin: 1.4rem 0 1.6rem; display: grid; gap: .6rem; }
.about-points li {
  padding-left: 1.7rem;
  position: relative;
  font-weight: 800;
  color: var(--choco);
}
.about-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--caramel);
  font-size: .9rem;
  top: .15em;
}
.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--caramel-deep);
}
.about-art { position: relative; }
.about-photo {
  width: min(340px, 90%);
  margin-inline: auto;
  background: #fff;
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow-card);
  transform: rotate(3deg);
}
.about-photo img { width: 100%; height: auto; border-radius: 16px; }
.about-photo-caption {
  text-align: center;
  font-size: .8rem;
  color: #8A7260;
  margin-top: 1rem;
  transform: rotate(3deg);
  width: min(340px, 90%);
  margin-inline: auto;
}

/* ---------- Final CTA ---------- */
.final {
  background: linear-gradient(135deg, var(--butter), var(--blush));
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final h2 { font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -.02em; margin-bottom: .6rem; }
.final-sub { color: #6B5646; margin-bottom: 1.8rem; font-weight: 700; }
.final .eyebrow { justify-content: center; }
.final .eyebrow::before { display: none; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #D8C3A8; padding: 3.5rem 0 2rem; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.footer .brand-name { color: #F7E9CE; }
.footer-tagline { margin-top: .4rem; font-size: .88rem; color: #A98F74; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-nav a { color: #D8C3A8; text-decoration: none; font-weight: 700; font-size: .9rem; transition: color .2s; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: #FFF7E9; }
.footer-social { display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #D8C3A8;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
  background: rgba(255, 255, 255, .06);
  padding: .6rem 1rem;
  border-radius: 999px;
  transition: background .2s, color .2s, transform .2s;
}
.footer-link:hover { background: rgba(255, 255, 255, .12); color: #FFF7E9; transform: translateY(-2px); }
.footer-legal { text-align: center; font-size: .8rem; color: #8A7260; }
/* ---------- Scroll reveal (JS adds .js to <html>) ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: transform, opacity;
}
.js [data-reveal="left"] { transform: translateX(-30px); }
.js [data-reveal="right"] { transform: translateX(30px); }
.js [data-reveal].is-in { opacity: 1; transform: translateX(0) translateY(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js [data-reveal], .js [data-reveal].is-in { opacity: 1; transform: none; }
  .marquee-inner { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-art { max-width: 340px; margin-inline: auto; width: 100%; }
  .menu-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-facts { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .menu-grid, .steps { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; width: 100%; }
  .float-cookie-1 { width: 62px; }
  .float-cookie-2 { width: 50px; }
  .float-cookie-3 { display: none; }
  .hero-cookie-main { width: min(280px, 80%); }
}

@media (max-width: 420px) {
  .container { width: min(1120px, 100% - 1.6rem); }
  .brand-name { font-size: 1.2rem; }
}