:root {
  --navy:       #0D1F3C;
  --navy-mid:   #1A3560;
  --navy-soft:  #162C55;
  --gold:       #276EF1;
  --gold-light: #5A91F5;
  --gold-pale:  #EAF0FF;
  --cream:      #F9FAFC;
  --white:      #FFFFFF;
  --slate:      #5A6478;
  --muted:      #8A94A8;
  --border:     #E2E8F0;
  --r:          14px;
  --s1: 0 2px 16px rgba(13,31,60,.05);
  --s2: 0 8px 40px rgba(13,31,60,.08);
  --s3: 0 20px 60px rgba(13,31,60,.12);
  --fd: 'Montserrat', sans-serif;
  --fb: 'Open Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 85px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo {
  font-family: var(--fd); font-size: 2rem; font-weight: 700;
  color: var(--navy); text-decoration: none; letter-spacing: -.02em;
}
.nav-links {
  display: flex; gap: 3rem; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 1.05rem; font-weight: 600; color: var(--slate);
  text-decoration: none; transition: color .2s;
}
.nav-links > li > a {
  display: inline-flex; align-items: center;
}
.nav-links a:hover { color: var(--gold); }
.nav-links > li.menu-item-has-children > a::after {
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  content: '\f078'; font-size: .6em;
  margin-left: .45em; transition: transform .2s;
  line-height: 1;
}
.nav-links > li.menu-item-has-children:hover > a::after { transform: rotate(180deg); }
.nav-links .sub-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 230px; list-style: none;
  background: var(--white); border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgba(13,31,60,.08), 0 12px 28px -4px rgba(13,31,60,.14);
  border: 1px solid rgba(13,31,60,.08);
  padding: .4rem 0; z-index: 300;
}
.nav-links .sub-menu::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
}
.nav-links .sub-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 1.25rem;
  font-size: .95rem; font-weight: 500; color: var(--navy); white-space: nowrap;
  transition: color .15s;
}
.nav-links .sub-menu a:hover { color: var(--gold); background: none; }
.nav-links .sub-menu > li { position: relative; }
.nav-links .sub-menu > li.menu-item-has-children > a::after {
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  content: '\f054'; font-size: .6em;
  display: inline-block; margin-left: .75rem; flex-shrink: 0;
  border: none; float: none; margin-top: 0;
}
.nav-links .sub-menu .sub-menu {
  top: -.5rem; left: 100%;
}
@media (min-width: 961px) {
  .nav-links > li:hover > .sub-menu,
  .nav-links > li:focus-within > .sub-menu { display: block; }
  .nav-links .sub-menu > li:hover > .sub-menu,
  .nav-links .sub-menu > li:focus-within > .sub-menu { display: block; }
}
.sub-menu-toggle { display: none; }
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  padding: 0; flex-shrink: 0; color: var(--navy); font-size: 1.35rem;
  transition: color .2s;
}
.nav-toggle:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--white);
  padding: .8rem 1.8rem; border-radius: 8px;
  font-size: 1.05rem; font-weight: 600; text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--gold-light); }

.hero {
  min-height: 100vh; padding: 140px 6% 90px;
  background: var(--navy);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 5rem; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 600px at 85% 45%, rgba(39,110,241,.15) 0%, transparent 65%),
    radial-gradient(ellipse 300px 300px at 5% 85%, rgba(39,110,241,.1) 0%, transparent 60%);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.6rem;
}
.eyebrow-line { width: 28px; height: 2px; background: var(--gold); }
h1 {
  font-family: var(--fd); font-size: clamp(2.4rem,4.5vw,4rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -.02em;
  color: var(--white); margin-bottom: 1.4rem;
}
h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead {
  font-size: 1.05rem; color: rgba(255,255,255,.7);
  line-height: 1.7; max-width: 500px; margin-bottom: 2.8rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.6rem; }
.btn-gold {
  background: var(--gold); color: var(--white);
  padding: .9rem 2.2rem; border-radius: 9px;
  font-weight: 600; font-size: .94rem; text-decoration: none;
  transition: all .25s;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(39,110,241,.3);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.9);
  padding: .9rem 2rem; border-radius: 9px;
  font-weight: 500; font-size: .94rem; text-decoration: none;
  transition: all .25s;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.hero-nums { display: flex; gap: 2.5rem; }
.hero-num .n {
  font-family: var(--fd); font-size: 1.4rem; font-weight: 700;
  color: var(--gold-light); line-height: 1;
}
.hero-num .l { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .3rem; }

.breadcrumb {
  font-size: .85rem; color: rgba(255,255,255,.5);
  margin-bottom: 1.2rem; position: relative; z-index: 2;
}
.breadcrumb > span { display: inline-flex; align-items: center; flex-wrap: wrap; gap: .3rem; }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.8); }
.breadcrumb .breadcrumb_last { color: rgba(255,255,255,.8); font-weight: 600; }
.breadcrumb .breadcrumb-separator { color: rgba(255,255,255,.35); font-weight: 400; }
.city-chip {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(39,110,241,.15); border: 1px solid rgba(39,110,241,.4);
  color: var(--gold-light); padding: .5rem 1.2rem; border-radius: 100px;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 1.5rem; position: relative; z-index: 2;
}
.city-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light);
  box-shadow: 0 0 8px var(--gold-light);
}
.hero-bullets {
  list-style: none; margin-bottom: 2.6rem;
  display: flex; flex-direction: column; gap: .8rem; position: relative; z-index: 2;
}
.hero-bullets li {
  display: flex; align-items: center; gap: .8rem;
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.8);
}
.hb-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(39,110,241,.2); border: 1px solid rgba(39,110,241,.5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: .7rem; color: var(--gold-light);
}

