/* ============================================================
   Charlie's Tacos — Phoenix Taco Truck
   Demo site for Incline Digital Marketing Agency
   Palette: charcoal/cream base + chili red, cactus green, golden yellow
   ============================================================ */

/* ---------- Custom properties ---------- */
:root {
  /* Brand */
  --red: #d6402c;
  --red-deep: #a82e1f;
  --green: #4a7c2f;
  --green-deep: #35601f;
  --yellow: #f4c430;
  --yellow-deep: #d8a83a;

  /* Base */
  --charcoal: #1c1a18;
  --charcoal-2: #26221e;
  --charcoal-3: #2f2a25;
  --cream: #fdf6e9;
  --cream-2: #f7eed9;
  --ink: #221f1c;
  --muted: #6f655a;
  --line: #e6dcc6;

  /* Typography */
  --font-display: "Fredoka", "Trebuchet MS", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(28, 26, 24, 0.08);
  --shadow-md: 0 14px 36px rgba(28, 26, 24, 0.14);
  --shadow-lg: 0 28px 60px rgba(28, 26, 24, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; font-weight: 700; letter-spacing: -0.01em; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1200;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.25rem);
}
.container--narrow { max-width: 780px; }

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--charcoal); }
.section-lead { color: var(--muted); margin-top: 0.9rem; font-size: 1.06rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(214, 64, 44, 0.1);
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}
.eyebrow--center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
              background 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lg { padding: 0.95rem 1.7rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(214, 64, 44, 0.32); }
.btn--primary:hover { background: var(--red-deep); box-shadow: 0 12px 26px rgba(214, 64, 44, 0.4); }

.btn--outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--cream); }

.btn--ghost { background: transparent; color: var(--charcoal); padding-inline: 0.9rem; }
.btn--ghost:hover { color: var(--red); }

