/* ==========================================================================
   Señor Taco Late Night Bites — premium dark, cinematic minimal
   ========================================================================== */

:root {
  --bg: #0a0a0b;
  --bg-elev: #131316;
  --bg-card: #16171b;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  --text: #f5f5f4;
  --text-muted: #a8a7a3;
  --text-dim: #6e6d6a;

  --gold: #f4c430;
  --gold-soft: #ffd966;
  --red: #e63946;
  --red-deep: #b32330;
  --lime: #b6e94e;
  --lime-deep: #6fa01e;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow:    0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.65);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display',
               'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

::selection { background: var(--gold); color: #0a0a0b; }

/* Subtle starfield ambient gradient behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(244, 196, 48, 0.06), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(230, 57, 70, 0.05), transparent 60%),
    radial-gradient(800px 700px at 50% 120%, rgba(182, 233, 78, 0.04), transparent 60%);
  z-index: 0;
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
  z-index: 1;
}

.section--tight  { padding: clamp(56px, 7vw, 96px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 0.5em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.6rem); font-weight: 700; letter-spacing: -0.015em; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { color: var(--text-muted); margin: 0 0 1em; }

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.55;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(10, 10, 11, 0.55);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 280ms var(--easing), background 280ms var(--easing);
}

.nav.is-scrolled {
  background: rgba(10, 10, 11, 0.85);
  border-bottom-color: var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 17px;
  color: var(--text);
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-image: url('images/logo.png');
  background-size: cover;
  background-position: center;
  background-color: #FFD200;
  flex: 0 0 auto;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 14px rgba(0, 0, 0, 0.35);
}

.brand__name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.brand__name b { color: var(--gold); font-weight: 700; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 240ms var(--easing), background 240ms var(--easing);
}

.nav__link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav__link.is-active { color: var(--text); }

.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  position: relative;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--text);
}

.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav__links.is-open .nav__link { padding: 14px 16px; font-size: 16px; }
  .nav__links.is-open .nav__cta  { margin: 8px 0 0; }
  .nav__toggle { display: inline-flex; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: transform 240ms var(--easing), box-shadow 240ms var(--easing),
              background 240ms var(--easing), color 240ms var(--easing),
              border-color 240ms var(--easing);
  white-space: nowrap;
  cursor: pointer;
  will-change: transform;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gold);
  color: #1a1300;
  box-shadow: 0 10px 24px rgba(244, 196, 48, 0.22);
}
.btn--primary:hover {
  background: var(--gold-soft);
  box-shadow: 0 16px 36px rgba(244, 196, 48, 0.35);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.28);
}
.btn--red:hover {
  background: #ef4654;
  box-shadow: 0 16px 36px rgba(230, 57, 70, 0.4);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--lg { padding: 17px 30px; font-size: 16px; }

.btn .arrow { transition: transform 240ms var(--easing); }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   Status badge (open / closed)
   ========================================================================== */

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.03);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: var(--text);
  transition: color 240ms var(--easing), border-color 240ms var(--easing), background 240ms var(--easing);
}

.status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  box-shadow: 0 0 0 0 currentColor;
  flex-shrink: 0;
}

.status__time {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 12px;
  margin-left: 4px;
}

.status--open { color: #c2f56b; border-color: rgba(182, 233, 78, 0.35); background: rgba(182, 233, 78, 0.08); }
.status--open .status__dot {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(182, 233, 78, 0.18);
  animation: pulse 2.4s infinite;
}

.status--soon  { color: var(--gold-soft); border-color: rgba(244, 196, 48, 0.35); background: rgba(244, 196, 48, 0.08); }
.status--soon  .status__dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.18); }

.status--closed { color: #ff8b94; border-color: rgba(230, 57, 70, 0.35); background: rgba(230, 57, 70, 0.06); }
.status--closed .status__dot { background: var(--red); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(182, 233, 78, 0.18); }
  50%       { box-shadow: 0 0 0 8px rgba(182, 233, 78, 0.05); }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.hero__copy { max-width: 640px; }

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .accent {
  display: block;
  background: linear-gradient(120deg, var(--gold) 0%, #ffb84d 50%, var(--red) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 52ch;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.4s var(--easing);
}

.hero__visual:hover img { transform: scale(1.08); }

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0) 40%, rgba(10,10,11,0.4) 100%),
    radial-gradient(120% 70% at 100% 0%, rgba(230, 57, 70, 0.18), transparent 50%);
  pointer-events: none;
}

