/* ==========================================================================
   RBO Construction LLC — Global Stylesheet
   Brand: navy #0F1E2E · blue #1B4F8A · warm off-white #F7F3EE
   Fonts: Playfair Display (headings) · Source Sans 3 (body/UI)
   ========================================================================== */

:root {
  --navy:        #0F1E2E;
  --navy-soft:   #1B3A5C;
  --blue:        #1B4F8A;
  --blue-dark:   #163D6E;
  --blue-light:  #4A8FD4;
  --warm-gray:   #8A7E72;
  --warm-border: #E8E2DA;
  --cream:       #F7F3EE;
  --white:       #FFFFFF;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius: 6px;
  --header-h: 84px;
  --shadow-sm: 0 1px 3px rgba(15, 30, 46, .08);
  --shadow-md: 0 4px 16px rgba(15, 30, 46, .10);
  --shadow-lg: 0 12px 40px rgba(15, 30, 46, .16);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.18; margin: 0 0 .5em; color: var(--navy); }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1.15rem; }
ul, ol { margin: 0 0 1.15rem; padding-left: 1.25rem; }
:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 2px; }

/* ----- Layout ----- */
.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 2rem; }
@media (max-width: 640px) { .container { padding-inline: 1.25rem; } }
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-navy  { background: var(--navy); color: rgba(255,255,255,.85); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

/* ----- Eyebrow / section divider ----- */
.section-divider { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.section-divider::before { content: ""; display: block; width: 2.5rem; height: 2px; background: var(--blue); flex-shrink: 0; }
.section-divider span {
  font-family: var(--font-body); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue);
}
.bg-navy .section-divider::before { background: var(--blue-light); }
.bg-navy .section-divider span { color: var(--blue-light); }
.section-divider.center { justify-content: center; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  border: 2px solid transparent; cursor: pointer; text-align: center;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--warm-border); }
.btn-outline-dark:hover { background: var(--cream); color: var(--navy); border-color: var(--blue); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--cream); color: var(--navy); }
.btn .arrow { font-size: 1.05em; line-height: 1; }

/* ----- Header ----- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(15, 30, 46, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background-color .3s ease;
}
.site-header.solid { background: var(--navy); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 56px; width: auto; background: #fff; border-radius: 4px; padding: 4px 8px; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.82);
  letter-spacing: .01em; white-space: nowrap; position: relative; padding: .25rem 0;
}
.nav a:hover { color: #fff; }
.nav a.active { color: #fff; }
.nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--blue-light); border-radius: 2px;
}
.nav .btn { margin-left: .4rem; }
.nav .btn:hover { color: #fff; }

/* Localized header tagline strip */
.header-tagline {
  background: var(--blue); color: #fff;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-align: center; padding: .45rem 1rem; line-height: 1.4;
}
.header-tagline a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* Mobile nav */
.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  padding: .5rem; color: #fff; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--navy); flex-direction: column; align-items: stretch;
    gap: 0; padding: .5rem 1.25rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .22s ease, transform .22s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 1rem; }
  .nav a.active::after { display: none; }
  .nav .btn { margin: 1rem 0 0; justify-content: center; }
  .brand img { height: 46px; }
  :root { --header-h: 72px; }
}

/* ----- Hero (home) ----- */
.hero {
  position: relative; min-height: 640px; height: 88vh; max-height: 900px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,30,46,.92) 0%, rgba(15,30,46,.72) 45%, rgba(15,30,46,.28) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 660px; padding-top: var(--header-h); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4rem); margin-bottom: 1rem; }
.hero h1 .accent { color: var(--blue-light); }
.hero-sub { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 34rem; margin-bottom: 1rem; }
.hero-locale {
  color: rgba(255,255,255,.7); font-size: .95rem; max-width: 36rem; margin-bottom: 2rem;
  padding-left: .9rem; border-left: 2px solid var(--blue-light);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,.55); font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase; text-align: center;
}
.scroll-hint::after {
  content: ""; display: block; width: 1px; height: 30px; margin: .5rem auto 0;
  background: linear-gradient(rgba(255,255,255,.5), transparent);
}
@media (max-width: 768px) { .hero { height: auto; min-height: 0; padding: calc(var(--header-h) + 3.5rem) 0 4rem; } .hero-content { padding-top: 0; } .scroll-hint { display: none; } }

