/* ==========================================================================
   Auggies Kitchen Barossa — preview build by JB Digital
   Art direction: modern letterpress market-kitchen.
   Warm paper + espresso ink + one roast-tomato accent.
   Fraunces (soft) display / Karla body / DM Mono utility.
   ========================================================================== */

:root {
  /* ---- Auggie's Kitchen brand palette ---- */
  --fire: #C22B2F;        /* hero / foundation */
  --fire-deep: #9E2126;
  --lime: #D7DB22;        /* ready-made meals accent */
  --lime-deep: #AEB215;
  --lime-soft: #F3F4D8;
  --pink: #FFA3D3;        /* sweet treats accent */
  --pink-deep: #F274B8;
  --pink-soft: #FFEAF5;

  --paper: #FFF7F1;
  --paper-alt: #FCEDE3;
  --ink: #2A1713;
  --ink-muted: rgba(42, 23, 19, 0.66);
  --ink-faint: rgba(42, 23, 19, 0.40);
  --line: rgba(42, 23, 19, 0.14);

  --dark: #241310;
  --dark-alt: #1B0D0A;
  --cream: #FFF4EC;
  --cream-muted: rgba(255, 244, 236, 0.66);
  --line-cream: rgba(255, 244, 236, 0.18);

  --accent: #C22B2F;
  --accent-deep: #9E2126;

  --display: "Fredoka", "Trebuchet MS", system-ui, sans-serif;
  --body: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-pad: clamp(5rem, 12vh, 9.5rem);
}

/* ---------- Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

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

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--cream); }

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

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

.section { padding-block: var(--section-pad); }

.section-alt { background: var(--paper-alt); }

.section-dark {
  background: var(--dark);
  color: var(--cream);
  padding-block: var(--section-pad);
}

.skip-link {
  position: fixed;
  top: 0.75rem; left: 0.75rem;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.8125rem;
  padding: 0.6em 1.1em;
  border-radius: 999px;
  transform: translateY(-300%);
  transition: transform 0.3s var(--ease);
}
.skip-link:focus-visible { transform: none; }

/* ---------- Grain & progress ---------- */

.grain {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  z-index: 160;
}

/* ---------- Typography helpers ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 550;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  max-width: 18ch;
}

h2 em, h3 em, .hero-title em, .contact-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.section-dark h2 em { color: var(--accent); }

p { max-width: 62ch; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  margin-bottom: 1.4rem;
}

.eyebrow-light { color: var(--accent); }

.section-head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

.section-lede {
  margin-top: 1.4rem;
  color: var(--ink-muted);
  max-width: 52ch;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  overflow: hidden;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--cream);
  z-index: 0;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent-deep);
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease);
  border-radius: inherit;
}

.btn-primary:hover::before { transform: none; }

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

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

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.1rem var(--gutter);
  transition: transform 0.45s var(--ease), background 0.35s var(--ease),
              box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(250, 244, 232, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.75rem;
}

.site-header.hidden { transform: translateY(-110%); }

.brand { display: flex; flex-direction: column; line-height: 1; gap: 0.28rem; }

.brand-word {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand-word em { font-style: italic; font-weight: 500; color: var(--accent); }

.brand-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--ink-muted);
}

.site-nav {
  display: flex;
  gap: 1.9rem;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-muted);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  padding-bottom: 3px;
  transition: color 0.25s var(--ease), background-size 0.35s var(--ease);
}

.site-nav a:hover { color: var(--ink); background-size: 100% 1px; }

.header-cta {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.6em 1.3em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.header-cta:hover { background: var(--ink); color: var(--paper); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform 0.35s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}

body.nav-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
body.nav-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
body.nav-open .nav-toggle span { background: var(--cream); }

/* ---------- Mobile nav overlay ---------- */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: var(--dark);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s var(--ease), visibility 0s 0.45s;
}

body.nav-open .mobile-nav {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.mobile-nav nav { display: flex; flex-direction: column; gap: 0.4rem; }

.mobile-nav nav a {
  font-family: var(--display);
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), color 0.3s var(--ease);
  transition-delay: 0s;
}

body.nav-open .mobile-nav nav a {
  opacity: 1;
  transform: none;
  transition-delay: calc(0.08s + var(--i) * 0.07s);
}

.mobile-nav nav a:hover { color: var(--accent); }