.form-card {
  background: var(--white); border-radius: 20px;
  padding: 2.4rem 2.2rem; box-shadow: var(--s3);
  position: relative; z-index: 2;
}
.fc-badge {
  display: inline-block; background: var(--gold-pale); color: var(--gold);
  font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.form-card h2 {
  font-family: var(--fd); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: .5rem;
}
.fc-sub { font-size: .9rem; color: var(--slate); margin-bottom: 1.6rem; }
.fg { margin-bottom: 1rem; }
.fg label {
  display: block; font-size: .75rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0rem; letter-spacing: .02em; text-transform: uppercase;
}
.fg input, .fg select {
  width: 100%; padding: .8rem 1rem; border-radius: 9px;
  border: 1px solid var(--border); background: var(--cream);
  font-family: var(--fb); font-size: .95rem; color: var(--navy);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.fg input:focus, .fg select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(39,110,241,.1);
}
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.fc-btn {
  width: 100%; background: var(--navy); color: var(--white);
  border: none; border-radius: 9px; padding: 1.1rem;
  font-family: var(--fb); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all .25s; margin-top: .5rem;
}
.fc-btn:hover { background: var(--navy-mid); transform: translateY(-1px); }
.fc-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: -19px; }

.form-card .wpcf7 { width: 100%; }
.form-card .wpcf7-form-control-wrap { display: block; }
.form-card .wpcf7-form-control-wrap input,
.form-card .wpcf7-form-control-wrap select,
.form-card .wpcf7-form-control-wrap textarea {
  width: 100%; padding: .8rem 1rem; border-radius: 9px;
  border: 1px solid var(--border); background: var(--cream);
  font-family: var(--fb); font-size: .95rem; color: var(--navy);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-card .wpcf7-form-control-wrap input:focus,
.form-card .wpcf7-form-control-wrap select:focus,
.form-card .wpcf7-form-control-wrap textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(39,110,241,.1);
}
.form-card .wpcf7-not-valid-tip { font-size: .72rem; color: #e53e3e; margin-top: .25rem; display: block; }
.form-card .wpcf7-response-output {
  margin-top: 1rem; padding: .75rem 1rem; border-radius: 9px;
  font-size: .82rem; border: 1px solid var(--border);
}
.form-card .wpcf7-mail-sent-ok { border-color: #38a169; color: #38a169; background: #f0fff4; }
.form-card .wpcf7-validation-errors,
.form-card .wpcf7-spam-blocked { border-color: #e53e3e; color: #e53e3e; background: #fff5f5; }

.sec { padding: 6.5rem 6%; }
.sec-inner { max-width: 1100px; margin: 0 auto; }
.label {
  font-family: var(--fd); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem;
}
h2 {
  font-family: var(--fd); font-size: clamp(1.8rem,3vw,2.4rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -.01em; color: var(--navy);
}
.sub { color: var(--slate); font-size: 1.05rem; line-height: 1.7; margin-top: 1rem; max-width: 600px; }
.center { text-align: center; }
.center .sub { margin-inline: auto; }

.why { background: var(--white); }
.why--sp { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.wc {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); padding: 2rem; transition: all .3s;
}
.why--sp .wc { background: var(--white); }
.wc:hover { transform: translateY(-5px); box-shadow: var(--s2); border-color: var(--gold-pale); }
.wc-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--gold-pale); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.5rem;
}
.wc h3 { font-family: var(--fd); font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.wc p { font-size: .9rem; color: var(--slate); line-height: 1.7; }

.seo-text { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.seo-content { max-width: 800px; margin: 0 auto; }
.seo-content h2 { margin-bottom: 1.5rem; font-size: 1.8rem; }
.seo-content p { font-size: .95rem; color: var(--slate); line-height: 1.8; margin-bottom: 1.2rem; }
.seo-content h3 {
  font-family: var(--fd); font-size: 1.4rem; font-weight: 700;
  color: var(--navy); margin: 2.5rem 0 1rem;
}
.seo-content ul { margin: 1rem 0 2rem 1.5rem; }
.seo-content li { font-size: 1rem; color: var(--slate); margin-bottom: .6rem; line-height: 1.7; }
.seo-content-img { width: 100%; height: auto; border-radius: var(--r); margin: 2rem 0; display: block; }

.seo-split { background: var(--white); }
.seo-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.seo-split-text p { font-size: 1.05rem; color: var(--slate); line-height: 1.8; margin-bottom: 1.5rem; }
.seo-split-text ul { margin: 1rem 0 2rem 1.5rem; }
.seo-split-text li { font-size: 1.05rem; color: var(--slate); margin-bottom: .6rem; line-height: 1.7; }
.seo-split-text strong { color: var(--navy); font-weight: 600; }
.seo-split-img { width: 100%; height: auto; border-radius: var(--r); display: block; }

.process { background: var(--navy); }
.process .label { color: var(--gold-light); }
.process h2 { color: var(--white); }
.process .sub { color: rgba(255,255,255,.5); }
.p-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;
  margin-top: 4.5rem; position: relative;
}
.p-steps::before {
  content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(39,110,241,.4) 15%, rgba(39,110,241,.4) 85%, transparent);
  z-index: 1;
}
.ps { text-align: center; padding: 0 1rem; position: relative; z-index: 2; }
.ps-num {
  width: 70px; height: 70px; border-radius: 50%;
  border: 1px solid rgba(39,110,241,.4); background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--fd); font-size: 1.2rem; font-weight: 600; color: var(--gold-light);
  transition: all .3s;
}
.ps:hover .ps-num { border-color: var(--gold-light); background: rgba(39,110,241,.1); transform: scale(1.05); }
.ps h3 { font-family: var(--fd); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
.ps p { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 2rem; }
.about-img-box {
  background: var(--gold-pale); border-radius: 20px;
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-text p { font-size: 1.05rem; color: var(--slate); line-height: 1.8; margin-bottom: 1.5rem; }
.about-text h2 { margin-bottom: 1rem; }

.faq-section { background: var(--cream); }
.faq-sec { background: var(--cream); border-top: 1px solid var(--border); }
.faq-wrapper { max-width: 800px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: var(--s1); }
.faq-question {
  padding: 1.5rem 1.8rem; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--fd); font-weight: 600; font-size: 1.05rem; color: var(--navy);
}
.faq-icon { font-size: 1.2rem; color: var(--gold); transition: transform .3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.8rem; max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.active .faq-answer { padding: 0 1.8rem 1.5rem; max-height: 400px; }
.faq-answer p { font-size: .95rem; color: var(--slate); line-height: 1.7; margin: 0; }

.cities { background: var(--white); }
.cities-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3rem; }
.city-a {
  display: block; background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.4rem; text-decoration: none; transition: all .2s;
}
.city-a:hover { border-color: var(--gold); background: var(--white); transform: translateY(-3px); box-shadow: var(--s1); }
.city-a .cn { font-family: var(--fd); font-weight: 700; font-size: 1rem; color: var(--navy); }
.city-a .cc { font-size: .8rem; color: var(--muted); margin-top: .3rem; }

.seo-bottom {
  background: var(--cream); padding-top: 4rem; padding-bottom: 4rem;
  border-top: 1px solid var(--border);
}
.seo-bottom .seo-content { max-width: 900px; }
.seo-bottom .seo-content h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.seo-bottom .seo-content p { font-size: 1rem; }

.districts { background: var(--cream); border-top: 1px solid var(--border); }
.dist-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3rem; }
.dist-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.4rem; text-decoration: none; transition: all .22s;
}
.dist-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--s1); }
.dist-name { font-family: var(--fd); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: .3rem; }
.dist-price { font-size: .85rem; color: var(--slate); }

