/* =====================================================================
   ALLF Global Styles
   ─────────────────────
   Source of truth for: brand colors, fonts, typography,
   nav, footer, buttons, base layout utilities.

   Page-specific styles live in the page's own <style> block.
   Anything that touches every page lives here.

   Update once, rebuild, every page gets the new version.
   ===================================================================== */


/* ─── Brand custom properties ─────────────────────────────────────── */
:root {
  --maroon: #660000;
  --red: #B80C1B;
  --gold: #f0e020;
  --gold-light: #f7f06a;
  --buttercream: #F7EFDA;
  --charcoal: #1D2429;
  --pavement: #384042;
  --caramel: #EECA9E;
  --border: #e8dfc8;
  --max: 1180px;
}


/* ─── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--buttercream);
  color: var(--pavement);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--maroon); }


/* ─── Typography ──────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--maroon);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); letter-spacing: -0.3px; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.5rem); color: var(--red); }
h4 { font-size: 1.1rem; color: var(--charcoal); }


/* ─── Eyebrow utility (uppercase tracking label above headlines) ──── */
.eyebrow {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--maroon);
}


/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--maroon);
  color: var(--buttercream);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.18s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: var(--red); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--maroon); }
.btn-gold:hover { background: var(--gold-light); }
.btn-large { padding: 20px 48px; font-size: 16px; }
.btn-block { display: block; width: 100%; text-align: center; }


/* ─── Layout utilities ────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; }
.section { padding: 80px 24px; }
.section-eyebrow { text-align: center; margin-bottom: 12px; }
.section-headline {
  text-align: center;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
  color: var(--maroon);
}
.section-sub {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
  font-size: 1.1rem;
  color: var(--pavement);
}
@media (max-width: 820px) {
  .section { padding: 56px 18px; }
}


/* ─── NAV (sticky charcoal bar with wordmark + links + gold CTA) ─── */
.nav { background: var(--charcoal); padding: 14px 0; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 36px; filter: brightness(0) invert(1) brightness(0.95) sepia(0.2); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: var(--charcoal) !important; padding: 9px 20px; border-radius: 6px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; }
.nav-close { display: none; }

@media (max-width: 600px) {
  .nav-links { display: none; position: fixed; inset: 0; background: var(--charcoal); flex-direction: column; justify-content: center; align-items: center; gap: 20px; z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; z-index: 201; }
  .nav-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; display: none; }
  .nav-links.open .nav-close { display: block; }
  .nav-links a { font-size: 16px; }
}


/* ─── FOOTER (4-column charcoal grid + social row) ─────────────── */
.footer { background: var(--charcoal); padding: 48px 0 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.footer-cancel { background: rgba(255,255,255,0.04); border-radius: 6px; padding: 18px 24px; max-width: 720px; margin: 0 auto 36px; font-size: 14px; line-height: 1.55; color: rgba(247, 239, 218, 0.75); text-align: center; }
.footer-cancel strong { color: var(--gold); display: block; margin-bottom: 4px; font-family: 'Playfair Display', serif; font-size: 16px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 10px; }
.footer-logo { height: 32px; filter: brightness(0) invert(1) brightness(0.95) sepia(0.2); }
.footer h5 { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: var(--gold-light); text-decoration: none; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold-light); }

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