.btn--dark { background: var(--charcoal); color: var(--cream); }
.btn--dark:hover { background: #000; }

.btn--light { background: var(--cream); color: var(--charcoal); }
.btn--light:hover { background: #fff; }

/* ============================================================
   Opening animation: tortilla flipping open
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, var(--charcoal-3), var(--charcoal) 70%);
  overflow: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}
.intro.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(244, 196, 48, 0.14), transparent 30%),
    radial-gradient(circle at 82% 30%, rgba(214, 64, 44, 0.14), transparent 32%),
    radial-gradient(circle at 70% 80%, rgba(74, 124, 47, 0.14), transparent 34%);
}

.intro__stage {
  position: relative;
  width: 230px;
  height: 230px;
  perspective: 900px;
}

.intro__tortilla {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform-origin: 50% 100%;
  animation: tortilla-flip 1.5s var(--ease) 0.25s forwards;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
}
.intro__tortilla svg { animation: tortilla-spin 1.6s var(--ease) 0.25s forwards; }

@keyframes tortilla-flip {
  0%   { transform: rotateX(0deg) scale(0.7); opacity: 0; }
  20%  { opacity: 1; }
  55%  { transform: rotateX(-15deg) scale(1.05); }
  100% { transform: rotateX(-105deg) translateY(-30px) scale(0.55); opacity: 0; }
}
@keyframes tortilla-spin {
  0%   { transform: rotate(-30deg); }
  100% { transform: rotate(8deg); }
}

.intro__reveal {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: scale(0.85);
  animation: reveal-pop 0.8s var(--ease) 1.05s forwards;
}
@keyframes reveal-pop {
  0%   { opacity: 0; transform: scale(0.7) translateY(14px); }
  60%  { opacity: 1; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}
.intro__kicker {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}
.intro__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 8vw, 3rem);
  color: var(--cream);
  line-height: 1.05;
}
.intro__word em { color: var(--red); font-style: normal; }
.intro__tag {
  margin-top: 0.5rem;
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.intro__skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(253, 246, 233, 0.1);
  color: var(--cream);
  border: 1px solid rgba(253, 246, 233, 0.3);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
}
.intro__skip:hover { background: rgba(253, 246, 233, 0.22); transform: translateY(-1px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(253, 246, 233, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.7rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand__mark { display: grid; place-items: center; }
.brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.brand__accent { color: var(--red); }

.nav__list { display: flex; gap: 1.5rem; }
.nav__list a {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink);
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.18s;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.22s var(--ease);
}
.nav__list a:hover { color: var(--red); }
.nav__list a:hover::after { width: 100%; }

.site-header__cta { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--charcoal);
  border-radius: 3px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 0.6rem clamp(1.1rem, 4vw, 2rem) 1.2rem;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.2rem; }
.mobile-nav a {
  display: block;
  padding: 0.8rem 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.btn { border: 2px solid transparent; margin-top: 0.6rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(900px 460px at 88% -8%, rgba(244, 196, 48, 0.22), transparent 60%),
    radial-gradient(720px 420px at -6% 16%, rgba(74, 124, 47, 0.16), transparent 60%),
    var(--cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.confetti {
  position: absolute;
  border-radius: 3px;
  opacity: 0.55;
  animation: float 7s ease-in-out infinite;
}
.confetti.c1 { top: 16%; left: 8%;  width: 16px; height: 16px; background: var(--red);    transform: rotate(20deg); }
.confetti.c2 { top: 70%; left: 14%; width: 12px; height: 12px; background: var(--green);  animation-delay: 1s; }
.confetti.c3 { top: 26%; left: 52%; width: 10px; height: 10px; background: var(--yellow); animation-delay: 2s; }
.confetti.c4 { top: 80%; left: 60%; width: 14px; height: 14px; background: var(--red);    animation-delay: 0.5s; transform: rotate(-15deg); }
.confetti.c5 { top: 12%; left: 80%; width: 12px; height: 12px; background: var(--green);  animation-delay: 1.6s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-18px) rotate(18deg); } }

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 7vw, 5.5rem);
  position: relative;
  z-index: 1;
}
.hero__copy h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  color: var(--charcoal);
  margin-bottom: 1.1rem;
}
.hero__copy h1 .hl {
  background: linear-gradient(120deg, var(--red), var(--yellow-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--red);
}
.hero__sub {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.2rem; }
.trust-line {
  font-size: 0.95rem;
  color: var(--green-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-line::before { content: "●"; color: var(--green); font-size: 0.7rem; }

/* hero art */
.hero__art { position: relative; }
.taco-illustration {
  background: linear-gradient(150deg, #fff, var(--cream-2));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.art-badge {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.art-badge--red { background: var(--red); top: 6%; right: -4%; transform: rotate(6deg); }
.art-badge--green { background: var(--green); bottom: 4%; left: -6%; transform: rotate(-5deg); }

/* ============================================================
   Trust bar
   ============================================================ */
.trust-bar {
  background: var(--charcoal);
  color: var(--cream);
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 1.4rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  font-weight: 500;
  font-size: 0.95rem;
}
.trust-item svg { color: var(--yellow); flex: 0 0 auto; }

/* ============================================================
   Menu
   ============================================================ */
.menu { background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.menu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(var(--red), var(--yellow));
  opacity: 0;
  transition: opacity 0.22s;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.menu-card:hover::before { opacity: 1; }
.menu-card--veg { border-color: rgba(74, 124, 47, 0.4); }

.menu-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--cream-2);
  border-radius: 14px;
  margin-bottom: 0.9rem;
}
.menu-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}
.menu-card__head h3 { font-size: 1.22rem; color: var(--charcoal); }
.price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 1.1rem;
  white-space: nowrap;
}
.menu-card p { color: var(--muted); font-size: 0.97rem; }
.tag-veg {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(74, 124, 47, 0.14);
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 0.35rem;
}
.menu-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.menu-note a { color: var(--red); font-weight: 600; }
.menu-note a:hover { text-decoration: underline; }

/* ============================================================
   Why us
   ============================================================ */
.why { background: var(--cream-2); }
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(214, 64, 44, 0.1);
  color: var(--red);
  margin-bottom: 1rem;
}
.feature:nth-child(2n) .feature__icon { background: rgba(74, 124, 47, 0.12); color: var(--green-deep); }
.feature:nth-child(3n) .feature__icon { background: rgba(244, 196, 48, 0.18); color: var(--yellow-deep); }
.feature h3 { font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.4rem; }
.feature p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   Showcase
   ============================================================ */