.agent-sec { background: var(--white); }
.agent-card {
  background: var(--cream); border-radius: 20px; padding: 3rem;
  border: 1px solid var(--border); box-shadow: var(--s1);
  max-width: 900px; margin: 3rem auto 0;
}
.agent-name { font-family: var(--fd); font-size: 1.6rem; font-weight: 700; margin-bottom: .3rem; color: var(--navy); }
.agent-role { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.agent-bio { font-size: 1rem; color: var(--slate); line-height: 1.8; margin-bottom: 1.5rem; }

.nearby { background: var(--white); border-top: 1px solid var(--border); }
.nearby-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 3rem; }
.nearby-a {
  display: block; background: var(--cream); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.4rem; text-decoration: none; transition: all .2s; text-align: center;
}
.nearby-a:hover { border-color: var(--gold); background: var(--white); transform: translateY(-3px); box-shadow: var(--s1); }
.nearby-a .nc { font-family: var(--fd); font-weight: 700; font-size: 1.1rem; color: var(--navy); }
.nearby-a .ns { font-size: .8rem; color: var(--muted); margin-top: .3rem; }

.cta-band {
  background: var(--navy); padding: 6rem 6%;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(39,110,241,.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--fd); font-size: clamp(1.8rem,4vw,2.6rem);
  font-weight: 700; color: var(--white); margin-bottom: 1rem; position: relative; z-index: 2;
}
.cta-band p {
  color: rgba(255,255,255,.7); font-size: 1.1rem;
  max-width: 550px; margin: 0 auto 2.5rem; position: relative; z-index: 2;
}
.cta-band .btn-gold { position: relative; z-index: 2; }

