/* ============================================================
   AWARENESS MEDIA SOLUTIONS — Design System
   ============================================================ */

:root {
  --navy: #0A1F44;
  --navy-light: #1B2D5A;
  --navy-dark: #06132B;
  --gold: #C9A96E;
  --gold-bright: #D4B782;
  --gold-dark: #A88A52;
  --white: #FFFFFF;
  --offwhite: #FAFAF7;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgba(10, 31, 68, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 16px 48px -8px rgba(10, 31, 68, 0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --container: 1200px;
  --section-pad: 120px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Typography */
h1, h2, h3, h4, .display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; font-family: 'Inter', sans-serif; font-weight: 600; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  display: inline-block;
}

p { margin-bottom: 1rem; color: var(--gray-700); }
p.lead { font-size: 1.2rem; line-height: 1.55; color: var(--gray-700); margin-bottom: 1.5rem; max-width: 640px; }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: var(--section-pad) 0; }
.section-sm { padding: 80px 0; }
.center { text-align: center; }
.max-prose { max-width: 720px; margin-left: auto; margin-right: auto; }

/* Grid */
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  :root { --section-pad: 72px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-arrow::after { content: ' →'; margin-left: 4px; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand-mark {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url('../images/logo.svg') center/contain no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}
.site-footer .brand-mark {
  background-image: url('../images/logo-light.svg');
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { padding: 10px 20px; font-size: 0.88rem; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: all 0.2s; }

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 24px; border-bottom: 1px solid var(--gray-200); gap: 16px; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(201,169,110,0.08), transparent 50%),
    linear-gradient(180deg, var(--offwhite) 0%, var(--white) 100%);
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { font-size: 1.25rem; }
.hero-ctas { display: flex; gap: 16px; margin-top: 2rem; flex-wrap: wrap; }
.hero-meta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.hero-visual h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; margin-bottom: 1.5rem; }
.hero-visual .stat-row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.hero-visual .stat-row:last-child { border: none; }
.hero-visual .stat-row .stat-label { opacity: 0.7; font-size: 0.9rem; }
.hero-visual .stat-row .stat-value { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold-bright); font-weight: 600; }

@media (max-width: 900px) {
  .hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Trust strip */
.trust-strip {
  padding: 32px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  flex-wrap: wrap;
}
.trust-strip-inner span { font-weight: 600; }
.trust-strip-inner .dot { color: var(--gold); }

/* Two-column feature */
.feature-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.feature-card {
  padding: 48px 40px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all 0.2s ease;
}
.feature-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.feature-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.feature-card ul { list-style: none; margin-top: 1.25rem; }
.feature-card li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.feature-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
@media (max-width: 900px) { .feature-pair { grid-template-columns: 1fr; gap: 24px; } }

/* Stats block */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}
.stats h2 { color: var(--white); }
.stats .eyebrow { color: var(--gold-bright); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 3rem; }
.stat-block { text-align: center; padding: 24px 0; }
.stat-block .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-block .stat-desc {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* Comparison checklist */
.checklist {
  max-width: 820px;
  margin: 2rem auto 0;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item .check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.checklist-item .body strong { color: var(--navy); display: block; margin-bottom: 4px; font-size: 1.05rem; }
.checklist-item .body p { margin-bottom: 0; font-size: 0.95rem; }

/* Quote / testimonial */
.quote-card {
  background: var(--gray-50);
  padding: 48px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  margin: 32px 0;
}
.quote-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.quote-card cite { font-style: normal; font-size: 0.9rem; color: var(--gray-500); font-weight: 500; }

/* Process timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 24px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.timeline-step .step-num {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid var(--white);
}
.timeline-step h4 { margin-bottom: 0.5rem; }
.timeline-step p { font-size: 0.92rem; }
@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: 16px; }
  .timeline::before { display: none; }
}

/* CTA Block */
.cta-block {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-block h2 { color: var(--white); }
.cta-block p { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto 2rem; }
.cta-block .btn-primary { margin-top: 1rem; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
  font-size: 0.92rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-grid h5 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-grid a:hover { color: var(--gold-bright); }
.footer-brand .brand { color: var(--white); margin-bottom: 1rem; display: inline-block; }
.footer-brand p { color: rgba(255,255,255,0.55); max-width: 360px; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(201,169,110,0.15), transparent 70%);
}
.page-hero h1 { color: var(--white); max-width: 820px; }
.page-hero .eyebrow { color: var(--gold-bright); }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 720px; font-size: 1.15rem; }
.page-hero-inner { position: relative; z-index: 1; }

/* Generic content block */
.content-block { max-width: 820px; margin: 0 auto; }
.content-block h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-block h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.content-block ul { margin: 1rem 0 1.5rem 1.5rem; }
.content-block li { margin-bottom: 0.5rem; color: var(--gray-700); }
.content-block strong { color: var(--navy); }

/* Card grid */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.card h3 { margin-bottom: 0.75rem; }
.card p:last-child { margin-bottom: 0; }
.card-result {
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}
.card-result h4 { color: var(--navy); margin-bottom: 1rem; font-size: 1rem; }
.card-result .metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 1rem; }
.card-result .metric-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 600;
}
.card-result .metric-label { font-size: 0.82rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.06em; }

/* Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.calendly-embed {
  min-width: 320px;
  height: 700px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  color: var(--gray-500);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Disclosure-page specific */
.disclosure-block {
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  font-size: 0.95rem;
}
.disclosure-block h3 { font-size: 1.1rem; }

/* Utility */
.text-gold { color: var(--gold-dark); }
.text-navy { color: var(--navy); }
.bg-gray { background: var(--gray-50); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
