/* ============================================
   Brandon J. Davis Notary Services, LLC
   Light theme. White background, navy + gold.
   Mirrors the Canva build.
   ============================================ */

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

:root {
  --navy: #0d1b30;
  --navy-deep: #0a1628;
  --gold: #c9a24b;
  --gold-bright: #d9b968;
  --gold-soft: #e8d49a;
  --white: #ffffff;
  --offwhite: #faf8f4;
  --gray-bg: #f5f3ee;
  --text-dark: #1c2433;
  --text-body: #4a5160;
  --text-muted: #8a92a0;
  --line: #e6e2d8;
  --line-soft: #eeeae0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 42px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }

.title-rule { width: 64px; height: 2px; background: var(--gold); margin: 20px 0 0; }
.title-rule.center { margin: 20px auto 0; }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px; max-width: 1180px; margin: 0 auto;
}
.nav .brand { display: flex; align-items: center; gap: 12px; }
.nav .brand img { height: 56px; width: auto; border-radius: 6px; }
.nav .brand .bn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; line-height: 1.15; color: var(--navy);
  display: flex; flex-direction: column; white-space: nowrap;
}
.nav .brand .bn small {
  font-family: 'Outfit', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px; font-weight: 500;
}
.nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.nav ul a {
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dark); font-weight: 400; transition: color 0.2s;
}
.nav ul a:hover, .nav ul a.active { color: var(--gold); }
.nav .cta-phone {
  background: var(--navy); color: var(--white);
  padding: 12px 22px; border-radius: 4px; font-weight: 500;
  font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; transition: background 0.2s;
}
.nav .cta-phone:hover { background: var(--gold); color: var(--navy); }
.menu-toggle { display: none; background: none; border: none; color: var(--navy); font-size: 1.6rem; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 15px 30px; border-radius: 4px; font-weight: 500; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; transition: all 0.22s; cursor: pointer; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--gold); color: var(--navy); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { padding: 90px 0 84px; background: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(3rem, 6.5vw, 5rem); margin-bottom: 24px; }
.hero h1 .done { display: block; font-style: italic; color: var(--gold); }
.hero .lede { font-size: 1.15rem; color: var(--text-body); margin-bottom: 22px; }
.hero .body { color: var(--text-body); margin-bottom: 30px; max-width: 540px; }
.hero-art {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 30px;
}
.hero-art .halo {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, var(--gray-bg), transparent 70%);
  border-radius: 50%;
}
.hero-art img { position: relative; width: 78%; max-width: 360px; border-radius: 14px; box-shadow: 0 24px 60px rgba(13,27,48,0.18); }