.mobile-nav-foot {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.mobile-nav-foot a:hover { color: var(--accent); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 16vh, 10rem) 0 clamp(3.5rem, 8vh, 5rem);
  overflow: clip;
}

.hero-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-eyebrow { margin-bottom: 2rem; }

.hero-title {
  font-size: clamp(2.7rem, 8.5vw, 7.6rem);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}

.hero-title .line { display: block; overflow: hidden; padding-block: 0.04em; }

.hero-title .line-inner {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.9s var(--ease);
}

body.loaded .hero-title .line:nth-child(1) .line-inner { transform: none; transition-delay: 0.1s; }
body.loaded .hero-title .line:nth-child(2) .line-inner { transform: none; transition-delay: 0.2s; }
body.loaded .hero-title .line:nth-child(3) .line-inner { transform: none; transition-delay: 0.3s; }

.hero-sub, .hero-meta, .hero-eyebrow {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

body.loaded .hero-eyebrow { opacity: 1; transform: none; transition-delay: 0.05s; }
body.loaded .hero-sub { opacity: 1; transform: none; transition-delay: 0.55s; }
body.loaded .hero-meta { opacity: 1; transform: none; transition-delay: 0.7s; }

.hero-sub p {
  max-width: 46ch;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.hero-meta {
  margin-top: clamp(2.2rem, 6vh, 3.5rem);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
}

/* Hero visual collage */

.hero-visual {
  position: relative;
  min-height: clamp(20rem, 46vw, 34rem);
  opacity: 0;
  transform: translateY(20px) ;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

body.loaded .hero-visual { opacity: 1; transform: none; transition-delay: 0.45s; }

.hero-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(closest-side, rgba(216, 72, 28, 0.13), transparent 70%);
  filter: blur(4px);
}

.hero-slot-wrap {
  position: absolute;
  top: 4%;
  right: 2%;
  width: min(78%, 24rem);
}

.photo-slot.slot-hero {
  aspect-ratio: 4 / 5;
  transform: rotate(2.2deg);
  align-items: flex-start;
  justify-content: flex-end;
  text-align: right;
}

.hero-slot-wrap-b {
  position: absolute;
  bottom: 2%;
  left: 0;
  width: min(46%, 14rem);
}

.slot-hero-b {
  aspect-ratio: 1 / 1;
  transform: rotate(-3deg);
}

.stamp-wrap {
  position: absolute;
  top: -3%;
  left: 6%;
  width: clamp(7.5rem, 12vw, 10rem);
}

.stamp { animation: spin 42s linear infinite; }

@keyframes spin { to { transform: rotate(360deg); } }

.stamp-ring { fill: none; stroke: var(--ink); stroke-width: 1; opacity: 0.4; }

.stamp-text {
  font-family: var(--mono);
  font-size: 9.8px;
  letter-spacing: 2.4px;
  fill: var(--ink);
  opacity: 0.75;
}

.stamp-star line { stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; }

.slot-note {
  position: absolute;
  bottom: -2.4rem;
  right: 2%;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}

/* Photo slots — designed placeholders for future photography */

.photo-slot {
  position: relative;
  display: flex;
  align-items: flex-end;
  background:
    repeating-linear-gradient(-45deg, rgba(39, 26, 14, 0.045) 0 1px, transparent 1px 9px),
    linear-gradient(150deg, #F0E4CC, #E6D5B4);
  outline: 1px dashed var(--line);
  outline-offset: -10px;
  box-shadow: 0 24px 64px rgba(39, 26, 14, 0.12);
}

.slot-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  padding: 1.1rem 1.2rem;
}

/* Slots with real photography in them */

.photo-slot.has-photo {
  outline: none;
  overflow: clip;
}

.photo-slot.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scroll {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  width: 1px;
  height: 3.4rem;
  overflow: hidden;
  background: var(--line);
}

.hero-scroll span {
  display: block;
  width: 100%;
  height: 40%;
  background: var(--accent);
  animation: scrollcue 2s var(--ease) infinite;
}

@keyframes scrollcue {
  0% { transform: translateY(-110%); }
  60%, 100% { transform: translateY(280%); }
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  padding-block: 1.1rem;
  border-block: 1px solid rgba(39, 26, 14, 0.6);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-group {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-group i {
  font-style: normal;
  color: var(--accent);
  padding-inline: 0.55em;
}

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */

.service-list { border-top: 1px solid var(--line); }

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3.5rem);
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(0.5rem, 2vw, 1.5rem);
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease);
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-alt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
  z-index: -1;
}

.service-row:hover::before { transform: none; }

.service-num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(39, 26, 14, 0.14);
  transition: color 0.4s var(--ease);
  min-width: 1.6em;
}

