:root{
  --navy:#0f2747;
  --burgundy:#7b1f35;
  --cream:#f7f1e6;
  --gold:#c8a86b;
  --white:#ffffff;
  --text:#1f2430;
  --muted:#6b7280;
  --shadow:0 12px 30px rgba(15,39,71,.10);
  --radius:18px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  color:var(--text);
  background:linear-gradient(180deg,#fff 0%,var(--cream) 100%);
  line-height:1.6;
}

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

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(1120px,92%);
  margin:0 auto;
}

.topbar{
  background:var(--navy);
  color:#fff;
  padding:10px 0;
  font-size:.95rem;
  text-align:center;
  letter-spacing:.02em;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(15,39,71,.08);
}

.nav-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  padding:18px 0 14px;
}

.logo-wrap{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}

.logo{
  width:110px;
  height:auto;
  object-fit:contain;
}

.brand{
  text-align:center;
}

.brand h1{
  margin:0;
  font-size:1.45rem;
  color:var(--navy);
  letter-spacing:.03em;
}

.brand p{
  margin:0;
  color:var(--burgundy);
  font-size:.98rem;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.nav a{
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  font-size:.96rem;
  color:var(--navy);
}

.nav a.active,
.nav a:hover{
  background:var(--navy);
  color:#fff;
}

.hero{
  padding:88px 0 72px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
}

.eyebrow{
  color:var(--burgundy);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.84rem;
  font-weight:700;
}

.hero h2{
  font-size:clamp(2.2rem,4vw,4.4rem);
  line-height:1.04;
  color:var(--navy);
  margin:10px 0 14px;
}

.hero p{
  font-size:1.08rem;
  color:#3b4252;
  max-width:60ch;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  border:2px solid transparent;
  transition:.2s ease;
  cursor:pointer;
}

.btn-primary{
  background:var(--burgundy);
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-primary:hover{
  transform:translateY(-1px);
}

.btn-secondary{
  background:transparent;
  color:var(--navy);
  border-color:var(--navy);
}

.card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,39,71,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-card,
.info-card,
.fee-box,
.calc,
.contact-card,
.review{
  padding:28px;
}

.hero-card h3,
.info-card h3,
.fee-box h3{
  margin-top:0;
  color:var(--navy);
}

.list-check{
  list-style:none;
  padding:0;
  margin:0;
}

.list-check li{
  padding:10px 0 10px 28px;
  position:relative;
  border-bottom:1px solid rgba(15,39,71,.08);
}

.list-check li:last-child{
  border-bottom:none;
}

.list-check li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:10px;
  color:var(--burgundy);
  font-weight:800;
}

.section{
  padding:72px 0;
}

.section-title{
  text-align:center;
  max-width:800px;
  margin:0 auto 34px;
}

.section-title h2{
  margin:0 0 8px;
  color:var(--navy);
  font-size:clamp(1.8rem,2.2vw,2.8rem);
}

.section-title p{
  margin:0;
  color:var(--muted);
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.banner{
  background:linear-gradient(135deg,var(--navy),#193760);
  color:#fff;
  border-radius:28px;
  padding:34px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
}

.banner h3{
  margin:0 0 10px;
}

.table-wrap{
  overflow:auto;
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,39,71,.08);
}

table{
  width:100%;
  border-collapse:collapse;
  min-width:700px;
}

th,
td{
  padding:16px 18px;
  text-align:left;
  border-bottom:1px solid rgba(15,39,71,.08);
}

th{
  background:var(--navy);
  color:#fff;
  font-size:.95rem;
}

tr:last-child td{
  border-bottom:none;
}

.note{
  margin-top:16px;
  background:#fff8eb;
  border-left:5px solid var(--gold);
  padding:16px 18px;
  border-radius:12px;
}

.service-areas{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px 18px;
  margin-top:10px;
}

.service-areas div{
  background:#fff;
  border:1px solid rgba(15,39,71,.08);
  border-radius:12px;
  padding:12px 14px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

label{
  font-weight:700;
  color:var(--navy);
  font-size:.96rem;
}

input,
select,
textarea{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(15,39,71,.18);
  background:#fff;
  font:inherit;
}

.checkbox{
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:#fff;
  padding:16px;
  border-radius:14px;
  border:1px solid rgba(15,39,71,.1);
}

.checkbox input{
  width:auto;
  margin-top:4px;
}

.total-box{
  margin-top:18px;
  padding:20px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--cream),#fff);
  border:1px solid rgba(15,39,71,.1);
}

.total-box .amount{
  font-size:2rem;
  font-weight:800;
  color:var(--burgundy);
}

.disclaimer,
.small{
  font-size:.93rem;
  color:var(--muted);
}

.stars{
  color:var(--gold);
  letter-spacing:.12em;
  font-size:1.1rem;
}

.review p{
  margin:14px 0 10px;
}

.review strong{
  color:var(--navy);
}

.embed-wrap{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,39,71,.08);
  min-height:780px;
}

.about-notary{
  padding:72px 0;
}

.about-notary-grid{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:32px;
  align-items:center;
}

.about-photo-card{
  background:#fff;
  border:1px solid rgba(15,39,71,.08);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:18px;
  max-width:320px;
}

.about-photo{
  width:100%;
  border-radius:18px;
  object-fit:cover;
}

.about-copy{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,39,71,.08);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:30px;
}

.about-copy h3{
  margin-top:0;
  color:var(--navy);
  font-size:1.8rem;
}

.about-copy p{
  margin-bottom:14px;
}

.about-copy .name-line{
  color:var(--burgundy);
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  font-size:.9rem;
}

footer{
  margin-top:50px;
  background:var(--navy);
  color:#fff;
  padding:28px 0;
}

footer p{
  margin:0;
  text-align:center;
  color:#ebedf1;
}

.center{
  text-align:center;
}

@media (max-width:900px){
  .hero-grid,
  .grid-3,
  .grid-2,
  .form-grid,
  .about-notary-grid{
    grid-template-columns:1fr;
  }

  .service-areas{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:60px;
  }

  .banner{
    flex-direction:column;
    align-items:flex-start;
  }

  .about-photo-card{
    max-width:260px;
    margin:0 auto;
  }
}