/* ============================================
   United We Stand – Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Cinzel:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1A3460;
  --white: #F8F5EE;
  --cream: #F2ECD8;
  --red: #8B1A1A;
  --text: #1A1A2E;
  --text-light: #4A4A6A;
  --border: rgba(201,168,76,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  color: var(--gold-light);
  text-align: center;
  padding: 8px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--gold-light); text-decoration: none; }
.top-bar a:hover { color: var(--white); }

/* ---- HEADER / NAV ---- */
header {
  background: var(--navy-mid);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img { height: 60px; width: auto; }
.logo-text {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

nav { display: flex; gap: 0; flex-wrap: wrap; }
nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  transition: color 0.2s, background 0.2s;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ---- HERO ---- */
.hero {
  background: var(--navy);
  color: var(--white);
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 30px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(139,26,26,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.1) 0%, transparent 60%);
}
.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  position: relative;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--gold); }
.hero-quote {
  max-width: 680px;
  margin: 30px auto;
  font-size: 1.05rem;
  color: rgba(248,245,238,0.8);
  font-style: italic;
  position: relative;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  text-align: left;
}
.hero-quote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: 8px;
  font-size: 0.9rem;
  font-family: 'Cinzel', serif;
}
.hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; justify-content: center; position: relative; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ---- SECTION BASE ---- */
section { padding: 80px 30px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
p { margin-bottom: 16px; color: var(--text-light); }

/* ---- MAGAZINE GALLERY ---- */
.gallery-section { background: var(--navy); padding: 60px 30px; }
.gallery-section h2 { color: var(--white); text-align: center; margin-bottom: 40px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 2px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
  display: block;
}
.gallery-grid img:hover { transform: scale(1.03); border-color: var(--gold); }

/* ---- THREE PILLARS ---- */
.pillars-section { background: var(--cream); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.pillar-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.pillar-tag {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

/* ---- STATS ---- */
.stats-section { background: var(--navy); color: var(--white); text-align: center; }
.stats-section h2 { color: var(--white); margin-bottom: 50px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.stat-item { }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label { font-size: 0.9rem; color: rgba(248,245,238,0.7); margin-top: 8px; letter-spacing: 0.05em; }

/* ---- VOICE SECTION ---- */
.voice-section { }
.voice-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.voice-text h2 { margin-bottom: 20px; }
.voice-text .highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

/* ---- MEDIA FACTS ---- */
.media-facts {
  background: var(--navy-mid);
  color: var(--white);
}
.media-facts h2 { color: var(--white); }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.fact-card {
  border: 1px solid var(--border);
  padding: 30px;
  position: relative;
}
.fact-card h3 { color: var(--gold-light); }
.fact-card p { color: rgba(248,245,238,0.75); }
.fact-card ul { color: rgba(248,245,238,0.75); padding-left: 20px; }
.fact-card ul li { margin-bottom: 8px; }
.fact-card strong { color: var(--gold-light); }

/* ---- TRUST STAT ---- */
.trust-callout {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 60px 30px;
}
.trust-callout h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  max-width: 800px;
  margin: 0 auto 20px;
}
.trust-pct {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.trust-callout p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }

/* ---- APPROACH SECTION ---- */
.approach-section { background: var(--cream); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 50px;
  background: var(--border);
}
.approach-card {
  background: var(--white);
  padding: 50px 35px;
  text-align: center;
}
.approach-domain {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.approach-subtitle { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; font-style: italic; }

/* ---- CONTACT / FOOTER ---- */
.contact-section { background: var(--navy); color: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.contact-col h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-col p, .contact-col a {
  color: rgba(248,245,238,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 6px;
}
.contact-col a:hover { color: var(--gold); }

.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.social-links a {
  display: inline-block;
  color: rgba(248,245,238,0.75);
  font-size: 0.8rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.social-links a:hover { color: var(--gold); border-color: var(--gold); }

.footer-bottom {
  padding-top: 30px;
  text-align: center;
  color: rgba(248,245,238,0.4);
  font-size: 0.8rem;
}
.footer-bottom span { color: var(--gold); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 30px 60px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
}
.page-hero p { color: rgba(248,245,238,0.75); max-width: 600px; margin: 16px auto 0; font-size: 1.05rem; }

/* ---- MOTTO PAGE ---- */
.motto-content { max-width: 900px; margin: 0 auto; }
.motto-section-block { margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.motto-section-block:last-child { border-bottom: none; }
.motto-section-block h2 { color: var(--navy); margin-bottom: 20px; }
.motto-section-block img { width: 100%; max-width: 500px; height: auto; margin: 20px 0; display: block; border: 2px solid var(--border); }
.plates-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 20px 0; }
.plates-row img { width: auto; max-width: 200px; height: auto; border: 1px solid var(--border); }

.motto-nav {
  background: var(--cream);
  padding: 30px;
  border-left: 4px solid var(--gold);
  margin-bottom: 50px;
}
.motto-nav h4 { font-family: 'Cinzel', serif; color: var(--gold-dark); margin-bottom: 12px; font-size: 0.85rem; letter-spacing: 0.1em; }
.motto-nav a { display: inline-block; margin-right: 12px; margin-bottom: 8px; color: var(--navy); font-size: 0.9rem; text-decoration: none; font-weight: 600; }
.motto-nav a:hover { color: var(--gold-dark); }

/* ---- QUOTE BLOCK ---- */
blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 30px;
  margin: 30px 0;
  background: var(--cream);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
}
blockquote cite { display: block; font-style: normal; font-weight: 600; margin-top: 10px; color: var(--gold-dark); font-size: 0.9rem; }

/* ---- HAMBURGER (mobile) ---- */
.menu-toggle { display: none; background: none; border: 1px solid var(--gold); color: var(--gold); padding: 6px 12px; cursor: pointer; font-family: 'Cinzel', serif; font-size: 0.75rem; letter-spacing: 0.1em; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  nav { display: none; flex-direction: column; width: 100%; }
  nav.open { display: flex; }
  nav a { padding: 12px 20px; border-bottom: 1px solid var(--border); }
  .header-inner { flex-wrap: wrap; }
  .voice-inner { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .trust-pct { font-size: 4rem; }
}
