/* Jason's Donuts Hypermodern Static Site
   Edit the order links in index.html or the ORDER_URL variable in script.js.
*/

:root {
  --ink: #1b100c;
  --ink-soft: #3d241a;
  --chocolate: #4f271b;
  --cocoa: #7a4129;
  --cream: #fff6ec;
  --cream-2: #ffe7c7;
  --paper: #fffdf8;
  --pink: #ff4fa3;
  --pink-2: #ff87c5;
  --raspberry: #c7155b;
  --blue: #75e9f2;
  --yellow: #ffd166;
  --green: #72e27b;
  --muted: #84685b;
  --line: rgba(54, 27, 18, .14);
  --glass: rgba(255, 252, 245, .74);
  --shadow: 0 30px 90px rgba(41, 19, 12, .25);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 7%, rgba(255, 79, 163, .20), transparent 28rem),
    radial-gradient(circle at 92% 2%, rgba(117, 233, 242, .22), transparent 26rem),
    radial-gradient(circle at 65% 45%, rgba(255, 209, 102, .18), transparent 34rem),
    linear-gradient(180deg, var(--cream) 0%, #fffaf3 48%, #fff2e3 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  mix-blend-mode: multiply;
  z-index: 0;
  background-image:
    radial-gradient(circle at 12% 23%, rgba(255, 255, 255, .6) 0 1px, transparent 1.2px),
    radial-gradient(circle at 76% 43%, rgba(60, 30, 20, .12) 0 1px, transparent 1.2px);
  background-size: 17px 17px, 23px 23px;
}
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 79, 163, .16), transparent 66%);
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}

.topbar {
  position: fixed;
  inset: 14px 18px auto;
  z-index: 100;
  max-width: calc(var(--max) + 40px);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: .5rem .65rem .5rem .9rem;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  background: rgba(255, 251, 243, .72);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 18px 58px rgba(45, 20, 12, .15);
}

.brand-lockup {
  display: flex;
  align-items: center;
  width: clamp(112px, 10vw, 155px);
}
.brand-lockup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 10px rgba(27, 16, 12, .15));
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}
.desktop-nav a {
  padding: .72rem .95rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 900;
  transition: background .18s ease, transform .18s ease;
}
.desktop-nav a:hover {
  background: rgba(255, 79, 163, .12);
  transform: translateY(-1px);
}

.nav-order {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 50px;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff8ef;
  font-weight: 950;
  letter-spacing: -.02em;
  box-shadow: 0 12px 30px rgba(27, 16, 12, .22);
}
.nav-order-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(255, 79, 163, .18);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff8ef;
}

.mobile-menu {
  position: fixed;
  inset: 100px 18px auto;
  z-index: 90;
  display: none;
  padding: .85rem;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 28px;
  background: rgba(255, 251, 243, .92);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}
.mobile-menu a {
  display: block;
  padding: 1rem;
  border-radius: 18px;
  font-weight: 950;
}
.mobile-menu a:hover { background: rgba(255,79,163,.12); }
.mobile-menu.is-open { display: block; }

