/* =============================================
   BWH99 LLC — Global Styles
   Brand: Navy, Teal, Amber, Cream
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:   #1B2A4A;
  --teal:   #2A7F7F;
  --amber:  #E8A838;
  --cream:  #FAF6EF;
  --white:  #FFFFFF;
  --text:   #2C2C2C;
  --muted:  #6B7280;
  --border: rgba(27,42,74,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--navy);
  line-height: 1.2;
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-logo span { color: var(--amber); }

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--amber); text-decoration: none; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(42,127,127,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background: rgba(232,168,56,0.15);
  border: 1px solid rgba(232,168,56,0.4);
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span { color: var(--amber); }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ── SECTIONS ── */
.section {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.section p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 680px;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(27,42,74,0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(42,127,127,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── PRIVACY PAGE ── */
.privacy-hero {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.privacy-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3rem); }
.privacy-hero p { color: rgba(255,255,255,0.65); margin-top: 0.75rem; }

.privacy-content {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem 4rem;
}

.privacy-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--amber);
  display: inline-block;
}

.privacy-content p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.privacy-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.privacy-content ul li {
  color: var(--muted);
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
}

.privacy-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.85rem;
}

.privacy-meta {
  background: rgba(42,127,127,0.08);
  border-left: 4px solid var(--teal);
  padding: 1rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

footer a:hover { color: var(--amber); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.8rem; }
  .hero { padding: 3.5rem 1.25rem; }
  .section { padding: 3rem 1.25rem; }
}
