/* ============================================================
   The Waffle Taco – Interior Page Styles
   /assets/css/pages.css   (shared by about, contact, rewards, specials)
   ============================================================ */

/* ── Page hero header (compact, dark) ───────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 40px 72px;
  background: var(--brown);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(232, 160, 32, 0.10);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(192, 57, 43, 0.10);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero .page-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-hero .page-label::before,
.page-hero .page-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.page-hero p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin: 0 auto;
}

/* ── Generic content container ──────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
}

/* ── Prose blocks ───────────────────────────────────────────── */
.prose p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 22px;
}

.prose p:last-child {
  margin-bottom: 0;
}

/* ── Split feature rows (image + text) ──────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 88px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.feature-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brown);
  margin-bottom: 20px;
}

.feature-text h2 em {
  color: var(--rust);
  font-style: italic;
}

/* ── Highlight / mission callout ────────────────────────────── */
.callout {
  background: var(--warm);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.callout-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--rust);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.callout-icon svg {
  width: 28px;
  height: 28px;
}

.callout h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.callout p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ── Section heading (centered) ─────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .section-label {
  justify-content: center;
}

.section-head .section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rust);
  border-radius: 2px;
}

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--brown);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }

  .feature-row.reverse .feature-media {
    order: 0;
  }

  .callout {
    padding: 40px 28px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--nav-h) + 48px) 20px 56px;
  }
}

/* ── Utility: flush top padding ─────────────────────────────── */
.section--flush-top {
  padding-top: 0;
}

/* ── CTA band (bottom of interior pages) ────────────────────── */
.cta-band {
  background: var(--rust);
  color: var(--white);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* On the rust band, make the primary button white and the outline light */
.cta-band .btn-primary {
  background: var(--white);
  color: var(--rust);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-band .btn-primary:hover {
  background: var(--cream);
  color: var(--rust-dark);
}

.cta-band .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .cta-band {
    padding: 56px 20px;
  }
}

/* ── Page hero actions (buttons under hero copy) ────────────── */
.page-hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