.section-frame,
.section {
  position: relative;
  z-index: 2;
}
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 1.25rem;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom-left-radius: 46px;
  border-bottom-right-radius: 46px;
  background: var(--ink);
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/donut-wall-display.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 65% 35%, rgba(255,79,163,.25), transparent 24rem),
    radial-gradient(circle at 85% 25%, rgba(117,233,242,.20), transparent 20rem),
    linear-gradient(90deg, rgba(27,16,12,.94) 0%, rgba(27,16,12,.76) 37%, rgba(27,16,12,.22) 100%),
    linear-gradient(180deg, rgba(27,16,12,.14), rgba(27,16,12,.74));
}
.hero-inner {
  width: 100%;
  max-width: var(--max);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(6.7rem, 9vw, 8.4rem) 1.25rem clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(430px, .96fr) minmax(380px, 1.04fr);
  gap: clamp(1.2rem, 4vw, 4.2rem);
  align-items: center;
}
.hero-copy {
  position: relative;
  max-width: 720px;
  padding: clamp(1.1rem, 2.3vw, 1.75rem);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,79,163,.18), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(255,209,102,.13), transparent 34%),
    rgba(27,16,12,.22);
  backdrop-filter: blur(10px);
  box-shadow: 0 26px 80px rgba(0,0,0,.18);
}
.hero-copy::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(27,16,12,.35) 0 25%, transparent 26%),
    conic-gradient(from 120deg, var(--pink), var(--yellow), var(--blue), var(--pink));
  opacity: .18;
  pointer-events: none;
}
.hero-utility-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  max-width: 680px;
  margin-top: 1rem;
}
.hero-utility-row span {
  padding: .52rem .65rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,246,236,.78);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.slogan-chip {
  display: inline-flex;
  margin-top: .72rem;
  padding: .72rem .9rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff8ef;
  background:
    linear-gradient(135deg, rgba(255,79,163,.24), rgba(255,209,102,.13)),
    rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  font-size: .92rem;
  font-weight: 950;
  letter-spacing: -.02em;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .75rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff0d8;
  backdrop-filter: blur(18px);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(114,226,123,.15);
}
.hero h1 {
  margin: .9rem 0 .85rem;
  max-width: 740px;
  color: #fff9f0;
  font-size: clamp(3.05rem, 6.6vw, 6.75rem);
  line-height: .87;
  letter-spacing: -.088em;
  text-wrap: balance;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(110deg, var(--pink-2), var(--yellow) 52%, #fff6e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 246, 236, .78);
  font-size: clamp(.98rem, 1.25vw, 1.12rem);
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1rem;
}

.hero-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  max-width: 680px;
  margin-top: 1rem;
}
.support-card {
  position: relative;
  overflow: hidden;
  padding: .95rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}
.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%, rgba(255,255,255,.18), transparent 42%);
  pointer-events: none;
}
.support-card-hot {
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 209, 102, .20), transparent 44%),
    linear-gradient(135deg, rgba(255,79,163,.30), rgba(255,255,255,.09));
}
.support-card span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--yellow);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.support-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: .35rem;
  color: #fff8ef;
  font-size: 1.12rem;
  line-height: 1;
  letter-spacing: -.04em;
}
.support-card p {
  position: relative;
  z-index: 1;
  margin-top: .42rem;
  color: rgba(255,246,236,.68);
  font-size: .9rem;
  line-height: 1.42;
}
.flavor-rail {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  max-width: 680px;
  margin-top: .85rem;
}
.flavor-rail span {
  padding: .52rem .68rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: rgba(255,246,236,.78);
  backdrop-filter: blur(16px);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 54px;
  padding: 0 1.2rem;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-hot {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--pink), var(--raspberry));
  box-shadow: 0 22px 50px rgba(199, 21, 91, .34);
}
.button-hot:hover { box-shadow: 0 28px 64px rgba(199, 21, 91, .42); }
.button-ghost {
  color: #fff8ef;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(20px);
}
.button-dark {
  color: #fff8ef;
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(27,16,12,.25);
}
.button.full { width: 100%; }

