
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy: #0a1628;
  --red: #C8102E;
  --red-dark: #9e0c24;
  --cream: #F8F5F0;
  --warm-white: #FDFCFA;
  --text-primary: #0a1628;
  --text-secondary: #4a5568;
  --text-muted: #8a9ab5;
  --border: rgba(10,22,40,0.08);
  --gold: #C9A84C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--text-primary); overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,22,40,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200,16,46,0.3); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; z-index: 101; }
.nav-logo img { width: 40px; height: 40px; object-fit: contain; }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 16px; color: white; line-height: 1.1; }
.nav-brand span { color: var(--red); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 101; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7); text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-cta { background: var(--red) !important; color: white !important; padding: 8px 16px !important; border-radius: 4px !important; }
.nav-phone { font-family: 'DM Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.6) !important; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: white; padding: 14px 28px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--navy); padding: 13px 28px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; border: 1.5px solid var(--navy); transition: all 0.2s; }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: white; padding: 13px 28px; border-radius: 4px; font-size: 14px; font-weight: 600; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4); transition: all 0.2s; }
.btn-outline-white:hover { background: white; color: var(--navy); }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }

.page-hero { background: var(--navy); padding: 120px 24px 60px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,16,46,0.15), transparent 60%); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 6vw, 72px); font-weight: 900; color: white; margin-bottom: 16px; line-height: 1.05; }
.page-hero h1 em { font-style: italic; color: var(--red); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.7; }

footer { background: var(--navy); color: white; padding: 60px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 14px; }
.footer-tagline { font-family: 'Playfair Display', serif; font-size: 19px; color: white; margin-bottom: 8px; line-height: 1.2; }
.footer-tagline span { color: var(--red); }
.footer-sub { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-contact a { display: block; font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 6px; transition: color 0.2s; }
.footer-contact a:hover { color: white; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 4px 10px; border: 1px solid rgba(255,255,255,0.1); border-radius: 2px; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links { position: fixed !important; top: 0 !important; left: 0 !important; width: 100vw !important; height: 100vh !important; background: #0a1628 !important; flex-direction: column !important; justify-content: center !important; align-items: center !important; gap: 32px !important; z-index: 9999 !important; transform: translateX(100%); transition: transform 0.3s ease; overflow: hidden !important; }
  .nav-links.open { transform: translateX(0) !important; }
  .nav-links a { font-size: 18px; }
  .nav-cta { padding: 12px 24px !important; }
  .nav-phone { font-size: 16px !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col { display: none; }
  .page-hero { padding: 100px 20px 48px; }
  .btn-primary, .btn-outline, .btn-outline-white { padding: 12px 20px; font-size: 13px; width: 100%; justify-content: center; }
}
