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

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #1C2B33;
  --off-white: #F7F3EA;
  --warm-mid: #EFE7D9;
  --slate: #5E7686;
  --deep-ocean: #2B3B47;
  --mid-ocean: #6E889B;
  --surface: #5B9A8B;
  --foam: #BFD6CD;
  --seafoam: #EDF3F0;
  --warm-accent: #D98F70;
  --warm-light: #F7EAE3;
  --rule: #D7D1C2;
  --im-teal: #3D7A6E;
  --im-teal-light: #E3EEE9;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
.site-nav {
  background: rgba(247,243,234,0.96);
  border-bottom: 1px solid var(--rule);
  padding: 0 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo svg { width: 48px; height: 28px; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }
.logo-dolce {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--deep-ocean);
  letter-spacing: -0.3px;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--slate);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--deep-ocean); }
.nav-links a.active { color: var(--deep-ocean); font-weight: 600; }
.nav-cta {
  background: var(--deep-ocean) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: 7px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--mid-ocean) !important; color: white !important; }

/* mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ── PAGE HEROES (interior pages) ── */
.page-hero {
  background: linear-gradient(180deg, #1C2B33 0%, #3E5468 54%, #6E889B 100%);
  padding: 72px 52px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -5%; width: 110%;
  height: 50px;
  background: var(--off-white);
  border-radius: 50% 50% 0 0;
}
.page-hero-eye {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(214,227,221,0.6);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 46px;
  line-height: 1.1;
  color: #F5F1E8;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  max-width: 680px;
}
.page-hero h1 em { font-style: italic; color: #E3A283; }
.page-hero p {
  font-size: 17px;
  color: rgba(214,227,221,0.75);
  line-height: 1.7;
  max-width: 560px;
}

/* ── SECTIONS ── */
.section { padding: 80px 52px; }
.section-sm { padding: 56px 52px; }
.section-dark { background: var(--ink); }
.section-mid { background: var(--warm-mid); }
.section-white { background: var(--off-white); }
.section-seafoam { background: var(--seafoam); }

.sec-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 48px;
}
.sec-eye {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--slate);
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.sec-eye-light { color: rgba(214,227,221,0.4); }
.sec-rule { flex: 1; height: 1px; background: var(--rule); }
.sec-rule-dark { background: #28363E; }

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
h2.light { color: #F5F1E8; }
h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

p.lead {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 620px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}
.btn-ocean { background: var(--deep-ocean); color: white; }
.btn-ocean:hover { background: var(--mid-ocean); }
.btn-warm { background: var(--warm-accent); color: white; }
.btn-warm:hover { background: #B5704F; }
.btn-white { background: white; color: var(--deep-ocean); }
.btn-white:hover { background: var(--seafoam); }
.btn-outline-light {
  border: 1.5px solid rgba(214,227,221,0.3);
  color: rgba(214,227,221,0.8);
  background: transparent;
}
.btn-outline-light:hover { border-color: rgba(214,227,221,0.6); color: white; }
.btn-teal { background: var(--im-teal); color: white; }
.btn-teal:hover { background: #2E5B50; }

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--deep-ocean);
  padding: 14px 52px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.proof-label {
  font-size: 11px;
  color: rgba(214,227,221,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.proof-divider { width: 1px; height: 16px; background: rgba(214,227,221,0.2); }
.proof-logos { display: flex; gap: 32px; align-items: center; flex: 1; flex-wrap: wrap; }
.proof-logo { font-size: 13px; color: rgba(214,227,221,0.5); font-weight: 500; }

/* ── QUOTE CARDS ── */
.quote-card {
  background: var(--seafoam);
  border-radius: 14px;
  padding: 28px;
  border-left: 3px solid var(--mid-ocean);
  margin-bottom: 16px;
}
.quote-card.warm { background: var(--warm-light); border-left-color: var(--warm-accent); }
.qt {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 16px;
}
.qa { font-size: 12px; color: var(--slate); font-weight: 500; }
.qr { display: block; font-size: 11px; margin-top: 3px; color: var(--mid-ocean); }
.qr.warm { color: var(--warm-accent); }

/* ── SIGNAL LIST ── */
.signal-list { list-style: none; margin-top: 22px; }
.signal-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 11px;
}
.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mid-ocean);
  margin-top: 8px;
  flex-shrink: 0;
}
.sdot.warm { background: var(--warm-accent); }

/* ── CREDENTIAL BADGES ── */
.cred-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.badge {
  background: #FAF6EF;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--deep-ocean);
  font-weight: 600;
  white-space: nowrap;
}

/* ── IM BADGE ── */
.im-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--im-teal);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.5px;
}

/* ── CTA SECTION ── */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1C2B33 0%, #3E5468 62%, #5B9A8B 100%);
  padding: 80px 52px;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(91,154,139,0.24) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(214,227,221,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: white; font-size: 40px; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p {
  color: rgba(214,227,221,0.75);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-band .btn-row { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background: #16232B;
  padding: 52px 52px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2E4A58;
}
.footer-logo-dolce {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #F5F1E8;
}
.footer-logo-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #A8C4CE;
  font-weight: 500;
}
.footer-brand-desc { font-size: 12px; color: #A8C4CE; margin-top: 12px; line-height: 1.65; }
.footer-im-note { font-size: 11px; color: #7BBDD0; margin-top: 8px; }
.footer-im-note a { color: #95D0DF; text-decoration: none; }
.footer-col h4 {
  font-size: 10px;
  color: #A8C4CE;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { text-decoration: none; font-size: 13px; color: #C4D8E2; transition: color 0.15s; }
.footer-col ul a:hover { color: #F5F1E8; }
.footer-col ul a.ext::after { content: ' ↗'; font-size: 10px; opacity: 0.6; }
.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 11px; color: #A8C4CE; }

/* ── LOGO SVG INLINE ── */
.logo-svg-dark path:first-child { stroke: #F5F1E8; }
.logo-svg-dark path:last-child { stroke: #E3A283; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--off-white); border-bottom: 1px solid var(--rule); padding: 16px 20px 20px; gap: 14px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .page-hero { padding: 48px 20px 56px; }
  .page-hero h1 { font-size: 32px; }
  .section, .section-sm { padding: 52px 20px; }
  h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proof-bar { padding: 14px 20px; flex-wrap: wrap; gap: 12px; }
  .cta-band { padding: 56px 20px; }
  .cta-band h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