.hero-stats {
  margin-top: .85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  gap: .75rem;
}
.hero-stats div {
  padding: .95rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
}
.hero-stats strong {
  display: block;
  color: #fff8ef;
  font-size: 1.05rem;
  letter-spacing: -.04em;
}
.hero-stats span {
  display: block;
  margin-top: .15rem;
  color: rgba(255,246,236,.58);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  min-height: clamp(500px, 58vh, 620px);
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 34px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 88px rgba(0,0,0,.35);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-main {
  inset: 3% 0 7% 8%;
  transform: rotate(2deg);
}
.hero-card-small {
  width: 38%;
  aspect-ratio: 1;
  left: 0;
  bottom: 0;
  transform: rotate(-8deg);
  border-radius: 28px;
}
.logo-float {
  position: absolute;
  right: -6%;
  bottom: 0;
  width: min(44%, 280px);
  padding: 1rem;
  border-radius: 32px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 60px rgba(0,0,0,.18);
  transform: rotate(-4deg);
}
.logo-float img { width: 100%; filter: drop-shadow(0 8px 8px rgba(27,16,12,.14)); }
.photo-chip {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  color: #fff8ef;
  background: rgba(27,16,12,.55);
  backdrop-filter: blur(18px);
  font-weight: 950;
  text-align: center;
}

.marquee {
  position: relative;
  z-index: 4;
  width: 100%;
  overflow: hidden;
  padding: .85rem 0;
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(255,79,163,.96);
  color: #fff8ef;
}
.marquee div {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .18em;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-head {
  display: grid;
  grid-template-columns: .75fr 1.3fr .95fr;
  gap: 1.4rem;
  align-items: end;
  margin-bottom: 1.35rem;
}
.section-head.compact {
  grid-template-columns: 1fr;
  max-width: 760px;
}
.kicker {
  margin: 0;
  color: var(--raspberry);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-head h2,
.story-copy h2,
.order-bridge h2,
.visit-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 4.7vw, 5.2rem);
  line-height: .9;
  letter-spacing: -.085em;
  text-wrap: balance;
}
.section-head p:last-child,
.story-copy p,
.order-bridge p,
.visit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(320px, auto);
  gap: 1rem;
}
.product-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(54,27,18,.11);
  isolation: isolate;
}
.product-card.big { grid-column: span 2; grid-row: span 2; }
.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.product-card:hover img { transform: scale(1.055); }
.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 20%, rgba(27,16,12,.83));
}
.product-content {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 2;
  color: #fff8ef;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: rgba(27,16,12,.48);
  backdrop-filter: blur(16px);
}
.product-content span {
  color: var(--yellow);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.product-content h3 {
  margin: .35rem 0 .22rem;
  font-size: clamp(1.2rem, 2.4vw, 2.1rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.product-content p {
  margin: 0;
  color: rgba(255,246,236,.76);
  line-height: 1.45;
}

.order-bridge {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.order-bridge-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 0%, rgba(255,79,163,.22), transparent 23rem),
    radial-gradient(circle at 92% 20%, rgba(117,233,242,.25), transparent 20rem),
    var(--paper);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: 0 24px 90px rgba(54,27,18,.12);
}
.order-bridge p { margin-top: 1rem; max-width: 680px; }
.order-panel {
  padding: 1rem;
  border-radius: 32px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
}
.order-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.order-panel-top img { width: 150px; }
.order-panel-top span {
  padding: .55rem .7rem;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.order-panel p {
  margin: .85rem .25rem 0;
  color: var(--muted);
  font-size: .9rem;
}
code {
  padding: .16rem .35rem;
  border-radius: 8px;
  background: rgba(27,16,12,.07);
  color: var(--ink);
}

.story-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(1.2rem, 4vw, 4rem);
  align-items: center;
}
.story-image-stack {
  position: relative;
  min-height: 600px;
}
.story-main-img,
.story-small-img {
  position: absolute;
  object-fit: cover;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
}
.story-main-img {
  inset: 0 8% 12% 0;
  width: 92%;
  height: 88%;
}
.story-small-img {
  width: 43%;
  aspect-ratio: .82;
  right: 0;
  bottom: 0;
  transform: rotate(5deg);
}
.story-copy {
  padding: clamp(1rem, 3vw, 2rem);
}
.story-copy h2 { margin-top: .55rem; }
.story-copy p { margin-top: 1.1rem; font-size: 1.04rem; }
.quote-card {
  margin-top: 1.4rem;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
  background: var(--ink);
  color: #fff8ef;
  font-size: 1.2rem;
  line-height: 1.34;
  font-weight: 950;
  letter-spacing: -.03em;
  box-shadow: 0 22px 52px rgba(27,16,12,.18);
}

.bento-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 290px;
  gap: 1rem;
}
.bento {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.7);
  background: var(--paper);
  box-shadow: 0 20px 70px rgba(54,27,18,.12);
}
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.bento:hover img { transform: scale(1.04); }
.bento figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .7rem .85rem;
  border-radius: 999px;
  color: #fff8ef;
  background: rgba(27,16,12,.62);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px);
  font-weight: 950;
  font-size: .9rem;
}