.pills { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.pill {
  display: flex; align-items: center; gap: 12px;
  background: var(--offwhite); border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 13px 18px; border-radius: 4px;
  font-size: 0.92rem; color: var(--text-dark); font-weight: 400;
}
.pill::before { content: "\2726"; color: var(--gold); font-size: 0.9rem; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.section-head .intro { color: var(--text-body); font-size: 1.08rem; margin-top: 18px; }

.alt { background: var(--gray-bg); }
.navy-section { background: var(--navy); }
.navy-section h2, .navy-section h3 { color: var(--white); }
.navy-section .eyebrow { color: var(--gold-bright); }
.navy-section .eyebrow::before { background: var(--gold-bright); }
.navy-section p { color: #c4cbd6; }

/* ---------- Service cards (What I Offer) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.svc-card {
  background: var(--offwhite); border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 30px 22px; border-radius: 4px; transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(13,27,48,0.10); }
.svc-card .ic {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 18px;
}
.svc-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.92rem; color: var(--text-body); }

/* ---------- How it works ---------- */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.how-step .num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700;
  margin-bottom: 22px;
}
.how-step h3 { font-size: 1.6rem; margin-bottom: 10px; color: var(--white); }
.how-step p { color: #c4cbd6; }

/* ---------- Where I serve (county cards) ---------- */
.county-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.county-card { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: var(--white); transition: box-shadow 0.2s, transform 0.2s; }
.county-card:hover { box-shadow: 0 16px 40px rgba(13,27,48,0.10); transform: translateY(-3px); }
.county-card .head {
  background: var(--navy); color: var(--white);
  padding: 22px 26px; display: flex; align-items: center; gap: 12px;
}
.county-card .head::before { content: "\2726"; color: var(--gold-bright); }
.county-card .head h3 { color: var(--white); font-size: 1.5rem; }
.county-card ul { list-style: none; padding: 14px 26px 26px; }
.county-card ul li { padding: 11px 0; border-bottom: 1px solid var(--line-soft); color: var(--text-body); position: relative; padding-left: 18px; }
.county-card ul li:last-child { border-bottom: none; }
.county-card ul li::before { content: ""; position: absolute; left: 0; top: 50%; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); transform: translateY(-50%); }
.county-card .clink { display: block; padding: 14px 26px; border-top: 1px solid var(--line); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.county-card .clink:hover { color: var(--gold); }

/* ---------- Split (About) ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.split-img { position: relative; padding: 16px; }
.split-img::before { content: ""; position: absolute; inset: 0; border: 1.5px solid var(--gold); border-radius: 4px; }
.split-img img { position: relative; width: 100%; border-radius: 2px; display: block; }
.split h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 8px; }
.split p { color: var(--text-body); margin-bottom: 16px; }
.quote { border-left: 3px solid var(--gold); padding-left: 20px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.6rem; color: var(--gold); margin-top: 26px; }

/* ---------- Checks ---------- */
.checks { list-style: none; margin: 20px 0; }
.checks li { padding: 9px 0 9px 30px; position: relative; color: var(--text-body); }
.checks li::before { content: "\2726"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Contact cards ---------- */
.touch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; max-width: 920px; margin: 0 auto; }
.touch-cell { padding: 36px 28px; text-align: center; border-right: 1px solid var(--line); }
.touch-cell:last-child { border-right: none; }
.touch-cell .lbl { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--gold); margin-bottom: 12px; }
.touch-cell .val { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--navy); word-break: break-word; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); text-align: center; }
.cta-band h2 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.cta-band p { color: #c4cbd6; margin-bottom: 28px; font-size: 1.08rem; }
.cta-band .phone-big { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold-bright); display: inline-block; }

/* ---------- Page intro ---------- */
.page-intro { padding: 76px 0 56px; background: var(--gray-bg); border-bottom: 1px solid var(--line); }
.page-intro h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
.page-intro .intro { color: var(--text-body); font-size: 1.1rem; margin-top: 18px; max-width: 640px; }

/* ---------- Prose ---------- */
.prose { max-width: 780px; }
.prose.center { margin: 0 auto; text-align: center; }
.prose h2 { font-size: 2.1rem; margin: 36px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.5rem; margin: 28px 0 10px; color: var(--gold); }
.prose p { color: var(--text-body); margin-bottom: 16px; }
.prose strong { color: var(--navy); font-weight: 500; }

/* ---------- Footer ---------- */
footer.site { background: var(--navy); padding: 60px 0 30px; }
.footer-top { text-align: center; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
footer.site .flogo { height: 70px; border-radius: 8px; margin: 0 auto 18px; display: block; }
footer.site .fname { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--white); }
footer.site .ftag { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--gold-bright); margin-top: 8px; }
.footer-links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin: 28px 0; }
.footer-links a { color: #c4cbd6; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-badges { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 28px; }
.footer-badges img { height: 84px; width: auto; }
@media (max-width: 760px) { .footer-badges img { height: 70px; } }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #8a92a0; padding-top: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; }
}
@media (max-width: 760px) {
  .how-grid, .county-grid { grid-template-columns: 1fr; }
  .touch-grid { grid-template-columns: 1fr; }
  .touch-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .touch-cell:last-child { border-bottom: none; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .svc-grid { grid-template-columns: 1fr; }
  .nav ul { display: none; }
  .nav ul.open { display: flex; position: absolute; top: 86px; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 22px 32px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
  .menu-toggle { display: block; }
  .nav .cta-phone { display: none; }
}
