@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

:root {
  --ink: #0E0E0E;
  --ink-2: #2A2A2A;
  --ink-3: #5C5C5C;
  --ink-4: #9A9A9A;
  --paper: #FAFAF8;
  --paper-2: #F2F2EE;
  --paper-3: #E8E8E2;
  --red: #B8291A;
  --red-hover: #961F12;
  --red-light: #F9EFED;
  --navy: #0D2240;
  --navy-2: #163560;
  --navy-light: #E8EEF7;
  --gold: #C49A2A;
  --gold-light: #F5E8C0;
  --border: #DDDDD8;
  --border-light: #EBEBЕ7;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 4px rgba(14,14,14,0.06);
  --shadow: 0 4px 20px rgba(14,14,14,0.08);
  --shadow-lg: 0 12px 48px rgba(14,14,14,0.12);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: 'IBM Plex Sans', sans-serif; background: var(--paper); color: var(--ink); line-height: 1.65; overflow-x: hidden; }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; letter-spacing: -0.01em; }
h4, h5, h6 { font-family: 'IBM Plex Sans', sans-serif; }

a { color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: 'IBM Plex Sans', sans-serif; }

/* ─── NAV ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 clamp(24px, 5vw, 80px);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1280px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: var(--radius-md);
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 900; color: #fff; font-size: 17px;
}
.nav-logo-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--ink); }
.nav-logo-name em { color: var(--red); font-style: normal; }
.nav-logo-sub { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); margin-top: 1px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--ink-3); text-decoration: none;
  padding: 6px 14px; border-radius: 50px; transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--paper-2); }
.nav-links a.active { color: var(--red); }
.nav-links .nav-cta {
  background: var(--red); color: #fff; padding: 8px 20px;
  transition: background 0.2s, transform 0.15s;
}
.nav-links .nav-cta:hover { background: var(--red-hover); color: #fff; transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-hamburger span { width: 22px; height: 1.5px; background: var(--ink); display: block; transition: 0.25s; }
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 899;
  background: var(--paper); border-bottom: 1px solid var(--border);
  padding: 20px clamp(24px, 5vw, 80px) 28px; flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-2); text-decoration: none;
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border: none; padding-top: 16px; }
.mobile-nav .nav-cta-m {
  display: inline-block; background: var(--red); color: #fff;
  padding: 12px 24px; border-radius: var(--radius-md); text-align: center;
  font-weight: 600; font-size: 14px;
}

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; font-size: 14px; border-radius: var(--radius-md); transition: all 0.18s; border: none; font-family: 'IBM Plex Sans', sans-serif; }
.btn-red { background: var(--red); color: #fff; padding: 13px 28px; box-shadow: 0 2px 12px rgba(184,41,26,0.25); }
.btn-red:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(184,41,26,0.3); }
.btn-outline { background: transparent; color: var(--ink); padding: 12px 26px; border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--ink-2); background: var(--paper-2); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; padding: 13px 28px; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 15px; border-radius: var(--radius-md); }
.btn-arrow::after { content: ' →'; }

/* ─── LAYOUT ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
section { padding: clamp(72px, 10vw, 120px) 0; }
.page-top { padding-top: calc(var(--nav-h) + clamp(72px, 10vw, 120px)); }

/* ─── SECTION LABELS ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 1.5px; background: var(--red); display: inline-block; }
.eyebrow-navy { color: var(--navy-2); }
.eyebrow-navy::before { background: var(--navy-2); }
.eyebrow-white { color: rgba(255,255,255,0.7); }
.eyebrow-white::before { background: rgba(255,255,255,0.4); }

.section-title { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--ink); margin-bottom: 18px; }
.section-title-lg { font-size: clamp(2.4rem, 5vw, 4rem); }
.section-lead { font-size: 1.1rem; color: var(--ink-3); font-weight: 300; max-width: 600px; line-height: 1.75; }

/* ─── DIVIDER ─── */
.rule { width: 100%; height: 1px; background: var(--border); margin: 0; border: none; }

/* ─── TAG / BADGE ─── */
.tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; padding: 4px 12px; border-radius: 50px; }
.tag-red { background: var(--red-light); color: var(--red); }
.tag-navy { background: var(--navy-light); color: var(--navy); }
.tag-gold { background: var(--gold-light); color: #7A5C10; }
.tag-neutral { background: var(--paper-3); color: var(--ink-3); }

/* ─── CARD BASE ─── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.card:hover { box-shadow: var(--shadow); border-color: var(--border); transform: translateY(-3px); }

/* ─── FOOTER ─── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-brand-name em { color: #E8836A; font-style: normal; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; max-width: 300px; color: rgba(255,255,255,0.5); }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.footer-contact-strip { background: rgba(255,255,255,0.04); border-radius: var(--radius-md); padding: 20px 24px; margin-bottom: 48px; display: flex; gap: 40px; flex-wrap: wrap; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; }
.footer-contact-item .ico { width: 32px; height: 32px; border-radius: var(--radius); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-contact-item a { font-size: 13px; color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px); transition: opacity 0.3s, transform 0.3s;
  z-index: 800; border: none; font-size: 18px; box-shadow: 0 4px 16px rgba(184,41,26,0.35);
}
.back-top.show { opacity: 1; transform: none; }
.back-top:hover { background: var(--red-hover); }

/* ─── FADE ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ─── COMPLIANCE BOX ─── */
.compliance-box {
  background: var(--navy-light); border-left: 3px solid var(--navy-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 18px 22px;
}
.compliance-box strong { font-family: 'IBM Plex Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); display: block; margin-bottom: 6px; }
.compliance-box p { font-size: 13.5px; color: var(--ink-3); font-weight: 300; line-height: 1.65; margin: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-contact-strip { flex-direction: column; gap: 16px; }
}