.visit-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
  align-items: stretch;
  padding: clamp(1rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: #fff8ef;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visit-card h2 { color: #fff8ef; margin-top: .55rem; }
.visit-card p { color: rgba(255,246,236,.68); margin-top: 1rem; max-width: 650px; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: 1.4rem;
}
.info-grid div {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}
.info-grid span {
  display: block;
  color: var(--yellow);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.info-grid strong {
  display: block;
  margin-top: .35rem;
  color: #fff8ef;
  line-height: 1.4;
}
.visit-photo {
  position: relative;
  min-height: 410px;
  border-radius: 32px;
  overflow: hidden;
}
.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem 7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: var(--muted);
}
.site-footer img { width: 170px; }
.site-footer p { margin: .3rem 0 0; }
.site-footer nav {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer a { font-weight: 950; color: var(--ink); }

.sticky-order {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: calc(100% - 2rem);
  padding: .85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--raspberry));
  color: #fff8ef;
  box-shadow: 0 20px 50px rgba(199,21,91,.35);
}
.sticky-order span:first-child { font-weight: 950; }
.sticky-order span:last-child { opacity: .72; font-size: .82rem; font-weight: 800; }

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .topbar { grid-template-columns: auto 1fr auto auto; }
  .hero-inner,
  .story-grid,
  .order-bridge-inner,
  .visit-card {
    grid-template-columns: 1fr;
  }
  .hero-stage { min-height: 520px; }
  .hero-support { max-width: 100%; }
  .section-head { grid-template-columns: 1fr; align-items: start; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-gallery { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .cursor-glow { display: none; }
  .topbar {
    inset: 10px 10px auto;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: .45rem .5rem .45rem .75rem;
  }
  .brand-lockup { width: 112px; }
  .nav-order { display: none; }
  .hero {
    min-height: auto;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }
  .hero-inner {
    padding-top: 7.7rem;
    padding-bottom: 2rem;
  }
  .hero-copy {
    padding: .95rem;
    border-radius: 26px;
    background: rgba(27,16,12,.18);
  }
  .hero-copy::after { display: none; }
  .hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.9rem);
    line-height: .9;
  }
  .hero-utility-row span {
    font-size: .62rem;
    padding: .42rem .5rem;
  }
  .slogan-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: .84rem;
    border-radius: 20px;
  }
  .hero-actions { display: grid; }
  .hero-support {
    grid-template-columns: 1fr;
    margin-top: .9rem;
  }
  .support-card {
    padding: .85rem;
    border-radius: 20px;
  }
  .support-card p {
    font-size: .86rem;
  }
  .flavor-rail {
    gap: .36rem;
  }
  .flavor-rail span {
    padding: .46rem .58rem;
    font-size: .66rem;
  }
  .button { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stage { min-height: 430px; }
  .hero-card-main { inset: 0 0 14% 0; }
  .hero-card-small { width: 44%; }
  .logo-float { width: 42%; right: 0; }
  .section { padding: 4.6rem 1rem; }
  .section-head h2,
  .story-copy h2,
  .order-bridge h2,
  .visit-card h2 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }
  .product-grid,
  .bento-gallery,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .product-card.big,
  .bento-wide,
  .bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .product-card { min-height: 390px; }
  .story-image-stack { min-height: 470px; }
  .story-main-img { inset: 0 0 14% 0; width: 100%; height: 86%; }
  .story-small-img { width: 48%; }
  .bento-gallery { grid-auto-rows: 320px; }
  .visit-photo { min-height: 360px; }
  .site-footer { display: block; padding-bottom: 6rem; }
  .site-footer nav { justify-content: flex-start; margin-top: 1rem; }
  .sticky-order { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .cursor-glow { display: none; }
}


@media (min-width: 1000px) and (max-height: 900px) {
  .hero-inner {
    padding-top: 6.3rem;
    padding-bottom: 2rem;
  }
  .hero-copy {
    padding: 1rem 1.1rem;
    border-radius: 28px;
  }
  .hero h1 {
    font-size: clamp(3rem, 5.4vw, 5.7rem);
    line-height: .88;
  }
  .hero p {
    font-size: .98rem;
    line-height: 1.48;
  }
  .hero-support {
    margin-top: .7rem;
  }
  .support-card {
    padding: .78rem;
    border-radius: 20px;
  }
  .support-card p {
    font-size: .78rem;
    line-height: 1.32;
  }
  .hero-stats {
    display: none;
  }
  .flavor-rail {
    display: none;
  }
  .hero-stage {
    min-height: 500px;
  }
}

/* Mobile nav fix:
   The full desktop glass pill was covering content inside mobile/in-app browsers.
   On phones, the header becomes a small floating menu button instead.
*/
@media (max-width: 720px) {
  .topbar {
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    left: 10px;
    right: auto;
    bottom: auto;
    width: auto;
    min-height: 0;
    padding: 0;
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transform: none;
    margin: 0;
  }

  .topbar .brand-lockup,
  .topbar .desktop-nav,
  .topbar .nav-order {
    display: none !important;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(27, 16, 12, .92);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 14px 34px rgba(27,16,12,.32);
    backdrop-filter: blur(18px);
  }

  .menu-toggle span {
    width: 18px;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
    transition: transform .18s ease, opacity .18s ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    inset: calc(env(safe-area-inset-top, 0px) + 68px) 10px auto;
    border-radius: 24px;
  }

  .product-section {
    scroll-margin-top: 22px;
  }
}


