/* ============================================================
   New York Business Brokers — Global Stylesheet
   Palette: deep navy #12263A · gold #B08D57 · stone gray
   Type: Libre Caslon Text (display) · Public Sans (body)
   ============================================================ */

:root {
  --navy: #12263A;
  --navy-deep: #0C1B2A;
  --navy-soft: #1D3A57;
  --gold: #B08D57;
  --gold-dark: #8F6F40;
  --gold-light: #C9A97A;
  --gold-pale: #F3ECDF;
  --stone: #6E7A87;
  --stone-light: #EDEFF2;
  --stone-bg: #F7F8FA;
  --white: #FFFFFF;
  --ink: #22303D;
  --serif: "Libre Caslon Text", Georgia, serif;
  --sans: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(18, 38, 58, 0.10);
  --shadow-lg: 0 18px 50px rgba(18, 38, 58, 0.16);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3, .display {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

section { padding: 84px 0; }
.section-tight { padding: 56px 0; }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--stone); margin-top: .8rem; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
  text-align: center;
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
/* Primary CTA: gold with deep-navy text (AA contrast) */
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
/* Solid navy variant */
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); }
/* Secondary bordered variants */
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.65); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); border-color: var(--white); color: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(176, 141, 87, .28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand:hover { color: var(--white); }
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}
.brand-text { line-height: 1.15; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 700;
  display: block;
  letter-spacing: .01em;
}
.brand-tag {
  display: block;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a.active { color: var(--gold-light); border-bottom-color: var(--gold); }
.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 20px;
  border-radius: 6px;
  border-bottom: none;
  font-weight: 700;
}
.main-nav .nav-cta:hover { background: var(--gold-light); color: var(--navy-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 130px 0 120px;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Single solid navy overlay above the photo, below the content */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 27, 42, .74);
  z-index: 1;
}
.hero > .container { position: relative; z-index: 2; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--white); max-width: 760px; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-lead {
  max-width: 620px;
  color: rgba(255,255,255,.86);
  font-size: 1.15rem;
  margin: 1.4rem 0 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Page hero (interior) */
.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 72px 0 64px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.page-hero-photo {
  margin: 0;
}
.page-hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,.82); max-width: 680px; margin: 1rem 0 0; }
.breadcrumbs {
  font-size: .85rem;
  margin-bottom: 1.4rem;
  color: rgba(255,255,255,.6);
}
.breadcrumbs a { color: var(--gold-light); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { margin: 0 .5em; }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--gold-pale); padding: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.stat-num .accent { color: var(--gold); }
.stat-label {
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- Cards / grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: .7rem; }
.card p { color: var(--stone); margin-bottom: 1.1rem; }
.card .card-link { font-weight: 700; font-size: .93rem; letter-spacing: .04em; }
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.card-icon svg { width: 30px; height: 30px; }

.bg-stone { background: var(--stone-bg); }
.bg-navy { background: var(--navy); color: rgba(255,255,255,.85); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

/* ---------- Listing cards ---------- */
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.listing-card {
  background: var(--white);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.listing-visual {
  background: var(--navy-deep);
  padding: 26px 24px 0;
}
.listing-visual svg, .listing-visual img { width: 100%; display: block; }
.listing-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.listing-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: .9rem;
}
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--gold);
}
.tag.tag-navy { background: var(--stone-light); color: var(--navy); }
.listing-body h3 { font-size: 1.16rem; margin-bottom: .9rem; }
.listing-figures {
  margin-top: auto;
  border-top: 1px solid var(--stone-light);
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: .92rem;
}
.listing-figures dt { color: var(--stone); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }
.listing-figures dd { font-weight: 700; color: var(--navy); margin: 0 0 .4rem; }
.listing-figures .price dd { color: var(--gold); font-size: 1.06rem; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.steps-5 { grid-template-columns: repeat(5, 1fr); }
.step { position: relative; padding-top: 14px; }
.step-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--gold);
  opacity: .55;
  font-weight: 700;
  display: block;
  margin-bottom: .5rem;
}
.step h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.step p { color: var(--stone); font-size: .95rem; margin: 0; }
.bg-navy .step p { color: rgba(255,255,255,.72); }
.bg-navy .step-num { color: var(--gold-light); opacity: .8; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--stone-light);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 1.4rem;
}
.testimonial blockquote::before { content: "\201C"; color: var(--gold); font-size: 1.6rem; margin-right: 2px; }
.testimonial cite { font-style: normal; }
.testimonial .t-name { display: block; font-weight: 700; color: var(--navy); font-size: .95rem; }
.testimonial .t-role { display: block; color: var(--stone); font-size: .84rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  padding: 88px 0;
}
.cta-band h2 { color: var(--white); max-width: 700px; margin: 0 auto 1rem; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 2rem; }