.site-footer { background: #0A162B; color: rgba(255,255,255,.5); padding: 4rem 6% 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.f-brand .logo { display: block; margin-bottom: 1.2rem; color: var(--white); }
.f-brand p { font-size: .9rem; line-height: 1.7; max-width: 300px; }
.f-col h4 {
  font-family: var(--fd); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem;
}
.f-col ul { list-style: none; }
.f-col li { margin-bottom: .6rem; }
.f-col a { font-size: .9rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.f-col a:hover { color: var(--white); }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem;
  display: flex; justify-content: space-between; font-size: .8rem; flex-wrap: wrap; gap: .5rem;
}

.error-404 {
  min-height: calc(100vh - 85px); display: flex; align-items: center; justify-content: center;
  padding: 6rem 6%; text-align: center; margin-top: 85px;
}
.error-404__inner { max-width: 540px; }
.error-404__code {
  font-family: var(--fd); font-size: clamp(5rem,14vw,9rem);
  font-weight: 700; color: var(--gold-pale); line-height: 1;
  margin-bottom: 1.5rem;
}
.error-404__title { font-family: var(--fd); font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 1rem; }
.error-404__lead { font-size: 1.05rem; color: var(--slate); line-height: 1.7; margin-bottom: 2.5rem; }

.page-basic { margin-top: 85px; }
.page-basic__inner { max-width: 820px; }
.page-basic__title {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(2rem, 3.6vw, 2.8rem); line-height: 1.2;
  letter-spacing: -.01em; color: var(--navy);
  margin: 0 0 2.5rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.page-basic__content { font-size: 1.05rem; color: var(--slate); line-height: 1.85; }
.page-basic__content h2 {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.55rem); line-height: 1.3;
  letter-spacing: -.005em; color: var(--navy);
  margin: 2rem 0 .9rem;
}
.page-basic__content h3 {
  font-family: var(--fd); font-weight: 600;
  font-size: clamp(1.15rem, 1.7vw, 1.25rem); line-height: 1.35;
  color: var(--navy); margin: 1.5rem 0 .75rem;
}
.page-basic__content h4 {
  font-family: var(--fd); font-weight: 600;
  font-size: 1.05rem; color: var(--navy); margin: 1.25rem 0 .6rem;
}
.page-basic__content p { margin: 1.25rem 0; }
.page-basic__content ul,
.page-basic__content ol { margin: 1.25rem 0 1.25rem 1.5rem; padding: 0; }
.page-basic__content li { margin-bottom: .6rem; }
.page-basic__content li > p { margin: 0; }
.page-basic__content a {
  color: var(--gold); text-decoration: underline; text-underline-offset: 3px;
}
.page-basic__content a:hover { color: var(--gold-light); text-decoration: none; }
.page-basic__content strong { color: var(--navy); font-weight: 600; }
.page-basic__content blockquote {
  margin: 2rem 0; padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold); background: var(--gold-pale);
  border-radius: 6px; font-style: italic; color: var(--navy);
}
.page-basic__content blockquote p { margin: 0; }
.page-basic__content img { max-width: 100%; height: auto; border-radius: 8px; margin: 2rem 0; }
.page-basic__content hr { border: 0; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.page-basic__content > *:first-child { margin-top: 0; }
.page-basic__content > *:last-child { margin-bottom: 0; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.fu { animation: fadeUp .65s ease both; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .35s; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .form-card { display: none; }
  .why-grid, .about-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 2rem; }
  .p-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .p-steps::before { display: none; }
  .cities-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .f-brand { grid-column: 1 / -1; }
  .seo-split-grid { grid-template-columns: 1fr; }
  .dist-grid, .nearby-grid { grid-template-columns: repeat(2,1fr); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links { display: none; }
  .site-nav--open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 8px 24px rgba(13,31,60,.1);
    padding: .25rem 6% 1.5rem; z-index: 199;
  }
  .site-nav--open .nav-links > li { border-bottom: 1px solid var(--border); }
  .site-nav--open .nav-links > li > a { display: block; padding: 1rem 0; font-size: 1rem; }
  .site-nav--open .nav-links li.menu-item-has-children { display: flex; align-items: center; flex-wrap: wrap; }
  .site-nav--open .nav-links li.menu-item-has-children > a { flex: 1; }
  .site-nav--open .nav-links li.menu-item-has-children > .sub-menu { width: 100%; }
  .site-nav--open .nav-links li.menu-item-has-children > a::after { display: none; }
  .site-nav--open .nav-links .sub-menu {
    display: none; position: static; box-shadow: none;
    border: none; border-radius: 0; padding: 0;
    background: transparent; min-width: 0; margin: 0;
  }
  .site-nav--open .nav-links li.is-open > .sub-menu { display: block; }
  .site-nav--open .nav-links .sub-menu::before { display: none; }
  .site-nav--open .nav-links .sub-menu > li {
    border-bottom: 1px solid var(--border); padding-left: 1rem;
  }
  .site-nav--open .nav-links .sub-menu > li:last-child { border-bottom: none; }
  .site-nav--open .nav-links .sub-menu a {
    display: block; padding: .8rem 0; font-size: .9rem;
    color: var(--slate); font-weight: 500; white-space: normal;
  }
  .site-nav--open .nav-links .sub-menu a:hover { color: var(--gold); background: none; }
  .site-nav--open .nav-links .sub-menu .sub-menu { padding-left: 0; }
  .sub-menu-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: none; border: none;
    cursor: pointer; color: var(--slate); font-size: .8rem; flex-shrink: 0;
  }
  .sub-menu-toggle i { transition: transform .25s ease; }
  .is-open > .sub-menu-toggle i { transform: rotate(180deg); }
}
@media (max-width: 600px) {
  .why-grid, .p-steps, .cities-grid { grid-template-columns: 1fr; }
  .hero-nums { flex-wrap: wrap; gap: 1.5rem; }
  .dist-grid, .nearby-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

.blog-archive-layout { max-width: 1600px; margin: 140px auto 60px; padding: 0 3%; }
.archive-header { text-align: center; margin-bottom: 4rem; }
.archive-header h1 {
  font-family: var(--fd); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 1rem;
}
.archive-header p { font-size: 1.15rem; color: var(--slate); max-width: 600px; margin: 0 auto; }

.author-profile-header {
  display: flex; gap: 3rem; align-items: center;
  background: var(--white); padding: 3rem 4rem;
  border-radius: var(--r); border: 1px solid var(--border);
  box-shadow: var(--s2); margin-bottom: 4rem;
}
.author-profile-img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; background: var(--navy); flex-shrink: 0; }
.author-profile-info { flex-grow: 1; }
.author-role {
  font-size: 0.85rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem;
}
.author-profile-info h1 {
  font-family: var(--fd); font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy); margin-bottom: 1rem; line-height: 1.2; letter-spacing: -0.01em;
}
.author-profile-info p { font-size: 1.05rem; color: var(--slate); line-height: 1.7; margin-bottom: 1.5rem; max-width: 800px; }
.author-socials { display: flex; gap: 1rem; }
.author-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream); color: var(--navy); transition: all 0.2s;
}
.author-socials a:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.author-socials svg { width: 20px; height: 20px; fill: currentColor; }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

