/* =========================================================
   Saluting Lou — Tribute Collection
   Palette: Notre Dame navy + gold, warm cream, editorial serif headlines
   ========================================================= */

:root {
  --navy: #0d1b3f;
  --navy-2: #142a5e;
  --navy-3: #1c3672;
  --gold: #c9a961;
  --gold-bright: #e3c47a;
  --cream: #f7f4ec;
  --white: #ffffff;
  --ink: #1b1f2a;
  --grey: #5b6070;
  --line: #e6e1d3;
  --radius: 14px;
  --shadow: 0 20px 40px -20px rgba(13, 27, 63, 0.35);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 0 .5em;
  line-height: 1.1;
  letter-spacing: .01em;
}
p { margin: 0 0 1em; color: var(--grey); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--navy); box-shadow: 0 10px 24px -10px rgba(201,169,97,.7); }
.btn-gold:hover { box-shadow: 0 14px 28px -10px rgba(201,169,97,.85); }
.btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-ghost { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--navy); color: var(--gold-bright);
  text-align: center; font-size: .85rem; font-weight: 600; letter-spacing: .02em;
  padding: 10px 16px;
}
.announce p { margin: 0; color: inherit; }
.announce strong { color: var(--white); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,236,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 0; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { font-size: .92rem; font-weight: 600; color: var(--ink); }
.main-nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-shop-btn { padding: 10px 20px; font-size: .88rem; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border: none; background: none; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--navy); border-radius: 2px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(28,54,114,.9), transparent 60%),
    radial-gradient(800px 500px at 10% 110%, rgba(28,54,114,.7), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy) 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; opacity: .5;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 20%, rgba(255,255,255,.7) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 70% 15%, rgba(255,255,255,.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 40% 60%, rgba(255,255,255,.55) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 85% 65%, rgba(255,255,255,.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 55% 85%, rgba(255,255,255,.5) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 10% 80%, rgba(255,255,255,.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 92% 30%, rgba(255,255,255,.5) 50%, transparent 51%);
  background-size: 100% 100%;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
  padding-top: 90px; padding-bottom: 90px;
}
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 16px;
}
.eyebrow-dark { color: var(--gold); }
.hero h1 { font-size: clamp(3rem, 7vw, 5.4rem); font-weight: 900; color: var(--white); }
.hero-lede { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 46ch; }

.countdown { margin: 28px 0; }
.countdown-label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 10px; }
.countdown-timer { display: flex; gap: 12px; }
.countdown-timer > div {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px; padding: 10px 14px; min-width: 62px; text-align: center;
}
.countdown-timer span { display: block; font-size: 1.5rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.countdown-timer small { display: block; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 2px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 18px; }
.hero-tagline { color: var(--gold-bright); font-weight: 600; font-size: 1rem; }
.hero-tagline em { font-style: italic; color: var(--white); }

/* hero photo */
.hero-art { display: flex; justify-content: center; align-self: start; margin-top: -20px; }
.hero-photo {
  width: 100%; max-width: 440px; aspect-ratio: 1 / 1;
  object-fit: cover; object-position: center center;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(201,169,97,.12), var(--shadow);
}

/* ---------- legacy ---------- */
.legacy { background: var(--white); padding: 100px 0; }
.legacy-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.legacy h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); }
.legacy-quote {
  margin: 0; background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 44px 36px; position: relative; box-shadow: var(--shadow);
}
.legacy-quote p { color: var(--gold-bright); font-family: 'Playfair Display', serif; font-size: 1.5rem; font-style: italic; margin: 16px 0 14px; }
.legacy-quote cite { color: rgba(255,255,255,.7); font-style: normal; font-size: .9rem; }

/* ---------- shop ---------- */
.shop { padding: 100px 0 90px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.6rem); color: var(--navy); }
.section-head p { margin: 0; }

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px; max-width: 1080px; margin: 0 auto;
}
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-visual {
  position: relative; aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #f0ece2;
}
.product-visual .tee { width: 62%; }
.product-visual .tee-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.product-tag {
  position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--navy);
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.product-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.08rem; color: var(--navy); }
.product-variant { color: var(--grey); font-size: .85rem; margin-bottom: 8px; }
.product-price { font-weight: 800; font-size: 1.05rem; color: var(--ink); margin-bottom: 14px; }
.product-cta {
  margin-top: auto; text-align: center; padding: 11px 18px; border-radius: 999px;
  background: var(--navy); color: var(--white); font-weight: 700; font-size: .88rem;
  transition: background .15s ease;
}
.product-cta:hover { background: var(--gold); color: var(--navy); }

/* ---------- trust ---------- */
.trust { background: var(--navy); color: var(--white); padding: 70px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.trust-item { text-align: center; }
.trust-item h3 { color: var(--white); font-size: 1.15rem; margin: 14px 0 8px; }
.trust-item p { color: rgba(255,255,255,.72); margin: 0; font-size: .92rem; }

/* ---------- faq ---------- */
.faq { padding: 90px 0 110px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; }
.faq-item summary { font-weight: 700; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--gold); margin-left: 12px; }
.faq-item[open] summary::after { content: '–'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 14px 0 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.6); margin-top: 8px; }
.footer-links { display: flex; gap: 60px; }
.footer-links h4 { color: var(--gold-bright); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.footer-links a { display: block; margin-bottom: 10px; color: rgba(255,255,255,.75); font-size: .92rem; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-bottom { padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: .78rem; color: rgba(255,255,255,.5); }

/* ---------- sticky mobile buy bar ---------- */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: var(--navy); color: var(--white); border-top: 1px solid rgba(255,255,255,.15);
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px; box-shadow: 0 -10px 30px rgba(0,0,0,.25);
}
.sticky-buy strong { display: block; font-family: 'Playfair Display', serif; }
.sticky-buy span { font-size: .78rem; color: rgba(255,255,255,.65); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-art { order: -1; }
  .legacy-inner { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-shop-btn { display: none; }
  .site-header.nav-open .main-nav {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 20px 24px; gap: 16px; border-bottom: 1px solid var(--line);
  }
  .sticky-buy { display: flex; }
  body { padding-bottom: 70px; }
  .footer-inner { flex-direction: column; }
}