.hero__chip {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10,10,11,0.55);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero__chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

/* ==========================================================================
   Featured late-night band
   ========================================================================== */

.band {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02) 30%, transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

@media (max-width: 900px) {
  .band__grid { grid-template-columns: 1fr; }
}

.band__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
}

.band__media img { width:100%; height:100%; object-fit:cover; transition: transform 1.2s var(--easing); }
.band__media:hover img { transform: scale(1.05); }

.band__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0), rgba(10,10,11,0.55));
}

.band__copy h2 { max-width: 14ch; }

.band__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.pill {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 500;
}

.pill--gold { color: var(--gold); border-color: rgba(244, 196, 48, 0.3); background: rgba(244, 196, 48, 0.07); }

/* ==========================================================================
   Signature favorites — cards
   ========================================================================== */

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}

.section__head .copy { max-width: 56ch; }

.section__head h2 { margin-bottom: 12px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 1080px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .cards { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 360ms var(--easing), border-color 360ms var(--easing),
              box-shadow 360ms var(--easing);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.card__media img { width:100%; height:100%; object-fit:cover; transition: transform 1s var(--easing); }
.card:hover .card__media img { transform: scale(1.06); }

.card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0) 55%, rgba(10,10,11,0.55) 100%);
}

.card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10,10,11,0.6);
  border: 1px solid rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: var(--gold);
}

/* ==========================================================================
   Order online — large CTA panel
   ========================================================================== */

.cta-panel {
  position: relative;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(244, 196, 48, 0.16), transparent 60%),
    radial-gradient(80% 120% at 0% 100%, rgba(230, 57, 70, 0.16), transparent 55%),
    linear-gradient(180deg, #16161a, #0e0e10);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(244, 196, 48, 0.4), transparent 30%, transparent 70%, rgba(230, 57, 70, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
}

.cta-panel h2 { margin-bottom: 16px; }
.cta-panel p { margin: 0 auto 28px; max-width: 56ch; }

.cta-panel .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   Catering / trays — split
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.split--reverse .split__media { order: 2; }

@media (max-width: 900px) {
  .split--reverse .split__media { order: 0; }
}

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
}

.split__media img { width:100%; height:100%; object-fit:cover; transition: transform 1.2s var(--easing); }
.split__media:hover img { transform: scale(1.04); }

.split__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0) 40%, rgba(10,10,11,0.4));
}

.split__copy h2 { max-width: 18ch; }
.split__copy .lead { margin-bottom: 28px; }
.split__copy .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   Location / info card
   ========================================================================== */

.info {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 900px) { .info { grid-template-columns: 1fr; } }

.info__panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
}

.info__panel h2 { font-size: clamp(1.7rem, 2.6vw, 2.5rem); margin-bottom: 18px; }

.info__rows { display: grid; gap: 20px; margin-top: 8px; }

.info__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.info__row:last-child { border-bottom: 0; padding-bottom: 0; }

.info__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 2px;
}

.info__value { font-size: 16px; color: var(--text); line-height: 1.5; }
.info__value a:hover { color: var(--gold); }

.info__actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.map-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
  background:
    radial-gradient(40% 60% at 30% 30%, rgba(244, 196, 48, 0.12), transparent 60%),
    radial-gradient(50% 50% at 70% 70%, rgba(230, 57, 70, 0.12), transparent 60%),
    linear-gradient(180deg, #14141a, #0c0c10);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.map-card__inner {
  position: relative;
  z-index: 2;
}

.map-card__pin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.45);
}

.map-card__pin svg { width: 28px; height: 28px; }

.map-card h3 { font-size: 1.2rem; margin-bottom: 8px; }

.map-card__addr { color: var(--text-muted); margin-bottom: 22px; line-height: 1.5; }

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
  opacity: 0.6;
  z-index: 1;
}

/* ==========================================================================
   Hours table (Contact page)
   ========================================================================== */

.hours {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}

.hours__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}

.hours__head h2 { font-size: clamp(1.6rem, 2.4vw, 2.2rem); margin: 0; }

.hours__list { display: grid; gap: 14px; }

.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 16px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}

.hours__row:last-child { border-bottom: 0; }