/* ---------- Split / two-column feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.split-visual {
  background: var(--navy-deep);
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: var(--shadow-lg);
}
.split-visual svg, .split-visual img { width: 100%; }
/* Photo variant of the split visual */
.split-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.split-photo figcaption {
  background: var(--navy-deep);
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  padding: 14px 20px;
}
/* In-content photo (service pages) */
.content-photo {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.content-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: .8rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---------- Prose (long-form content) ---------- */
.prose h2 { margin: 2.4rem 0 1rem; }
.prose h3 { margin: 1.8rem 0 .8rem; }
.prose ul, .prose ol { margin-bottom: 1.4rem; }
.prose p + h2 { margin-top: 2.6rem; }
.prose strong { color: var(--navy); }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: .6rem 0 .6rem 1.4rem;
  margin: 1.8rem 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy);
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---------- Service layout ---------- */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.side-card {
  position: sticky;
  top: 110px;
  background: var(--navy);
  color: rgba(255,255,255,.82);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
}
.side-card h3 { color: var(--white); margin-bottom: .7rem; }
.side-card p { font-size: .95rem; }
.side-card .btn { width: 100%; margin-top: .6rem; }
.side-card .side-phone {
  display: block;
  margin-top: 1.2rem;
  text-align: center;
  color: var(--gold-light);
  font-weight: 700;
}
.side-links { list-style: none; padding: 0; margin: 1.4rem 0 0; border-top: 1px solid rgba(255,255,255,.15); padding-top: 1.2rem; }
.side-links li { margin-bottom: .6rem; }
.side-links a { color: rgba(255,255,255,.8); font-size: .93rem; }
.side-links a:hover { color: var(--gold-light); }

/* ---------- Blog index ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--white);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-thumb { display: block; background: var(--navy-deep); }
.post-thumb img, .post-thumb svg { width: 100%; display: block; }
.post-thumb img { aspect-ratio: 15 / 7; object-fit: cover; }
.post-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .8rem; color: var(--stone); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .7rem; }
.post-body h3 { font-size: 1.14rem; margin-bottom: .7rem; }
.post-body h3 a { color: var(--navy); }
.post-body h3 a:hover { color: var(--gold); }
.post-body p { color: var(--stone); font-size: .95rem; flex: 1; }

/* ---------- Blog post 3-column layout ---------- */
.post-hero-figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin: -46px auto 0;
  max-width: 900px;
  background: var(--navy-deep);
}
.post-hero-figure img, .post-hero-figure svg { width: 100%; display: block; }
.post-hero-figure img { aspect-ratio: 15 / 7; object-fit: cover; }
.post-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
  padding-top: 56px;
}
.toc {
  position: sticky;
  top: 110px;
  background: var(--stone-bg);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.toc h2 {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: .9rem;
}
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li { margin-bottom: .1rem; }
.toc a {
  display: block;
  font-size: .88rem;
  color: var(--stone);
  padding: 7px 10px;
  border-left: 2px solid var(--stone-light);
  border-radius: 0 6px 6px 0;
  line-height: 1.4;
}
.toc a:hover { color: var(--navy); background: var(--gold-pale); }
.toc a.active { color: var(--navy); font-weight: 700; border-left-color: var(--gold); background: var(--gold-pale); }
.post-content .post-date { color: var(--stone); font-size: .88rem; margin-bottom: 1.6rem; }
.post-aside .side-card { top: 110px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  border: 2px solid var(--gold-light);
}
.team-card h3 { margin-bottom: .2rem; }
.team-role { color: var(--gold); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: .8rem; }
.team-card p { color: var(--stone); font-size: .93rem; margin: 0; }

/* ---------- Forms ---------- */
.contact-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.form-card {
  background: var(--white);
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 1.2rem; }
label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
  letter-spacing: .03em;
}
input, select, textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #D4D9DF;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: .98rem;
  color: var(--ink);
  background: var(--white);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, .18);
}
textarea { resize: vertical; min-height: 130px; }

.info-block { margin-bottom: 1.8rem; }
.info-block h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.info-block p { color: var(--stone); margin: 0; }
.info-block a { font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.72);
  padding: 70px 0 0;
  font-size: .94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-grid h3 {
  color: var(--white);
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .55rem; }
.footer-grid a { color: rgba(255,255,255,.72); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.6); max-width: 300px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 800px; }
.legal-wrap h2 { margin: 2.2rem 0 .9rem; font-size: 1.4rem; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--stone-light);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 16px;
  background: var(--white);
}
.faq-item h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.faq-item p { color: var(--stone); margin: 0; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  /* Post stacks in source order: TOC first, article, then CTA aside */
  .post-layout { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .toc { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .listing-grid, .testimonial-grid, .post-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .service-layout, .contact-layout { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .post-aside .side-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    border-bottom: 1px solid rgba(176,141,87,.3);
    display: none;
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
  }
  .main-nav li { margin: 0; }
  .main-nav a { display: block; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a.active { border-bottom-color: rgba(255,255,255,.08); }
  .main-nav .nav-cta { margin-top: 14px; text-align: center; }
}

@media (max-width: 880px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  section { padding: 60px 0; }
  .hero { padding: 84px 0 76px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stat-num { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .stat-label { font-size: .78rem; }
  .grid-4, .grid-3, .grid-2, .listing-grid, .testimonial-grid, .post-grid, .team-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .post-layout { grid-template-columns: 1fr; }
  .post-aside .side-card { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .post-hero-figure { margin-top: -30px; }
  .hero-actions .btn { width: 100%; }
}