/* ----- Page hero (interior pages) ----- */
.page-hero { background: var(--navy); padding: calc(var(--header-h) + 4rem) 0 4rem; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1.12rem; max-width: 46rem; margin-bottom: 0; }
.page-hero .breadcrumb { margin-bottom: 1.25rem; }

/* ----- Breadcrumbs ----- */
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.5); }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 .4rem; opacity: .5; }

/* ----- Stats bar ----- */
.stats { background: var(--navy); border-top: 1px solid rgba(255,255,255,.08); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-value { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--blue-light); line-height: 1; }
.stat-label { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .5rem; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; } .stat-value { font-size: 1.9rem; } }

/* ----- Section heading block ----- */
.section-head { max-width: 46rem; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--warm-gray); font-size: 1.05rem; margin-bottom: 0; }

/* ----- Cards grid ----- */
.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--warm-border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease; height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .5rem; }
.card-body p { color: var(--warm-gray); font-size: .95rem; flex: 1; }
.card-link { font-size: .85rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: .4rem; margin-top: .5rem; }

/* ----- Feature list (checkmarks) ----- */
.check-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; padding: .45rem 0; font-size: .97rem; }
.check-list li::before {
  content: "✓"; flex-shrink: 0; width: 1.35rem; height: 1.35rem; margin-top: .12rem;
  background: rgba(27,79,138,.1); color: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700;
}
.dot-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.dot-list li { display: flex; align-items: flex-start; gap: .7rem; padding: .3rem 0; font-size: .95rem; }
.dot-list li::before {
  content: ""; flex-shrink: 0; width: 6px; height: 6px; margin-top: .62rem;
  background: var(--blue); border-radius: 50%;
}