.post-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--s2); border-color: var(--gold-pale); }
.post-img-link { display: block; height: 220px; background: var(--gold-pale); width: 100%; position: relative; overflow: hidden; }
.post-img-link img { width: 100%; height: 100%; object-fit: cover; }
.post-content { padding: 1.8rem; display: flex; flex-direction: column; flex-grow: 1; }
.post-tag { font-size: 0.75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.8rem; display: block; text-decoration: none; }
.post-tag:hover { color: var(--gold-light); }
.post-title-link { text-decoration: none; }
.post-title-link h3 { font-family: var(--fd); font-size: 1.3rem; color: var(--navy); margin-bottom: 1rem; line-height: 1.4; transition: color 0.2s; }
.post-title-link:hover h3 { color: var(--gold); }
.post-content p { font-size: 0.95rem; color: var(--slate); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; }
.post-meta-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 1.2rem; margin-top: auto; }
.post-author-link { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--navy); font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.post-author-link:hover { color: var(--gold); }
.post-author-link img { width: 32px; height: 32px; border-radius: 50%; background: var(--gold-pale); object-fit: cover; }
.post-date { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: var(--muted); }
.post-date svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; }

.pagination { display: flex; justify-content: center; align-items: center; gap: 0.5rem; margin-top: 4rem; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 1rem; border-radius: 8px;
  background: var(--white); border: 1px solid var(--border); color: var(--navy);
  font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: all 0.2s;
}
.pagination .page-numbers:hover:not(.current):not(.dots) { background: var(--gold-pale); border-color: var(--gold-pale); color: var(--gold); }
.pagination .page-numbers.current { background: var(--gold); border-color: var(--gold); color: var(--white); }
.pagination .page-numbers.dots { border: none; background: transparent; min-width: auto; padding: 0 0.5rem; }