.service-row:hover .service-num { color: var(--accent); }

.service-body h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
  margin-bottom: 0.55rem;
}

.service-body p {
  color: var(--ink-muted);
  max-width: 56ch;
  margin-bottom: 0.95rem;
}

.service-arrow {
  font-size: 1.6rem;
  color: var(--ink-faint);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.service-row:hover .service-arrow {
  transform: translateX(8px);
  color: var(--accent);
}

.services-note {
  margin-top: 2.4rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}

/* ---------- Stats ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line-cream);
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  color: var(--cream);
  display: block;
  margin-bottom: 0.8rem;
}

.stat-label {
  color: var(--cream-muted);
  font-size: 0.98rem;
  max-width: 24ch;
}

.stats-caption {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(246, 235, 216, 0.4);
}

/* ---------- Story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.story-copy { padding-top: clamp(0rem, 6vw, 5rem); }

.story-copy p + p { margin-top: 1.3rem; }

.story-copy p { color: var(--ink-muted); }

.story-copy p:first-child {
  color: var(--ink);
  font-size: 1.16rem;
}

.story-note { margin-top: 1.8rem; }

.story-values {
  list-style: none;
  margin-top: 2.2rem;
  display: grid;
  gap: 1.1rem;
  max-width: 46ch;
}

.story-values li {
  position: relative;
  padding-left: 1.9rem;
}

.story-values li::before {
  content: "\2733";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--accent);
  font-size: 0.95em;
  line-height: 1;
}

.story-values strong {
  display: block;
  font-family: var(--display);
  font-weight: 550;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.story-values span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.96rem;
  line-height: 1.5;
  margin-top: 0.1rem;
}

.story-next {
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.story-next strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  margin-bottom: 0.5rem;
}

.story-visual {
  position: relative;
  margin-top: clamp(3rem, 8vw, 5.5rem);
  display: grid;
  justify-items: end;
}

.story-photos {
  width: min(100%, 52rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
}

.slot-story-a {
  aspect-ratio: 4 / 5;
  transform: rotate(-1.6deg);
}

.slot-story-b {
  aspect-ratio: 4 / 5;
  transform: rotate(1.8deg);
  margin-top: clamp(1.6rem, 4vw, 3.2rem);
}

.ghost-asterisk {
  position: absolute;
  left: -1%;
  bottom: -12%;
  font-size: clamp(8rem, 18vw, 15rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(39, 26, 14, 0.18);
  pointer-events: none;
  user-select: none;
}

/* ---------- Service area ---------- */

.area {
  position: relative;
  background-image: radial-gradient(rgba(39, 26, 14, 0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  background-color: var(--paper-alt);
}

.town-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 54rem;
}

.town-list li {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55em 1.3em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.town-list li:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-3px);
}

.area-foot {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.area-foot p {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.area-map {
  margin-top: clamp(2.6rem, 6vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: clip;
  background: var(--paper);
  box-shadow: 0 24px 64px rgba(39, 26, 14, 0.12);
}

.area-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

.area-map figcaption {
  padding: 1.05rem 1.3rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

@media (max-width: 560px) {
  .area-map iframe { height: 320px; }
}

/* ---------- Follow ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.6rem);
  margin-bottom: clamp(2.6rem, 6vw, 4.2rem);
}

.gal { aspect-ratio: 1 / 1; }

.gal:nth-child(odd) { transform: rotate(-1.2deg); }
.gal:nth-child(even) { transform: rotate(1.4deg); }

.follow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.follow-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--paper);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}

.follow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(39, 26, 14, 0.1);
  border-color: rgba(39, 26, 14, 0.3);
}

.follow-net {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-deep);
}

.follow-handle {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 550;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
  overflow-wrap: anywhere;
}

.follow-card p {
  color: var(--ink-muted);
  font-size: 0.98rem;
  flex-grow: 1;
}

.follow-link {
  margin-top: 1.3rem;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  gap: 0.4em;
  align-items: center;
}

.follow-link span { transition: transform 0.3s var(--ease); display: inline-block; }

.follow-card:hover .follow-link span { transform: translate(3px, -3px); }

.follow-card:hover .follow-link { color: var(--accent-deep); }

.follow-card-accent { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.follow-card-accent .follow-net { color: var(--accent); }
.follow-card-accent p { color: var(--cream-muted); }
.follow-card-accent:hover { border-color: var(--dark); }
.follow-card-accent:hover .follow-link { color: var(--accent); }

/* ---------- Contact ---------- */

.contact { background: var(--dark-alt); }

.contact-title {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  max-width: none;
}

.contact-lede {
  margin-top: 1.6rem;
  color: var(--cream-muted);
  max-width: 52ch;
  font-size: 1.08rem;
}

.contact-phone {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 7.5vw, 5.6rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-block: clamp(2rem, 5vw, 3.2rem) clamp(2.4rem, 6vw, 4rem);
  color: var(--cream);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: 0 100%;
  padding-bottom: 0.08em;
  transition: color 0.35s var(--ease);
  font-feature-settings: "tnum";
}

.contact-phone:hover { color: var(--accent); }

.contact-details {
  border-top: 1px solid var(--line-cream);
  max-width: 46rem;
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(6.5rem, 9rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--line-cream);
  font-size: 0.98rem;
}

.contact-key {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(246, 235, 216, 0.45);
}

.contact-row a {
  width: fit-content;
  overflow-wrap: anywhere;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size 0.35s var(--ease), color 0.3s var(--ease);
}

.contact-row a:hover { background-size: 100% 1px; color: var(--accent); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) 0 2rem;
  border-top: 1px solid var(--line-cream);
}

.footer-wordmark {
  font-family: var(--display);
  font-size: clamp(3.4rem, 13vw, 11rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  max-width: none;
  color: var(--cream);
}

.footer-star { color: var(--accent); font-weight: 400; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding-block: 2.4rem;
  border-top: 1px solid var(--line-cream);
}

.footer-contact, .footer-nav, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-style: normal;
}

.footer-contact { font-family: var(--mono); font-size: 0.85rem; }
.footer-contact span { color: var(--cream-muted); }

.site-footer a {
  width: fit-content;
  color: var(--cream-muted);
  transition: color 0.3s var(--ease);
  overflow-wrap: anywhere;
}

.site-footer a:hover { color: var(--accent); }

.footer-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-cream);
  font-size: 0.8rem;
  color: rgba(246, 235, 216, 0.45);
}

.footer-foot p { max-width: none; }

.footer-credit a { color: var(--cream); }

/* ---------- Sticky mobile CTA ---------- */

.mobile-cta {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
  z-index: 130;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
  display: none;
}

.mobile-cta.visible { transform: none; }

.mobile-cta a {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 1em;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(29, 17, 7, 0.35);
}

.mobile-cta a:active { background: var(--accent-deep); }

/* ---------- Reveal system ---------- */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--d, 0ms);
}

