/* ── SHARED STYLES — drweeting.tech ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1B2A4A;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

:root {
  --navy:         #1B2A4A;
  --navy-mid:     #2E4A7A;
  --accent:       #D85A30;
  --accent-lt:    #F0997B;
  --accent-pale:  #FFF0EC;
  --cream:        #F5F6FA;
  --cream-dark:   #E8EAF0;
  --text-mid:     #3A4A5C;
  --text-muted:   #7A8A9A;
  --border:       rgba(27,42,74,0.1);
  --white:        #FFFFFF;
  /* Footer light */
  --footer-bg:    #E8EBF2;
  --footer-border:#D0D5E4;
  --footer-text:  #3A4A5C;
  --footer-muted: #7A8A9A;
  --footer-link:  #2E4A7A;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: #F0997B; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 600; }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
}
.nav-cta:hover { background: #B03A20 !important; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 5rem 2rem 4rem;
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 1.25rem;
}
.page-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent-lt);
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 700px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--accent-lt);
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  max-width: 580px;
  line-height: 1.7;
}

/* ── SECTION ── */
section { padding: 5.5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.section-heading em { font-style: italic; color: var(--accent); }
.section-lead {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--navy);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-navy:hover { background: var(--accent); transform: translateY(-1px); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.cta-banner h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.cta-banner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.65;
}
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

/* ── FOOTER (light) ── */
footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--accent);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--footer-border);
  margin-bottom: 2rem;
}
.footer-brand-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}
.footer-brand-logo span { color: var(--accent); }
.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--footer-muted);
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  opacity: 0.5;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  font-size: 0.82rem;
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--footer-muted);
}
.footer-bottom a {
  color: var(--footer-link);
  text-decoration: none;
  font-weight: 500;
}
.footer-bottom a:hover { color: var(--accent); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  text-decoration: none;
  font-size: 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
  .page-hero { padding: 4rem 1.25rem 3rem; }
  .nav-links { gap: 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-banner { padding: 2rem 1.5rem; }
}
