/* Get Stuffed landing page styles.
   Anton for display, Hanken Grotesk for body. Colours taken from the logo. */

:root {
  --red: #ee2341;
  --red-deep: #c4122e;
  --paper: #fcf6ec;
  --paper-2: #f6eddd;
  --ink: #201b18;
  --ink-soft: #5b524b;
  --gold: #e0932f;
  --line: #e7dcc8;

  --font-display: "Anton", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --wrap: 1080px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px rgba(32, 27, 24, 0.10);
  --shadow-btn: 0 6px 16px rgba(196, 18, 46, 0.28);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3 { margin: 0; line-height: 1.05; }

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -3.5rem;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 100;
  transition: top 0.15s ease;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-order {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-order:hover { background: var(--red-deep); }

.btn-lg { font-size: 1.1rem; padding: 1rem 1.7rem; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-block { width: 100%; }

/* on the red hero the order button is cream */
.hero .btn-order {
  background: var(--paper);
  color: var(--red-deep);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.hero .btn-order:hover { background: #fff; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 4px 18px rgba(32, 27, 24, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.6rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-bug { border-radius: 9px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.header-order { display: none; padding: 0.6rem 1.1rem; }
@media (min-width: 620px) { .header-order { display: inline-flex; } }

/* ---------- hero ---------- */
.hero {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding-block: clamp(2.2rem, 6vw, 4.5rem) clamp(2.6rem, 7vw, 5rem);
  position: relative;
}
.hero-inner { display: grid; justify-items: center; gap: 1.25rem; }
.hero-logo {
  width: clamp(210px, 46vw, 320px);
  height: auto;
  border-radius: 10px;
}
.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 10vw, 5.4rem);
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.hero-sub {
  max-width: 34ch;
  margin: 0;
  font-size: clamp(1.02rem, 3.4vw, 1.2rem);
  color: #ffe6ea;
  font-weight: 500;
}
.hero .btn-lg { margin-top: 0.25rem; }
.hero-facts {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffdbe1;
}
.hero-facts li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-facts li + li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 0.75rem;
  opacity: 0.6;
}

/* ---------- ribbon (signature) ---------- */
.ribbon {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-block: 3px solid var(--red);
  padding-block: 0.55rem;
}
.ribbon-track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  will-change: transform;
  animation: marquee 26s linear infinite;
}
.ribbon-track .dot { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- shared section bits ---------- */
.how, .menu { padding-block: clamp(3rem, 8vw, 5.5rem); }
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--red-deep);
  margin: 0 0 0.6rem;
}
.eyebrow-light { color: var(--gold); }
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 6vw, 3rem);
  letter-spacing: 0.01em;
  max-width: 16ch;
}
.section-lead {
  max-width: 52ch;
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- how it works ---------- */
.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
}
.steps li {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  position: relative;
}
.step-no {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem; height: 2.4rem;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
}
.steps h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- menu ---------- */
.menu { background: var(--paper-2); }
.menu-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.35rem 1.45rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px dashed var(--line);
  margin-bottom: 0.85rem;
}
.card-head h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.28rem;
  letter-spacing: 0.01em;
}
.card-time {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--gold);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}
.items { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.items li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.98rem;
}
.items li > span:first-child { color: var(--ink); }
.price { font-weight: 800; color: var(--red-deep); white-space: nowrap; }
.tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: #157a3f;
  border: 1.5px solid #157a3f;
  border-radius: 4px;
  padding: 0 0.25rem;
  margin-left: 0.25rem;
  vertical-align: middle;
}
.card-note {
  margin: 0.9rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.menu-cta { margin-top: 2rem; text-align: center; }

/* ---------- find us ---------- */
.find { background: var(--ink); color: var(--paper); padding-block: clamp(3rem, 8vw, 5rem); }
.find .section-title { color: #fff; }
.find-list { margin: 1.6rem 0 1.8rem; display: grid; gap: 1.1rem; max-width: 46ch; }
.find-list div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.find-list dt {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-size: 0.9rem;
  padding-top: 0.1rem;
}
.find-list dd { margin: 0; color: #efe6d8; }
.find .btn-ghost { color: var(--paper); border-color: var(--paper); }
.find .btn-ghost:hover { background: var(--paper); color: var(--ink); }

.find-inner { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .find-inner { grid-template-columns: 1fr auto; }
}

/* opening hours plaque */
.plaque {
  display: none;
  text-align: center;
  padding: 2.2rem 2.6rem;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  color: #fff;
  min-width: 300px;
}
@media (min-width: 900px) { .plaque { display: grid; justify-items: center; gap: 0.15rem; } }
.plaque-open {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-size: 1rem;
  padding-left: 0.28em;
}
.plaque-days {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
  color: #efe6d8;
}
.plaque-hours {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 3.1rem;
  line-height: 1;
  margin-top: 0.1rem;
}
.plaque-rule { width: 46px; height: 3px; background: var(--red); margin: 1rem 0 0.75rem; border-radius: 2px; }
.plaque-foot {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  color: #cdbfac;
}

/* ---------- footer ---------- */
.site-footer { background: var(--red-deep); color: #fff; padding-top: 2.4rem; }
.footer-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 820px) {
  .footer-inner { grid-template-columns: 1fr auto auto; }
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { border-radius: 9px; }
.footer-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  margin: 0;
}
.footer-tag { margin: 0; color: #ffd7dd; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; font-weight: 600; }
.footer-links a { text-decoration: none; color: #fff; }
.footer-links a:hover { text-decoration: underline; }
.footer-badge { color: #ffd7dd; font-weight: 700; display: inline-flex; align-items: center; gap: 0.45rem; }
.site-footer .btn-order { background: #fff; color: var(--red-deep); box-shadow: none; }
.site-footer .btn-order:hover { background: var(--paper); }
.footer-fine {
  margin-top: 2rem;
  padding-block: 1.1rem 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-fine p { margin: 0; font-size: 0.82rem; color: #ffcdd4; }

/* ---------- sticky mobile order bar ---------- */
.order-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}
@media (min-width: 620px) { .order-bar { display: none; } }
/* keep the mobile bar from covering the footer's last line */
@media (max-width: 619px) { body { padding-bottom: 4.5rem; } }

/* ---------- scroll reveal (progressive, no-JS safe) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ribbon-track { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