html.js [data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .header-cta { margin-left: auto; }
  .nav-toggle { display: flex; margin-left: 0; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: clamp(21rem, 90vw, 30rem); max-width: 30rem; }

  .story-grid { grid-template-columns: 1fr; }
  .story-copy { padding-top: 0; }

  .follow-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .header-cta { display: none; }
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .stat-label { max-width: none; }

  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .service-row { grid-template-columns: auto minmax(0, 1fr); }
  .service-arrow { display: none; }

  .contact-row { grid-template-columns: 1fr; gap: 0.25rem; }

  .footer-grid { grid-template-columns: 1fr; }

  .mobile-cta { display: block; }

  body { padding-bottom: 0; }

  .hero-scroll { display: none; }

  .slot-note { position: static; margin-top: 1rem; text-align: right; }
  .hero-visual { margin-top: 0.5rem; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  html.js [data-reveal],
  .hero-sub, .hero-meta, .hero-eyebrow, .hero-visual,
  .hero-title .line-inner,
  .mobile-nav nav a {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .stamp, .marquee-track, .hero-scroll span {
    animation: none !important;
  }

  .parallax { transform: none !important; }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Added sections — Ready-made meals, Sweet treats, Markets + Facebook feed
   JB Digital preview update. Matches existing letterpress design language.
   ========================================================================== */

/* ---------- Shared order call-to-action ---------- */

.order-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: clamp(2.2rem, 5vw, 3.4rem);
  padding-top: clamp(1.8rem, 4vw, 2.6rem);
  border-top: 1px solid var(--line);
}

.pill-soon {
  flex-basis: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  margin-bottom: 0.3rem;
}

.pill-soon::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* ---------- Ready-made meals ---------- */

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.menu-list { border-top: 1px solid var(--line); }

.menu-item {
  padding: clamp(1.25rem, 3vw, 1.85rem) 0;
  border-bottom: 1px solid var(--line);
}

.menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.menu-item h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  font-weight: 550;
}

.menu-tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35em 0.85em;
  flex: none;
}

