:root {
  --white:      #ffffff;
  --off-white:  #f8f8f8;
  --light-grey: #f2f2f2;
  --dark:       #1c1c1c;
  --mid:        #555555;
  --muted:      #999999;
  --border:     #e2e2e2;
  --gold:       #9a7f4f;
  --gold-lt:    #b89a65;
  --slate:      #4a607a;
  --black:      #111111;
}

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

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  background: var(--white);
  color: var(--dark);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: rgba(255,255,255,0.5); transition: color .2s; }
.top-bar a:hover { color: var(--white); }
.top-bar-right { display: flex; gap: 2rem; }

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.nav-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.nav-logo img { height: 58px; width: auto; display: block; }
.kids-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 7px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white); background: var(--black);
  padding: 2px 8px; display: inline-block;
}
.nav-menu {
  display: flex; list-style: none;
  height: 82px; align-items: stretch;
}
.nav-menu > li { position: relative; display: flex; align-items: center; }
.nav-menu > li > a {
  display: flex; align-items: center; height: 100%;
  padding: 0 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark); white-space: nowrap;
  transition: color .2s;
  border-bottom: 2px solid transparent;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-menu > li > a.active-page { color: var(--gold); border-bottom-color: var(--gold); }
.nav-caret { margin-left: 3px; font-size: 7px; opacity: 0.4; }
.nav-drop {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 240px; z-index: 600;
  list-style: none; padding: 6px 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.nav-menu > li:hover .nav-drop { display: block; }
.nav-drop li a {
  display: block; padding: 7px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid); transition: color .2s, background .2s;
}
.nav-drop li a:hover { color: var(--gold); background: var(--off-white); }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.nav-phone { font-family: 'Poppins', sans-serif; font-size: 11.5px; font-weight: 500; color: var(--dark); }
.btn-nav {
  background: var(--black); color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.6rem 1.4rem; transition: background .2s; white-space: nowrap;
}
.btn-nav:hover { background: var(--gold); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--off-white);
  border-bottom: 3px solid var(--gold);
  padding: 4rem 3rem;
}
.page-hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
}
.page-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.7rem;
}

/*.page-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }*/

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.2; color: var(--black);
  margin-bottom: 0.8rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px; font-weight: 300; color: var(--mid); line-height: 1.85;
  max-width: 560px;
}
.progress-pills {
  display: flex; flex-direction: column; gap: 0.6rem;
}
.pill {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--white); border: 1px solid var(--border);
  padding: 0.7rem 1.2rem; white-space: nowrap;
}
.pill-num {
  width: 26px; height: 26px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--white);
  flex-shrink: 0;
}
.pill-label { font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0.7rem 3rem;
  font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 300;
  color: var(--muted); letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.4; }

/* ─── LAYOUT ─── */
.page-body { max-width: 1240px; margin: 0 auto; padding: 0 3rem; display: grid; grid-template-columns: 220px 1fr; gap: 5rem; align-items: start; }

/* ─── STICKY SIDEBAR NAV ─── */
.side-nav { position: sticky; top: 100px; padding: 2rem 0; }
.side-nav h4 {
  font-family: 'Poppins', sans-serif; font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.side-nav ul { list-style: none; }
.side-nav li { border-top: 1px solid var(--border); }
.side-nav li:last-child { border-bottom: 1px solid var(--border); }
.side-nav a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 0;
  font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 300;
  color: var(--mid); transition: color .2s;
}
.side-nav a:hover { color: var(--gold); }
.side-nav a .sn { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--gold); opacity: 0.5; width: 18px; flex-shrink: 0; }
.side-cta { margin-top: 2rem; background: var(--black); color: var(--white); padding: 1rem 1.2rem; text-align: center; }
.side-cta p { font-family: 'Poppins', sans-serif; font-size: 9.5px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; }
.side-cta a { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold-lt); display: block; }

/* ─── MAIN CONTENT ─── */
.main-content { padding: 4rem 0; }

/* Section blocks */
.listing-section { margin-bottom: 5rem; scroll-margin-top: 100px; }
.listing-section:last-child { margin-bottom: 2rem; }

.s-tag {
  font-family: 'Poppins', sans-serif; font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.listing-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 400; line-height: 1.22;
  color: var(--black); margin-bottom: 1rem;
  border-bottom: 1px solid var(--border); padding-bottom: 1rem;
}
.listing-section h2 em { font-style: italic; }
.listing-section p {
  font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 300;
  color: var(--mid); line-height: 1.9; margin-bottom: 1rem;
}
.listing-section p:last-child { margin-bottom: 0; }

/* Step cards */
.step-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 2.2rem 2.5rem;
  margin-bottom: 2rem;
}
.step-card:last-child { margin-bottom: 0; }
.step-header {
  display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.2rem;
}
.step-num-large {
  width: 52px; height: 52px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white);
  flex-shrink: 0;
}
.step-head-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--black);
}
.step-head-text .step-sub {
  font-family: 'Poppins', sans-serif; font-size: 9.5px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 2px;
}
.step-body p {
  font-family: 'Poppins', sans-serif; font-size: 13.5px; font-weight: 300;
  color: var(--mid); line-height: 1.9; margin-bottom: 1.2rem;
}
.step-body p:last-child { margin-bottom: 0; }