.showcase { background: var(--cream); }
.showcase__art {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--charcoal);
}
.schedule {
  max-width: 760px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.schedule li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.schedule .day {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 0.95rem;
}
.schedule .loc { color: var(--muted); font-size: 0.95rem; }
.schedule-note {
  text-align: center;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.schedule-note a { color: var(--green-deep); font-weight: 600; }
.schedule-note a:hover { text-decoration: underline; }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: var(--charcoal); color: var(--cream); }
.reviews .section-head h2 { color: var(--cream); }
.reviews .section-lead { color: rgba(253, 246, 233, 0.7); }
.reviews .eyebrow { color: var(--yellow); background: rgba(244, 196, 48, 0.14); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.review {
  background: var(--charcoal-2);
  border: 1px solid rgba(253, 246, 233, 0.1);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.4rem;
  position: relative;
  transition: transform 0.22s var(--ease), border-color 0.22s;
}
.review:hover { transform: translateY(-5px); border-color: var(--yellow); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.7;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.review blockquote { font-size: 1.05rem; color: var(--cream); margin-bottom: 1rem; }
.review figcaption {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--yellow);
}
.review figcaption span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(253, 246, 233, 0.6);
  margin-top: 0.15rem;
}
.reviews-disclaimer {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(253, 246, 233, 0.5);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--cream-2); }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--yellow-deep); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--red);
  transition: transform 0.25s var(--ease);
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.3rem 1.1rem; color: var(--muted); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(244, 196, 48, 0.3), transparent 60%),
    linear-gradient(120deg, var(--red), var(--red-deep));
  color: #fff;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-block: clamp(2.6rem, 5vw, 3.6rem);
}
.cta-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 0.4rem; }
.cta-band p { color: rgba(255, 255, 255, 0.9); font-size: 1.08rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--cream); }
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__info h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); color: var(--charcoal); margin-bottom: 0.8rem; }
.contact__info p { color: var(--muted); margin-bottom: 1.4rem; }
.contact-list { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-list li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; }
.contact-list__icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(214, 64, 44, 0.1);
  color: var(--red);
  flex: 0 0 auto;
}
.contact-list a:hover { color: var(--red); text-decoration: underline; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.field label { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.98rem;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(214, 64, 44, 0.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:invalid:not(:placeholder-shown) { border-color: var(--red); }

.form-status {
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 1.2em;
}
.form-status.is-success { color: var(--green-deep); }
.form-status.is-error { color: var(--red-deep); }
.form-fineprint { margin-top: 0.7rem; font-size: 0.82rem; color: var(--muted); text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--charcoal); color: var(--cream); padding-top: 2.8rem; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(253, 246, 233, 0.12);
}
.site-footer .brand__text { color: var(--cream); font-size: 1.5rem; }
.site-footer__brand p { color: rgba(253, 246, 233, 0.65); margin-top: 0.6rem; max-width: 38ch; font-size: 0.95rem; }
.site-footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__nav a, .site-footer__contact a {
  color: rgba(253, 246, 233, 0.8);
  font-size: 0.96rem;
  transition: color 0.18s;
}
.site-footer__nav a:hover, .site-footer__contact a:hover { color: var(--yellow); }
.site-footer__contact { display: flex; flex-direction: column; gap: 0.5rem; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-block: 1.4rem;
  font-size: 0.9rem;
  color: rgba(253, 246, 233, 0.6);
}
.credit a { color: var(--yellow); font-weight: 600; }
.credit a:hover { text-decoration: underline; }

/* ============================================================
   Sticky mobile call bar
   ============================================================ */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 950;
  display: none;
  gap: 0.55rem;
  padding: 0.55rem;
  background: rgba(28, 26, 24, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(253, 246, 233, 0.12);
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: #fff;
}
.mobile-bar__btn--call { background: var(--green); }
.mobile-bar__btn--order { background: var(--red); }
.mobile-bar__btn:active { transform: scale(0.98); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav, .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 460px; margin-inline: auto; order: -1; }
  .contact__inner { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  body { padding-bottom: 70px; } /* room for mobile bar */
  .mobile-bar { display: flex; }
  .trust-bar__inner { grid-template-columns: 1fr 1fr; text-align: left; gap: 0.9rem 1rem; }
  .trust-item { justify-content: flex-start; }
  .schedule { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-band__actions .btn { flex: 1; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
  .art-badge--red { right: 0; }
  .art-badge--green { left: 0; }
  .site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .brand__text { font-size: 1.2rem; }
  .intro__skip { bottom: 1.2rem; right: 1.2rem; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .confetti, .taco-illustration { animation: none; }
}