.menu-item p {
  margin-top: 0.55rem;
  color: var(--ink-muted);
  font-size: 1rem;
  max-width: 48ch;
}

.menu-special {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.menu-special a {
  color: var(--accent-deep);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 100%;
  padding-bottom: 2px;
}

.menu-visual {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.slot-menu-a { aspect-ratio: 1 / 1; transform: rotate(1.4deg); }
.slot-menu-b { aspect-ratio: 4 / 3; transform: rotate(-1.6deg); }

.menu-cap {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-faint);
  max-width: none;
}

/* ---------- Sweet treats ---------- */

.treat-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(2.6rem, 6vw, 4.5rem);
}

.slot-cookiebox {
  aspect-ratio: 4 / 5;
  transform: rotate(-1.8deg);
  max-width: 30rem;
}

.treat-feature-copy .eyebrow { margin-bottom: 1rem; }

.treat-feature-copy h3 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 550;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.treat-feature-copy p {
  color: var(--ink-muted);
  margin-bottom: 1.8rem;
}

.treat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.9rem);
}

.treat-card { display: flex; flex-direction: column; }

.treat-card .photo-slot {
  aspect-ratio: 4 / 5;
  margin-bottom: 1.1rem;
}

.treat-card:nth-child(odd) .photo-slot { transform: rotate(-1.2deg); }
.treat-card:nth-child(even) .photo-slot { transform: rotate(1.4deg); }

.treat-card h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  font-weight: 550;
  margin-bottom: 0.4rem;
}

.treat-card p {
  color: var(--ink-muted);
  font-size: 0.94rem;
}

/* ---------- Markets + Facebook feed ---------- */

.markets-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.markets-body p { color: var(--ink-muted); }
.markets-body p + p { margin-top: 1.2rem; }
.markets-body p:first-child {
  color: var(--ink);
  font-size: 1.12rem;
}

.markets-fb {
  justify-self: end;
  width: 100%;
  max-width: 380px;
}

.fb-embed {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: clip;
  box-shadow: 0 24px 64px rgba(39, 26, 14, 0.12);
}

.fb-embed-head {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
}

.fb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
  box-shadow: 0 0 0 0 rgba(216, 72, 28, 0.5);
  animation: fbpulse 2.4s var(--ease) infinite;
}

@keyframes fbpulse {
  0% { box-shadow: 0 0 0 0 rgba(216, 72, 28, 0.45); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(216, 72, 28, 0); }
}

.fb-embed-body {
  background: #fff;
  min-height: 320px;
}

.fb-embed-body iframe {
  display: block;
  width: 100%;
  border: 0;
}

.fb-cap {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-faint);
  max-width: 34ch;
}

/* ---------- Responsive: added sections ---------- */

@media (max-width: 960px) {
  .menu-grid { grid-template-columns: 1fr; }
  .treat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .markets-grid { grid-template-columns: 1fr; }
  .markets-fb { justify-self: start; max-width: 420px; margin-top: 0.5rem; }
  .slot-cookiebox { max-width: none; }
}

@media (max-width: 640px) {
  .treat-feature { grid-template-columns: 1fr; gap: 1.8rem; }
  .slot-cookiebox { max-width: 22rem; }
  .menu-item-head { flex-wrap: wrap; gap: 0.5rem; }
  .order-cta .btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .fb-dot { animation: none !important; }
  .slot-menu-a, .slot-menu-b,
  .slot-cookiebox,
  .treat-card .photo-slot { transform: none !important; }
}