.hours__row.is-today { color: var(--gold); font-weight: 600; }
.hours__day { color: var(--text); }
.hours__row .hours__day { color: inherit; }
.hours__time { color: var(--text-muted); font-variant-numeric: tabular-nums; }
.hours__row.is-today .hours__time { color: var(--gold); }

/* ==========================================================================
   Contact hero
   ========================================================================== */

.contact-hero {
  padding: clamp(80px, 10vw, 130px) 0 clamp(40px, 6vw, 80px);
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

@media (max-width: 900px) { .contact-hero__grid { grid-template-columns: 1fr; } }

.contact-hero h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
.contact-hero__visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-hero__visual img { width:100%; height:100%; object-fit:cover; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
  background: #08080a;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

.footer h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer__col p, .footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: color 200ms var(--easing);
}

.footer__col a:hover { color: var(--gold); }

.footer__brand p {
  max-width: 36ch;
  margin-top: 14px;
  font-size: 14px;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text-muted);
  transition: transform 240ms var(--easing), color 240ms var(--easing),
              background 240ms var(--easing), border-color 240ms var(--easing);
}

.footer__social:hover {
  background: rgba(244, 196, 48, 0.12);
  border-color: rgba(244, 196, 48, 0.45);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer__social svg { width: 17px; height: 17px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-dim);
}

/* ==========================================================================
   Animations on scroll (reveal)
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--easing), transform 700ms var(--easing);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Utility
   ========================================================================== */

.center { text-align: center; }
.muted  { color: var(--text-muted); }
.divider {
  height: 1px;
  width: 100%;
  background: var(--line);
  margin: clamp(48px, 6vw, 80px) 0;
}

/* ==========================================================================
   Delivery hub — grid of towns
   ========================================================================== */

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: clamp(32px, 4vw, 48px);
}

.delivery-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: transform 240ms var(--easing), border-color 240ms var(--easing),
              background 240ms var(--easing), box-shadow 240ms var(--easing);
}

.delivery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 196, 48, 0.45);
  background: rgba(244, 196, 48, 0.05);
  box-shadow: var(--shadow-sm);
}

.delivery-card__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.delivery-card__sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.delivery-card__arrow {
  flex: 0 0 auto;
  color: var(--text-dim);
  transition: color 240ms var(--easing), transform 240ms var(--easing);
}

.delivery-card:hover .delivery-card__arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* "Also delivering to" — compact pill grid */

.nearby {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.nearby a {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: border-color 240ms var(--easing), background 240ms var(--easing), color 240ms var(--easing);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nearby a:hover {
  border-color: rgba(244, 196, 48, 0.4);
  background: rgba(244, 196, 48, 0.06);
  color: var(--gold);
}

.nearby a svg { opacity: 0.5; transition: opacity 240ms var(--easing); }
.nearby a:hover svg { opacity: 1; }

/* Radius callout used on town pages */

.radius-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(182, 233, 78, 0.06);
  border: 1px solid rgba(182, 233, 78, 0.28);
  font-size: 13px;
  font-weight: 500;
  color: #c2f56b;
  margin-top: 18px;
}

.radius-note svg { width: 14px; height: 14px; }

/* ==========================================================================
   Marketplace vs Direct — compare callout
   ========================================================================== */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: clamp(28px, 4vw, 40px);
}

@media (max-width: 700px) { .compare { grid-template-columns: 1fr; } }

.compare__col {
  position: relative;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}

.compare__col--bad  { border-color: rgba(230, 57, 70, 0.28); background: linear-gradient(180deg, rgba(230, 57, 70, 0.06), rgba(230, 57, 70, 0.01)); }
.compare__col--good { border-color: rgba(244, 196, 48, 0.4);  background: linear-gradient(180deg, rgba(244, 196, 48, 0.07), rgba(244, 196, 48, 0.01)); }

.compare__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  margin-bottom: 18px;
}

.compare__col--good .compare__tag { color: var(--gold); border-color: rgba(244, 196, 48, 0.35); background: rgba(244, 196, 48, 0.08); }
.compare__col--bad  .compare__tag { color: #ff8b94;    border-color: rgba(230, 57, 70, 0.35); background: rgba(230, 57, 70, 0.08); }

.compare__pct {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 6px 0 12px;
}

.compare__col--good .compare__pct { color: var(--gold); }
.compare__col--bad  .compare__pct { color: #ff8b94; }

.compare__headline {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
}

.compare__desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin: 0; }
