/*
Theme Name: Seal the Moment Notary
Theme URI: https://sealthemomentnotary.com/
Author: Needa Robinson
Description: A modern, fast one-page theme for Seal the Moment Notary (hero, services, about, FAQ, contact).
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stm-notary
Tags: one-column, custom-logo, custom-menu, featured-images, block-styles
*/

:root{
  --bg:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --line:#e5e7eb;
  --card:#f8fafc;
  --brand:#1d4ed8;
  --brand2:#0a2a5e;
  --shadow: 0 10px 30px rgba(2, 6, 23, .10);
  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
.container{ max-width: var(--max); margin:0 auto; padding: 0 20px; }

/* Header */
.site-header{
  position: static;
  background: #ffffff;
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width: 240px;
}
.brand img{ width:42px; height:42px; }
.brand .name{ font-weight:800; letter-spacing:.2px; }
.brand .tag{ font-size:12px; color:var(--muted); margin-top:1px; }

.menu{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.menu a{ color:var(--muted); font-weight:600; font-size:14px; }
.menu a:hover{ color: var(--ink); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--brand);
  color:white;
  font-weight:700;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 10px 24px rgba(29,78,216,.22);
  white-space: nowrap;
}
.btn:hover{ filter: brightness(.98); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

/* Hero */
.hero{
  padding: 72px 0 38px;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(29,78,216,.20), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(10,42,94,.18), transparent 58%),
    linear-gradient(180deg, rgba(248,250,252,1), rgba(255,255,255,1));
  border-bottom:1px solid var(--line);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.h1{
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.04;
  margin: 14px 0 12px;
  letter-spacing: -0.8px;
}
.lead{
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 18px;
  max-width: 58ch;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; align-items:center; }

.ghost{
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  font-weight: 750;
}
.ghost:hover{ background: var(--card); }

.hero-card{
  justify-self: end;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-card h3{ margin: 0 0 10px; font-size: 16px; }
.pill{
  display:flex; gap:10px; align-items:flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--card);
  border:1px solid var(--line);
  margin-bottom: 10px;
}
.pill b{ display:block; }
.pill span{ color: var(--muted); font-size: 13px; }

/* Sections */
section{ padding: 56px 0; }
.section-title{ font-size: 28px; margin: 0 0 10px; letter-spacing: -0.3px; }
.section-sub{ color: var(--muted); margin: 0 0 24px; max-width: 75ch; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  background: white;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 6px 18px rgba(2,6,23,.06);
}
.card h3{ margin: 0 0 8px; font-size: 16px; }
.card p{ margin: 0; color: var(--muted); font-size: 14px; }

.two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.faq details{
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px;
  background: white;
  margin-bottom: 10px;
}
.faq summary{
  cursor:pointer;
  font-weight: 750;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq p{ color: var(--muted); margin: 10px 0 0; }

.contact{
  background: linear-gradient(180deg, rgba(248,250,252,1), rgba(255,255,255,1));
  border-top:1px solid var(--line);
}
.contact-grid{
  display:grid;
  grid-template-columns: 1fr .95fr;
  gap: 18px;
  align-items: start;
}
.contact-box{
  background: white;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.list{ margin:0; padding-left: 18px; color: var(--muted); }
.fineprint{ color: var(--muted); font-size: 12px; margin-top: 12px; }

.site-footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .two{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
}


/* --- Centered layout adjustments (requested) --- */
.hero-grid{
  grid-template-columns: 1fr !important;
  justify-items: center;
  text-align: center;
}
.hero-copy{
  max-width: 780px;
}
.hero-actions{
  justify-content: center;
}
.kicker{
  margin-left: auto;
  margin-right: auto;
}
.quick-strip{
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 12px;
  max-width: var(--max);
  margin: 12px auto 18px;
  padding: 0 0;
}
.quick-strip .pill{
  margin: 0;
  text-align: left;
}
@media (max-width: 920px){
  .quick-strip{ grid-template-columns: 1fr; }
  .quick-strip .pill{ text-align: left; }
}

/* Center section headings and keep content readable */
section .section-title,
section .section-sub{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.cards{
  justify-items: center;
}
.card{
  width: 100%;
}


/* Center the hero lead paragraph */
.lead{
  margin-left: auto;
  margin-right: auto;
}


/* Force non-sticky header (override any plugin/custom CSS) */
header.site-header, .site-header{
  position: static !important;
  top: auto !important;
  backdrop-filter: none !important;
}