.blog-layout {
  max-width: 1600px; margin: 140px auto 60px; padding: 0 3%;
  display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 4rem; align-items: start;
}
.blog-sidebar { position: sticky; top: 120px; }
.toc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem; box-shadow: var(--s1); }
.toc-title { font-family: var(--fd); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold-pale); }
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 0.8rem; }
.toc-list a { font-size: 0.9rem; color: var(--slate); text-decoration: none; transition: color 0.2s, padding-left 0.2s; display: block; line-height: 1.4; }
.toc-list a:hover { color: var(--gold); padding-left: 5px; font-weight: 600; }
.blog-content { background: var(--white); border-radius: var(--r); padding: 4rem; box-shadow: var(--s2); }
.breadcrumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumbs a { color: var(--gold); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.hero-image { width: 100%; height: auto; aspect-ratio: 21 / 9; object-fit: cover; border-radius: 12px; margin-bottom: 2.5rem; background: var(--gold-pale); display: block; }
.blog-h1 { font-family: var(--fd); font-size: clamp(2.2rem, 3.5vw, 3.2rem); font-weight: 700; line-height: 1.2; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.01em; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.95rem; color: var(--slate); margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.meta-item { display: flex; align-items: center; gap: 0.5rem; }
.meta-item svg { flex-shrink: 0; }
.blog-lead { font-size: 1.15rem; font-weight: 500; color: var(--navy-soft); line-height: 1.8; margin-bottom: 2.5rem; }
.takeaways { background: var(--gold-pale); border-left: 4px solid var(--gold); padding: 1.8rem; border-radius: 0 var(--r) var(--r) 0; margin-bottom: 3rem; }
.takeaways h3 { font-family: var(--fd); font-size: 1.1rem; color: var(--navy); margin-bottom: 1rem; }
.takeaways ul { list-style: none; padding-left: 0; }
.takeaways li { position: relative; padding-left: 1.8rem; margin-bottom: 0.8rem; color: var(--navy-soft); font-size: 0.95rem; }
.takeaways li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }
.blog-body h2 { font-family: var(--fd); font-size: 1.8rem; font-weight: 700; color: var(--navy); margin: 2.5rem 0 1rem; scroll-margin-top: 100px; }
.blog-body p { font-size: 1.05rem; color: var(--slate); line-height: 1.8; margin-bottom: 1.5rem; }
.blog-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 2rem 0; display: block; }
.blog-body ul, .blog-body ol { padding-left: 1.5rem; margin-bottom: 1.5rem; color: var(--slate); font-size: 1.05rem; line-height: 1.8; }
.blog-body li { margin-bottom: 0.5rem; }
.blog-body a { color: var(--gold); }
.blog-body blockquote { border-left: 4px solid var(--gold-pale); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--cream); border-radius: 0 var(--r) var(--r) 0; font-style: italic; color: var(--slate); }
.author-box { display: flex; gap: 1.5rem; align-items: center; background: var(--cream); padding: 2rem; border-radius: var(--r); margin-top: 4rem; border: 1px solid var(--border); }
.author-img { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); object-fit: cover; flex-shrink: 0; }
.author-info h4 { font-family: var(--fd); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.3rem; }
.author-info p { font-size: 0.9rem; color: var(--slate); line-height: 1.6; margin: 0; }