/* ==========================================================================
   BRAND REBRAND — Auggie's Kitchen official identity
   Fire Red foundation · Lime Green = meals · Blush Pink = sweet treats
   Fredoka (rounded display) + Work Sans (body).
   Approximation of brand fonts "Soya Regular" + "Heal The Web A".
   ========================================================================== */

/* ---- Rounded display type: kill synthesized italics ---- */
h1, h2, h3 { font-weight: 600; letter-spacing: -0.01em; line-height: 1.04; }
h1 em, h2 em, h3 em,
.hero-title em, .contact-title em,
.brand-word em { font-style: normal; }
.service-num { font-style: normal; font-weight: 500; }
.marquee-group { font-weight: 500; text-transform: uppercase; }
.marquee-group i { color: var(--lime); }

/* ---- Header brand lockup + over-hero vs scrolled states ---- */
.brand { flex-direction: row; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 244, 236, 0.6);
  transition: box-shadow 0.35s var(--ease);
}
.brand-lockup { display: flex; flex-direction: column; gap: 0.22rem; line-height: 1; }
.brand-word { font-family: var(--display); font-weight: 600; font-size: 1.18rem; letter-spacing: 0.005em; color: var(--cream); }
.brand-tag { color: rgba(255, 244, 236, 0.72); }

.site-nav a { color: rgba(255, 244, 236, 0.82); background-image: linear-gradient(var(--cream), var(--cream)); }
.site-nav a:hover { color: #fff; }
.header-cta { color: var(--cream); border-color: rgba(255, 244, 236, 0.5); }
.header-cta:hover { background: var(--cream); color: var(--fire); border-color: var(--cream); }
.nav-toggle span { background: var(--cream); }

.site-header.scrolled { background: rgba(255, 247, 241, 0.86); box-shadow: 0 1px 0 var(--line); }
.site-header.scrolled .brand-mark { box-shadow: 0 0 0 2px rgba(42, 23, 19, 0.12); }
.site-header.scrolled .brand-word { color: var(--ink); }
.site-header.scrolled .brand-tag { color: var(--ink-muted); }
.site-header.scrolled .site-nav a { color: var(--ink-muted); background-image: linear-gradient(var(--fire), var(--fire)); }
.site-header.scrolled .site-nav a:hover { color: var(--ink); }
.site-header.scrolled .header-cta { color: var(--ink); border-color: var(--ink); }
.site-header.scrolled .header-cta:hover { background: var(--ink); color: var(--paper); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ---- HERO: bold Fire Red foundation ---- */
.hero { background: var(--fire); color: var(--cream); }
.hero-eyebrow { color: rgba(255, 244, 236, 0.85); }
.hero-title { color: var(--cream); font-weight: 600; font-size: clamp(2.6rem, 7vw, 6rem); letter-spacing: -0.015em; margin-bottom: clamp(1.6rem, 3.5vh, 2.4rem); }
.hero-title em { color: var(--pink); }
.hero-sub p { color: rgba(255, 244, 236, 0.92); }
.hero-meta { color: rgba(255, 244, 236, 0.66); }
.hero-glow { background: radial-gradient(closest-side, rgba(255, 163, 211, 0.30), transparent 72%); }

.hero .btn-primary { background: var(--cream); color: var(--fire); }
.hero .btn-primary::before { background: var(--pink); }
.hero .btn-primary:hover { color: var(--fire); }
.hero .btn-ghost { border-color: rgba(255, 244, 236, 0.55); color: var(--cream); }
.hero .btn-ghost:hover { background: var(--cream); color: var(--fire); border-color: var(--cream); }

.hero-scroll { background: rgba(255, 244, 236, 0.28); }
.hero-scroll span { background: var(--cream); }

.stamp-ring { stroke: var(--cream); opacity: 0.55; }
.stamp-text { fill: var(--cream); opacity: 0.9; }
.stamp-star line { stroke: var(--lime); }

.hero-sticker {
  position: absolute;
  bottom: 3%;
  right: 4%;
  width: min(50%, 15rem);
  height: auto;
  transform: rotate(-5deg);
  border: 5px solid var(--cream);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  z-index: 4;
}

/* ---- Section brand stickers (real wordmark assets) ---- */
.section-head { position: relative; }
.section-sticker {
  position: absolute;
  top: -0.5rem;
  right: 0;
  width: clamp(8.5rem, 15vw, 12rem);
  height: auto;
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(42, 23, 19, 0.16);
}
.sticker-lime { transform: rotate(3deg); }
.sticker-pink { transform: rotate(-3deg); }

/* ==== READY-MADE MEALS  →  LIME GREEN accent ==== */
#meals { background: linear-gradient(180deg, var(--lime-soft) 0%, #FBFBF0 55%, var(--paper) 100%); }
#meals h2 em {
  color: var(--ink);
  background: linear-gradient(var(--lime), var(--lime));
  background-repeat: no-repeat;
  background-size: 100% 0.3em;
  background-position: 0 82%;
  padding: 0 0.05em;
}
#meals .menu-tag { background: var(--lime); border-color: var(--lime); color: var(--ink); font-weight: 600; }
#meals .pill-soon { color: var(--ink-muted); }
#meals .pill-soon::before { background: var(--lime-deep); }
#meals .btn-primary { background: var(--lime); color: var(--ink); }
#meals .btn-primary::before { background: var(--lime-deep); }
#meals .btn-primary:hover { color: var(--ink); }
#meals .menu-special a { color: var(--fire-deep); background-image: linear-gradient(var(--lime-deep), var(--lime-deep)); }

/* ==== SWEET TREATS  →  BLUSH PINK accent ==== */
#treats { background: linear-gradient(180deg, var(--pink-soft) 0%, #FFF4F9 55%, var(--paper) 100%); }
#treats h2 em {
  color: var(--ink);
  background: linear-gradient(var(--pink), var(--pink));
  background-repeat: no-repeat;
  background-size: 100% 0.3em;
  background-position: 0 82%;
  padding: 0 0.05em;
}
#treats .pill-soon { color: var(--ink-muted); }
#treats .pill-soon::before { background: var(--pink-deep); }
#treats .btn-primary { background: var(--pink); color: var(--ink); }
#treats .btn-primary::before { background: var(--pink-deep); }
#treats .btn-primary:hover { color: var(--ink); }
#treats .treat-feature-copy .eyebrow { color: var(--pink-deep); }