/* ----- Split (text + image) ----- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse .split-text { order: 2; }
.split.reverse .split-media { order: 1; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-text, .split.reverse .split-media { order: unset; }
}
.split-media { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.media-badge {
  position: absolute; right: 1.25rem; bottom: 1.25rem;
  background: var(--blue); color: #fff; border-radius: var(--radius);
  padding: .85rem 1.15rem; text-align: center; box-shadow: var(--shadow-md);
}
.media-badge .num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.media-badge .cap { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; margin-top: .2rem; }
.media-caption {
  position: absolute; inset: auto 0 0 0; padding: 1.5rem;
  background: linear-gradient(transparent, rgba(15,30,46,.85));
}
.media-caption .name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: #fff; }
.media-caption .role { font-size: .82rem; color: rgba(255,255,255,.75); }

/* ----- Service section (alternating) ----- */
.service-block { padding: 5rem 0; }
.service-block:nth-child(even) { background: #fff; }
.service-block:nth-child(odd)  { background: var(--cream); }
.service-tag { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.service-tag .icon {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius);
  background: rgba(27,79,138,.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.service-tag span { color: var(--blue); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

/* ----- CTA band ----- */
.cta-band { background: var(--navy); padding: 4.5rem 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.7); max-width: 40rem; margin: 0 auto 2rem; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* ----- Testimonials ----- */
.quote-card {
  background: #fff; border: 1px solid var(--warm-border); border-left: 3px solid var(--blue);
  border-radius: var(--radius); padding: 2rem; height: 100%;
  display: flex; flex-direction: column;
}
.quote-card .stars { color: #E0A93B; font-size: .95rem; letter-spacing: .12em; margin-bottom: 1rem; }
.quote-card blockquote { margin: 0 0 1.5rem; font-size: .97rem; line-height: 1.7; color: var(--navy); flex: 1; }
.quote-card blockquote p:last-child { margin-bottom: 0; }
.quote-meta { border-top: 1px solid var(--warm-border); padding-top: 1rem; }
.quote-meta .who { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.quote-meta .where { font-size: .85rem; color: var(--warm-gray); }

/* ----- Projects ----- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid var(--warm-border);
  background: #fff; color: var(--warm-gray); font-family: var(--font-body);
  font-size: .85rem; font-weight: 600; cursor: pointer; transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.project-card .meta { font-size: .8rem; color: var(--warm-gray); letter-spacing: .04em; text-transform: uppercase; margin-bottom: .4rem; }
.badge {
  display: inline-block; background: rgba(27,79,138,.1); color: var(--blue);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 3px; margin-bottom: .6rem;
}
.photo-count {
  position: absolute; right: .75rem; top: .75rem; background: rgba(15,30,46,.8);
  color: #fff; font-size: .72rem; font-weight: 600; padding: .25rem .55rem; border-radius: 3px;
}
.card-img { position: relative; }

/* ----- Gallery strip ----- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.gallery img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ----- Forms ----- */
.form-card { background: #fff; border: 1px solid var(--warm-border); border-radius: var(--radius); padding: 2.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 1.5rem; } }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; color: var(--navy); }
.field .req { color: #C0392B; }
.field input, .field select, .field textarea {
  width: 100%; padding: .7rem .85rem; border: 1px solid var(--warm-border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: .95rem;
  color: var(--navy); background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,79,138,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--warm-gray); margin-top: 1rem; }

/* ----- Info list (contact) ----- */
.info-card { background: var(--cream); border: 1px solid var(--warm-border); border-radius: var(--radius); padding: 1.75rem; margin-bottom: 1.5rem; }
.info-card h3 { font-size: 1.15rem; margin-bottom: 1.1rem; }
.info-item { display: flex; gap: .85rem; align-items: flex-start; padding: .6rem 0; border-bottom: 1px solid var(--warm-border); }
.info-item:last-child { border-bottom: 0; }
.info-item .ico { color: var(--blue); flex-shrink: 0; width: 1.25rem; text-align: center; margin-top: .15rem; }
.info-item .k { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--warm-gray); }
.info-item .v { font-weight: 600; font-size: .98rem; }

/* ----- Steps ----- */
.steps { counter-reset: step; display: grid; gap: 1.5rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step .n {
  flex-shrink: 0; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.step h4 { margin: .2rem 0 .25rem; font-size: 1.05rem; }
.step p { font-size: .92rem; color: var(--warm-gray); margin: 0; }

/* ----- Service areas ----- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: .75rem; }
.area-chip {
  display: block; padding: .8rem 1rem; background: #fff; border: 1px solid var(--warm-border);
  border-radius: var(--radius); font-size: .92rem; font-weight: 600; color: var(--navy);
  transition: all .2s ease;
}
.area-chip:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.area-chip .sub { display: block; font-size: .75rem; font-weight: 400; color: var(--warm-gray); margin-top: .15rem; }
.area-list { columns: 3; column-gap: 2rem; list-style: none; padding: 0; margin: 0; }
.area-list li { padding: .3rem 0; font-size: .93rem; break-inside: avoid; }
@media (max-width: 800px) { .area-list { columns: 2; } }
@media (max-width: 500px) { .area-list { columns: 1; } }

/* ----- Footer ----- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.62); padding: 4rem 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-brand img { height: 62px; width: auto; background: #fff; border-radius: 4px; padding: 6px 10px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .92rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-motto {
  font-family: var(--font-head); font-style: italic; color: var(--blue-light); font-size: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.62); font-size: .92rem; }
.footer-links a:hover { color: #fff; }
.footer-areas p { font-size: .9rem; line-height: 1.75; margin-bottom: .85rem; }
.footer-areas .cities { color: rgba(255,255,255,.72); }
.footer-areas a { color: var(--blue-light); font-weight: 600; font-size: .88rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.45);
}

/* Wide service-area band in footer */
.footer-service-band {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.75rem 0; font-size: .84rem; line-height: 1.8; color: rgba(255,255,255,.5);
}
.footer-service-band strong { color: rgba(255,255,255,.78); font-weight: 600; }
.footer-service-band a { color: rgba(255,255,255,.55); }
.footer-service-band a:hover { color: #fff; }

/* ----- Utilities ----- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.muted { color: var(--warm-gray); }
.lead { font-size: 1.1rem; color: var(--warm-gray); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.prose p { color: var(--warm-gray); }
.prose h2, .prose h3 { color: var(--navy); margin-top: 2.25rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }

/* ----- Scroll reveal ----- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover { transform: none; }
}

/* ----- Print ----- */
@media print {
  .site-header, .site-footer, .cta-band, .scroll-hint { display: none; }
  body { font-size: 12pt; }
}
