/* TrustKeeper — Estate Planning Landing Page */
:root {
  --bg: #faf8f4;
  --bg-alt: #f3f0ea;
  --fg: #1a2744;
  --fg-muted: #5a6480;
  --accent: #c9a84c;
  --accent-dark: #a8893a;
  --white: #ffffff;
  --border: #e5e0d8;
  --navy-light: #2d3a52;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 24px;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.3px;
}
nav { display: flex; gap: 36px; }
nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }

/* Section inner */
.approach-inner,
.services-inner,
.proof-inner,
.about-inner,
.closing-inner,
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* HERO */
.hero {
  padding: 100px 24px 90px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-credentials {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}
.dot { color: var(--accent); }

/* Hero cards */
.hero-visual { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(26,39,68,0.06);
}
.hero-card--secondary { background: var(--fg); }
.hero-card--secondary .card-text { color: rgba(255,255,255,0.8); }
.card-icon { margin-bottom: 14px; }
.card-text { font-size: 14px; line-height: 1.5; color: var(--fg-muted); font-weight: 400; }
.hero-card--secondary .card-text { color: rgba(255,255,255,0.75); }

/* APPROACH */
.approach { padding: 100px 0; background: var(--white); }
.approach-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.approach-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  max-width: 680px;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.approach-body { max-width: 640px; margin-bottom: 64px; }
.approach-body p { font-size: 17px; color: var(--fg-muted); margin-bottom: 18px; }

/* Pillars */
.approach-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.5;
}
.pillar-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.pillar-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* SERVICES */
.services { padding: 100px 0; background: var(--bg); }
.services-header { margin-bottom: 64px; }
.services-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.services-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: var(--fg);
  max-width: 560px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(26,39,68,0.08);
  transform: translateY(-2px);
}
.service-icon { color: var(--accent); margin-bottom: 18px; }
.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* PROOF */
.proof { padding: 100px 0; background: var(--fg); color: var(--white); }
.proof .proof-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}
.proof-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.proof-quote cite {
  font-size: 13px;
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 56px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ABOUT */
.about { padding: 100px 0; background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.about-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.about-text p { font-size: 16px; color: var(--fg-muted); margin-bottom: 18px; line-height: 1.7; }
.about-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.about-credentials { display: flex; flex-direction: column; gap: 28px; }
.credential-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.credential-value {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.55;
}

/* CLOSING */
.closing { padding: 100px 0; background: var(--bg); }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 0;
}
.closing-rule {
  margin-top: 56px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
  max-width: 320px;
}
.closing-cta {
  display: inline-block;
  margin-top: 32px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}
.closing-cta:hover { background: var(--accent-dark); }

/* FOOTER */
.site-footer {
  background: var(--fg);
  padding: 56px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.footer-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-disclaimer p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 72px; }
  .hero-visual { flex-direction: row; flex-wrap: wrap; }
  .hero-card { flex: 1; min-width: 240px; }
  .approach-pillars { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 24px; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  nav { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .hero-credentials { flex-wrap: wrap; gap: 6px; }
  .closing-headline br { display: none; }
}