/* ── BRITON PARTY — SHARED STYLESHEET ─────────────────────────── */
/* Colour system */
:root {
  --navy:   #1A1A2E;
  --red:    #E94560;
  --white:  #FFFFFF;
  --offwhite: #F8F8F6;
  --border: #E5E5E5;
  --muted:  #666666;
  --light:  #888888;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; background: var(--offwhite); color: var(--navy); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Typography */
h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 900; line-height: 1.1; letter-spacing: -0.5px; }
h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 900; line-height: 1.15; }
h3 { font-size: 18px; font-weight: 700; }
p  { font-size: 15px; line-height: 1.8; color: var(--muted); }

/* Layout helpers */
.container  { max-width: 1060px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 64px 32px; }
.grid-2     { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3     { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4     { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* Buttons */
.btn         { display: inline-block; padding: 12px 28px; font-size: 14px; font-weight: 700; letter-spacing: 1px; cursor: pointer; border: none; transition: opacity 0.15s; }
.btn:hover   { opacity: 0.88; }
.btn-red     { background: var(--red); color: #fff; }
.btn-navy    { background: var(--navy); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-full    { width: 100%; text-align: center; }

/* Tags and labels */
.tag     { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--red); text-transform: uppercase; }
.divider { height: 3px; width: 48px; background: var(--red); margin: 10px 0 20px; }

/* Cards */
.card          { background: #fff; border: 0.5px solid var(--border); border-radius: 12px; padding: 24px; }
.card-featured { background: #fff; border: 2px solid var(--red); border-radius: 12px; padding: 24px; position: relative; }

/* Form elements */
.input-field  { width: 100%; padding: 11px 14px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; color: var(--navy); background: #fff; outline: none; }
.input-field:focus { border-color: var(--navy); }
.label        { display: block; font-size: 12px; font-weight: 700; color: #444; margin-bottom: 6px; letter-spacing: 0.5px; }
.check-row    { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #555; line-height: 1.5; margin-bottom: 12px; }
.section-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--navy); text-transform: uppercase; padding-bottom: 12px; border-bottom: 0.5px solid var(--border); margin-bottom: 20px; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav { background: var(--navy); height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; position: sticky; top: 0; z-index: 100; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand-name { color: #fff; font-size: 20px; font-weight: 900; letter-spacing: 4px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.active { border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.nav-cta { padding: 8px 20px; }

/* ── PAGE HERO ──────────────────────────────────────────────── */
.hero          { background: var(--navy); padding: 80px 32px 72px; position: relative; overflow: hidden; }
.hero-sm       { background: var(--navy); padding: 56px 32px 52px; }
.hero-eyemark  { position: absolute; right: -20px; top: -20px; opacity: 0.04; pointer-events: none; }
.hero h1 span, .hero-sm h1 span  { color: var(--red); }
.hero p, .hero-sm p { color: rgba(255,255,255,0.65); }

/* ── BANNER ─────────────────────────────────────────────────── */
.banner-red  { background: var(--red); padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.banner-stat { text-align: center; }
.banner-stat-num  { color: #fff; font-size: 22px; font-weight: 900; }
.banner-stat-lbl  { color: rgba(255,255,255,0.75); font-size: 11px; letter-spacing: 1px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 48px 32px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col-title { color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 13px; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 0.5px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 12px; }

/* ── EMBLEM SVG inline helper ───────────────────────────────── */
.emblem-sm { width: 32px; height: 32px; }
.emblem-md { width: 48px; height: 48px; }
.emblem-lg { width: 220px; height: 260px; }

/* ── UTILITY ────────────────────────────────────────────────── */
.text-red   { color: var(--red); }
.text-white { color: #fff; }
.text-muted { color: var(--muted); }
.text-light { color: var(--light); }
.text-center { text-align: center; }
.bg-navy   { background: var(--navy); }
.bg-white  { background: #fff; }
.bg-off    { background: var(--offwhite); }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }
.w-full { width: 100%; }
.rounded { border-radius: 6px; }
.rounded-lg { border-radius: 12px; }
.border { border: 0.5px solid var(--border); }
.border-red { border: 1.5px solid var(--red); }
.icon-box { width: 44px; height: 44px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box-sm { width: 36px; height: 36px; background: var(--navy); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pill { display: inline-block; background: var(--navy); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; letter-spacing: 1px; margin-bottom: 10px; }
.pill-red { background: var(--red); }
.badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 3px 10px; letter-spacing: 1px; border-radius: 20px; }
.badge-red { background: var(--red); color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero, .hero-sm { padding: 48px 20px; }
  .section { padding: 48px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  h1 { font-size: 32px; }
}