/* ==== CONTACT  →  Fire Red closing block ==== */
.contact { background: var(--fire); }
.contact .eyebrow-light { color: rgba(255, 244, 236, 0.85); }
.contact-title em { color: var(--pink); }
.contact-phone {
  color: var(--cream);
  background-image: linear-gradient(var(--pink), var(--pink));
  background-size: 100% 4px;
}
.contact-phone:hover { color: var(--pink); }
.contact-details, .contact-row { border-color: var(--line-cream); }
.contact-key { color: rgba(255, 244, 236, 0.6); }
.contact-row a { background-image: linear-gradient(var(--pink), var(--pink)); }
.contact-row a:hover { color: var(--pink); }

/* ---- Footer flourish ---- */
.footer-star { color: var(--lime); }

/* ---- Responsive tidy for new brand elements ---- */
@media (max-width: 900px) {
  .section-sticker { display: none; }
}
@media (max-width: 700px) {
  .hero-sticker { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sticker, .sticker-lime, .sticker-pink { transform: none !important; }
}

/* CMS: optional per-meal price (hidden unless set in /admin) */
.menu-price {
  margin-top: 0.45rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-deep);
}

/* ---- Header "Order Now" button (nav CTA) ---- */
.header-order {
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0.65em 1.4em;
  background: var(--lime);
  color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.header-order:hover { background: var(--lime-deep); color: var(--ink); }
.site-header.scrolled .header-order { background: var(--fire); color: var(--cream); }
.site-header.scrolled .header-order:hover { background: var(--fire-deep); color: var(--cream); }

@media (max-width: 560px) {
  .header-order { margin-left: auto; }
}

/* ---- Mobile nav "Order now" button ---- */
.mobile-nav nav a.mobile-nav-order {
  margin-top: 1.4rem;
  align-self: flex-start;
  font-size: clamp(1.5rem, 6.5vw, 2.1rem);
  line-height: 1;
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.42em 1em 0.5em;
}
.mobile-nav nav a.mobile-nav-order:hover { background: var(--lime-deep); color: var(--ink); }

/* ---- Tiny screens: keep header brand + Order button from crowding ---- */
@media (max-width: 420px) {
  .site-header { gap: 1rem; }
  .header-order { font-size: 0.78rem; padding: 0.55em 1.05em; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-word { font-size: 1.02rem; }
}