/* Feature list inside steps */
.feature-list { list-style: none; margin-top: 1.2rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 300; color: var(--mid);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li .fi { color: var(--gold); flex-shrink: 0; margin-top: 3px; font-size: 10px; }
.feature-list li strong { color: var(--dark); font-weight: 500; }

/* Detail boxes */
.detail-box {
  background: var(--white); border: 1px solid var(--border);
  padding: 1.8rem 2rem; margin-top: 1.4rem;
}
.detail-box h4 {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500;
  color: var(--black); margin-bottom: 1rem;
}
.detail-box ul { list-style: none; }
.detail-box ul li {
  display: flex; gap: 0.8rem; padding: 0.55rem 0;
  border-bottom: 1px solid #f2f2f2;
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 300; color: var(--mid);
}
.detail-box ul li:last-child { border-bottom: none; }
.detail-box ul li .di { color: var(--gold); flex-shrink: 0; }

/* Alert/tip box */
.tip-box {
  background: #fdfaf4; border: 1px solid #f0d8a0;
  border-left: 4px solid var(--gold);
  padding: 1.4rem 1.8rem; margin-top: 1.4rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.tip-box .tip-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.tip-box p {
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 300;
  color: var(--mid); line-height: 1.85; margin: 0;
}
.tip-box strong { color: var(--dark); font-weight: 500; }

/* Checklist grid */
.checklist-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem;
}
.checklist-card {
  background: var(--white); border: 1px solid var(--border); padding: 1.6rem;
}
.checklist-card h4 {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500;
  color: var(--black); margin-bottom: 0.8rem;
  padding-bottom: 0.6rem; border-bottom: 1px solid var(--border);
}
.checklist-card ul { list-style: none; }
.checklist-card li {
  display: flex; gap: 0.65rem; padding: 0.45rem 0;
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 300; color: var(--mid);
}
.checklist-card li .ci { color: var(--gold); flex-shrink: 0; font-size: 10px; margin-top: 4px; }

/* After-listing alerts grid */
.alerts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 1.5rem;
}
.alert-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-top: 2px solid var(--gold); padding: 1.6rem;
}
.alert-card h4 {
  font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 500;
  color: var(--black); margin-bottom: 0.5rem;
}
.alert-card p {
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 300;
  color: var(--mid); line-height: 1.8; margin: 0;
}

/* Progress tracker bar */
.progress-track {
  display: flex; align-items: center; margin-bottom: 3rem;
  background: var(--off-white); border: 1px solid var(--border); padding: 1.5rem 2rem;
}
.pt-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  flex: 1; position: relative; cursor: pointer;
}
.pt-step:not(:last-child)::after {
  content: ''; position: absolute; top: 16px; left: 60%; right: -40%;
  height: 2px; background: var(--border); z-index: 0;
}
.pt-num {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1rem;
  background: var(--white); border: 2px solid var(--border);
  color: var(--muted); position: relative; z-index: 1; transition: all .3s;
}
.pt-step.active .pt-num { background: var(--gold); border-color: var(--gold); color: var(--white); }
.pt-step.done .pt-num { background: var(--dark); border-color: var(--dark); color: var(--white); }
.pt-label {
  font-family: 'Poppins', sans-serif; font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-align: center;
}
.pt-step.active .pt-label { color: var(--gold); }

/* CTA bottom banner */
.cta-banner {
  background: var(--black); padding: 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap; margin-top: 4rem;
}
.cta-banner h3 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.4rem;
}
.cta-banner p {
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 300;
  color: rgba(255,255,255,0.5); margin: 0;
}
.cta-banner-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; flex-shrink: 0; }
.btn-gold {
  background: var(--gold); color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.85rem 1.8rem; display: inline-block; transition: background .2s;
}
.btn-gold:hover { background: var(--gold-lt); }
.btn-white-outline {
  border: 1px solid rgba(255,255,255,0.3); color: var(--white);
  font-family: 'Poppins', sans-serif; font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.85rem 1.8rem; display: inline-block; transition: all .2s;
}
.btn-white-outline:hover { border-color: var(--gold); color: var(--gold-lt); }

/* ─── FOOTER ─── */
.footer-simple {
  background: var(--black); color: rgba(255,255,255,0.35);
  padding: 2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-family: 'Poppins', sans-serif; font-size: 10.5px; font-weight: 300;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-simple a { color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-simple a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1060px) {
  .nav-menu { display: none; }
  .page-body { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .side-nav { display: none; }
  .checklist-grid, .alerts-grid { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .progress-pills { flex-direction: row; flex-wrap: wrap; }
  .cta-banner { flex-direction: column; }
  section { padding: 3rem 0; }
}
@media (max-width: 640px) {
  .top-bar { display: none; }
  nav { padding: 0 1.5rem; }
  .nav-phone { display: none; }
  .page-hero { padding: 3rem 1.5rem; }
  .breadcrumb { padding: 0.7rem 1.5rem; }
  .cta-banner { padding: 2rem 1.5rem; }
  .footer-simple { padding: 1.5rem; flex-direction: column; }
}

/* ─── SKIP TO CONTENT (accessibility + SEO) ─── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--black); color: var(--white);
  padding: 0.6rem 1.2rem; font-size: 12px; font-weight: 500;
  z-index: 9999; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 1rem; }