.social-updates {
  padding-top: 0;
}
.social-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.2rem, 4vw, 3rem);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(255,79,163,.22), transparent 26rem),
    radial-gradient(circle at 92% 12%, rgba(117,233,242,.20), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,246,236,.70));
  box-shadow: 0 24px 90px rgba(54,27,18,.12);
}
.social-card h2 {
  margin: .55rem 0 0;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.2vw, 4.75rem);
  line-height: .9;
  letter-spacing: -.085em;
  text-wrap: balance;
}
.social-card p {
  max-width: 680px;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}
.social-card p strong {
  color: var(--ink);
  font-weight: 950;
}
.social-actions {
  display: grid;
  gap: .75rem;
}
.social-button {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: .15rem;
  min-height: 108px;
  padding: 1rem 1.1rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.65);
  color: #fff8ef;
  background: var(--ink);
  box-shadow: 0 22px 60px rgba(27,16,12,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 70px rgba(27,16,12,.24);
}
.social-button::after {
  content: "↗";
  position: absolute;
  top: .85rem;
  right: 1rem;
  font-size: 1.4rem;
  font-weight: 950;
  opacity: .9;
}
.social-button span {
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .82;
}
.social-button strong {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.social-button.facebook {
  background:
    radial-gradient(circle at 0% 0%, rgba(117,233,242,.30), transparent 52%),
    linear-gradient(135deg, #1b100c, #2f211a);
}
.social-button.instagram {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,209,102,.30), transparent 48%),
    linear-gradient(135deg, var(--pink), var(--raspberry));
}


@media (max-width: 720px) {
  .social-updates {
    padding-top: 0;
  }
  .social-card {
    grid-template-columns: 1fr;
    padding: 1rem;
    border-radius: 30px;
  }
  .social-card h2 {
    font-size: clamp(2.25rem, 12vw, 3.55rem);
  }
  .social-actions {
    gap: .65rem;
  }
  .social-button {
    min-height: 92px;
    border-radius: 24px;
  }
}

/* Mobile flow cleanup v2:
   - Removes the top mobile gap
   - Keeps the mobile hero lean
   - Prevents the sticky order bar from covering the hero
   - Makes social updates appear as the first post-hero section
*/
@media (max-width: 720px) {
  .hero-inner {
    min-height: auto !important;
    padding-top: calc(env(safe-area-inset-top, 0px) + 4.15rem) !important;
    padding-bottom: 1.4rem !important;
    gap: 1rem !important;
  }

  .hero-copy {
    padding: .95rem !important;
    border-radius: 26px !important;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.7rem) !important;
    line-height: .9 !important;
    margin-bottom: .75rem !important;
  }

  .hero p {
    font-size: .98rem !important;
    line-height: 1.5 !important;
  }

  .hero-actions {
    margin-top: .95rem !important;
  }

  .hero-support,
  .hero-stats,
  .flavor-rail {
    display: none !important;
  }

  .slogan-chip {
    margin-top: .65rem !important;
  }

  .hero-stage {
    min-height: 360px !important;
    margin-top: .75rem !important;
  }

  .social-updates {
    padding-top: 3.2rem !important;
    padding-bottom: 2.6rem !important;
  }

  .order-bridge {
    padding-top: 0 !important;
    padding-bottom: 2.6rem !important;
  }

  .product-section {
    padding-top: 3.8rem !important;
  }

  .sticky-order {
    display: none !important;
  }

  body.show-sticky-order .sticky-order {
    display: flex !important;
  }
}

@media (min-width: 721px) {
  .hero-support,
  .hero-stats,
  .flavor-rail {
    display: none !important;
  }
}

/* Follow section spacing fix:
   Adds breathing room between the hero/marquee and Daily Updates section.
*/
.social-updates {
  padding-top: clamp(3.2rem, 5.5vw, 5.5rem) !important;
}

@media (max-width: 720px) {
  .social-updates {
    padding-top: 2.35rem !important;
  }
}
