/* ── Subpage styles — location + coupon pages ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #FF6200;
  --gold:      #FFD100;
  --navy:      #111111;
  --card:      #1e1e1e;
  --text:      #ffffff;
  --muted:     rgba(255,255,255,0.65);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.sub-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sub-nav__logo { height: 34px; }
.sub-nav__back {
  color: var(--gold);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  margin-right: -0.75rem;
}
.sub-nav__back:hover { color: #fff; }

/* ── Hero ── */
.sub-hero {
  padding: 2.5rem 1.5rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.sub-hero__logo-wrap {
  width: 96px;
  height: 96px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  padding: 14px;
  border: 3px solid var(--red);
  box-shadow: 0 0 24px rgba(255,98,0,0.25);
}
.sub-hero__logo { width: 100%; height: 100%; object-fit: contain; }
.sub-hero__name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
}
.sub-hero__city {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Info card ── */
.sub-card {
  background: var(--card);
  border-top: 3px solid var(--red);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 0.5rem;
  max-width: 520px;
  margin: 1.5rem auto 0;
  box-shadow: 0 4px 20px rgba(255,98,0,0.1);
}
.sub-card__address {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1.25rem;
}

/* ── CTA buttons ── */
.sub-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 520px;
  margin: 1.25rem auto 0;
  padding: 0 1.5rem;
}

.btn-call {
  display: block;
  width: 100%;
  padding: 1.1rem 1rem;
  background: var(--red);
  color: #fff;
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-call:hover { background: #e05500; }

.btn-dir {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-dir:hover { background: rgba(255,255,255,0.1); }

.btn-coupon {
  display: block;
  width: 100%;
  padding: 0.95rem 1rem;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.15s, color 0.15s;
}
.btn-coupon:hover { background: var(--gold); color: #111; }

.btn-back {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
.btn-back:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ── No-phone notice ── */
.no-phone {
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: italic;
  padding: 0.6rem 0;
}

/* ── Coupon page ── */
.coupon-wrap {
  max-width: 560px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}
.coupon-img {
  width: 100%;
  border-radius: 12px;
  border: 2px solid var(--red);
  display: block;
  box-shadow: 0 4px 24px rgba(255,98,0,0.2);
}
.coupon-note {
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}
.coupon-store-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 560px;
  margin: 1.5rem auto 0;
  padding: 0 1.5rem;
}
.coupon-store-logo {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  border: 2px solid var(--red);
}
.coupon-store-logo img { width: 100%; height: 100%; object-fit: contain; }
.coupon-store-info {}
.coupon-store-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
}
.coupon-store-city { color: var(--gold); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Footer ── */
.sub-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.8rem;
}
.sub-footer a { color: var(--gold); text-decoration: none; }

.sub-footer__dm-logo {
  height: 18px;
  vertical-align: middle;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.sub-footer a:hover .sub-footer__dm-logo { opacity: 1; }

/* ── Responsive ── */
@media (min-width: 480px) {
  .sub-btns { padding: 0 0; }
}