.related-posts-sec { max-width: 1600px; margin: 0 auto 6rem; padding: 0 3%; }
.related-posts-sec h2 { font-family: var(--fd); font-size: 2rem; text-align: center; margin-bottom: 3rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

#comments {
  font-family: var(--fd); font-size: 1.5rem; font-weight: 700; color: var(--navy);
  margin: 3rem 0 1.5rem; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
ol.commentlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; }
ol.commentlist .comment-body {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.5rem 2rem;
}
ol.commentlist .comment-meta {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem;
}
ol.commentlist .comment-author { display: flex; align-items: center; gap: 0.75rem; }
ol.commentlist .comment-author .avatar { border-radius: 50%; width: 40px; height: 40px; flex-shrink: 0; }
ol.commentlist .comment-author .fn { font-family: var(--fd); font-weight: 700; font-size: 1rem; color: var(--navy); font-style: normal; }
ol.commentlist .comment-author .says { font-size: 0.85rem; color: var(--muted); margin-left: 0.2rem; }
ol.commentlist .comment-metadata { display: flex; align-items: center; gap: 0.75rem; }
ol.commentlist .comment-metadata a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
ol.commentlist .comment-metadata a:hover { color: var(--gold); }
ol.commentlist .edit-link a { font-size: 0.82rem; color: var(--gold); text-decoration: none; font-weight: 600; }
ol.commentlist .edit-link a:hover { color: var(--gold-light); }
ol.commentlist .comment-content p { font-size: 0.95rem; color: var(--slate); line-height: 1.7; margin: 0; }
ol.commentlist .reply { margin-top: 1rem; }
ol.commentlist .comment-reply-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  text-decoration: none; transition: color 0.2s;
}
ol.commentlist .comment-reply-link:hover { color: var(--gold-light); }
ol.commentlist .children { list-style: none; margin: 1.5rem 0 0 2rem; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.comment-navigation { display: flex; justify-content: space-between; margin-top: 1.5rem; }
.comment-navigation a { font-size: 0.9rem; font-weight: 600; color: var(--gold); text-decoration: none; }
.comment-navigation a:hover { color: var(--gold-light); }

.comment-respond { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.comment-reply-title { font-family: var(--fd); font-size: 1.5rem; margin-bottom: 1.5rem; }
.comment-form label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea { width: 100%; padding: 1rem; border-radius: 9px; border: 1px solid var(--border); background: var(--cream); font-family: var(--fb); font-size: 0.95rem; outline: none; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(39,110,241,0.1); }
.comment-form .submit { background: var(--navy); color: var(--white); border: none; padding: 1rem 2rem; border-radius: 9px; font-weight: 600; cursor: pointer; transition: 0.2s; }
.comment-form .submit:hover { background: var(--navy-mid); }
.no-posts { text-align: center; padding: 4rem 0; color: var(--slate); font-size: 1.1rem; }

@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; margin-bottom: 2rem; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .author-profile-header { padding: 2.5rem; }
}
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
  .blog-layout { margin-top: 100px; }
  .blog-content { padding: 2rem 1.5rem; }
  .related-grid { grid-template-columns: 1fr; }
  .author-profile-header { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .author-socials { justify-content: center; }
  .author-box { flex-direction: column; text-align: center; }
  .pagination { gap: 0.3rem; }
  .pagination .page-numbers { min-width: 38px; height: 38px; padding: 0 0.5rem; font-size: 0.85rem; }
}
