@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&family=Open+Sans:wght@400;600&display=swap');

:root {
  --red:       #B22234;
  --red-dark:  #8b1a28;
  --red-lite:  #cc2d45;
  --navy:      #1a2744;
  --navy-mid:  #243352;
  --blue:      #3457a0;
  --white:     #ffffff;
  --offwhite:  #f4f6fa;
  --sand:      #f0ecdf;
  --gold:      #c8973a;
  --gold-lite: #e0b05a;
  --text:      #1a1a1a;
  --muted:     #5a5a5a;
  --border:    rgba(0,0,0,0.09);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; background: var(--offwhite); color: var(--text); font-size: 16px; line-height: 1.7; }

/* ── TOPBAR ── */
.topbar { background: var(--red-dark); color: white; text-align: center; padding: 0.55rem 1rem; font-size: 0.82rem; font-weight: 600; }
.topbar a { color: var(--gold-lite); text-decoration: none; }

/* ── NAV ── */
nav { background: var(--navy); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-text { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 700; color: white; letter-spacing: 0.04em; line-height: 1.2; }
.nav-logo-text small { display: block; font-size: 0.6rem; font-weight: 400; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-links { display: flex; list-style: none; gap: 0; align-items: center; }
.nav-links a { display: block; padding: 0 0.9rem; height: 64px; line-height: 64px; color: rgba(255,255,255,0.78); text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; border-bottom: 3px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: white; border-bottom-color: var(--red); }
.nav-links .btn-nav { background: var(--red); color: white !important; height: auto; line-height: 1; padding: 0.5rem 1.1rem; border-radius: 4px; border-bottom: none !important; margin-left: 0.5rem; }
.nav-links .btn-nav:hover { background: var(--red-lite); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ── FLAG STRIPE ── */
.flag-stripe { height: 5px; background: linear-gradient(to right, var(--red) 33.3%, white 33.3%, white 66.6%, var(--blue) 66.6%); }

/* ── PAGE HERO ── */
.page-hero { background: var(--navy); padding: 3.5rem 8vw; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px); }
.page-hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: white; letter-spacing: 0.04em; text-transform: uppercase; position: relative; }
.page-hero h1 span { color: var(--gold-lite); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 580px; margin-top: 0.7rem; position: relative; }
.page-hero-bar { width: 56px; height: 4px; background: var(--red); margin-top: 1.2rem; position: relative; }

/* ── WRAP ── */
.wrap { max-width: 1160px; margin: 0 auto; }

/* ── SECTION LABELS ── */
.section-label { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem; }
h2 { font-family: 'Oswald', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); letter-spacing: 0.03em; margin-bottom: 1rem; line-height: 1.2; }
h3 { font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: var(--navy); font-weight: 600; margin-bottom: 0.6rem; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 0.75rem 1.8rem; border-radius: 4px; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; transition: all 0.22s; cursor: pointer; border: none; }
.btn-red   { background: var(--red); color: white; }
.btn-red:hover   { background: var(--red-lite); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(178,34,52,0.35); }
.btn-navy  { background: var(--navy); color: white; }
.btn-navy:hover  { background: var(--navy-mid); transform: translateY(-2px); }
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover  { background: var(--gold-lite); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: white; color: white; transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: #0f1a2e; color: rgba(255,255,255,0.55); padding: 3.5rem 8vw 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; max-width: 1160px; margin: 0 auto 2.5rem; }
.footer-brand h3 { font-family: 'Oswald', sans-serif; color: white; font-size: 1.1rem; margin-bottom: 0.7rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 0.9rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-lite); }
.footer-bottom { max-width: 1160px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 0.5rem 0; }
  .nav-links.open { display: flex; }
  .nav-links a { height: auto; line-height: 1; padding: 0.8rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 2.5rem 5vw; }
}
