/* ==========================================================================
   Cornelius Website Solutions — Design System
   Concept: "Built Right Down the Road" — a small-town route map meets a
   craftsman's work-order ticket. Warm parchment + deep lake-navy, with a
   dotted route line tying the process/service-area story together, and a
   dashed-edge "ticket" card carrying the $99 offer throughout the site.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500&family=Public+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  /* Color tokens */
  --ink:        #13293D;   /* deep lake-navy — primary dark */
  --ink-2:      #0D1F2E;   /* darker navy — footer/header */
  --teal:       #1C6E74;   /* lake teal — links, secondary accent */
  --teal-dark:  #12525A;
  --sand:       #F6F1E4;   /* warm parchment — page background */
  --sand-2:     #EFE7D3;   /* slightly deeper parchment for panels */
  --amber:      #E8A33D;   /* signage amber — CTAs, ticket accent */
  --amber-dark: #C7822A;
  --white:      #FFFFFF;
  --text:       #1B2B33;   /* body copy on light */
  --text-soft:  #4A5A63;   /* secondary body copy */
  --line:       #DAD0B4;   /* hairline on sand */
  --line-dark:  #24424B;   /* hairline on ink */
  --success:    #2F7D5C;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  /* Layout */
  --max: 1180px;
  --radius: 4px;
  --shadow-card: 0 1px 2px rgba(19,41,61,.06), 0 8px 24px rgba(19,41,61,.07);
  --shadow-lift: 0 12px 32px rgba(19,41,61,.14);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--sand);
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
  overflow-wrap:break-word;
  word-break:break-word;
}
img{ max-width:100%; display:block; }
a{ color:var(--teal); text-decoration:none; }
a:hover{ color:var(--teal-dark); }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,h5{ font-family:var(--font-display); color:var(--ink); margin:0 0 .5em; line-height:1.12; font-weight:600; }
p{ margin:0 0 1em; }
button{ font-family:inherit; }

:focus-visible{
  outline:3px solid var(--amber);
  outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--teal-dark);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  background:var(--amber);
  border-radius:50%;
  display:inline-block;
}
.eyebrow.on-dark{ color:#CFE3D8; }

.section{ padding:88px 0; }
.section--tight{ padding:56px 0; }
.section--sand2{ background:var(--sand-2); }
.section--ink{ background:var(--ink); color:#D8E2E4; }
.section--ink h2, .section--ink h3, .section--ink h4{ color:var(--white); }
.section--ink p{ color:#B9C7CA; }

.section-head{ max-width:640px; margin:0 0 44px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,40px); margin-top:10px; }
.section-head p{ color:var(--text-soft); font-size:17px; margin-top:12px; }

/* Dark-section overrides — must win over the base rules above, since
   nested white cards and paragraph text need different treatment when
   the surrounding section is .section--ink (dark navy). */
.section--ink .section-head p{ color:#B9C7CA; }
.section--ink .route-stop p{ color:#9FB2B6; }
.section--ink .card h3{ color:var(--ink); }
.section--ink .card p{ color:var(--text-soft); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:15px;
  padding:14px 26px;
  border-radius:3px;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--amber); color:var(--ink-2); }
.btn-primary:hover{ background:var(--amber-dark); color:var(--ink-2); box-shadow:var(--shadow-lift); }
.btn-outline{ background:transparent; border-color:currentColor; color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:var(--white); }
.btn-outline.on-dark{ color:var(--white); }
.btn-outline.on-dark:hover{ background:var(--white); color:var(--ink); }
.btn-ghost{ background:transparent; color:var(--teal-dark); padding:14px 6px; }
.btn-ghost::after{ content:"→"; transition:transform .15s ease; }
.btn-ghost:hover::after{ transform:translateX(4px); }
.btn-block{ width:100%; justify-content:center; }

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--ink-2);
  border-bottom:1px solid var(--line-dark);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  color:var(--white); font-family:var(--font-display); font-weight:700; font-size:20px;
}
.brand small{
  display:block; font-family:var(--font-mono); font-weight:400; font-size:10.5px;
  letter-spacing:.12em; text-transform:uppercase; color:#8FA3A8; margin-top:2px;
}
.brand-mark{
  width:38px; height:38px; flex:none;
  border-radius:50%;
  background:var(--amber);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-weight:700; color:var(--ink-2); font-size:13px;
  border:2px solid #F3D18B;
}
.nav-links{ display:flex; align-items:center; gap:2px; }
.nav-links a{
  color:#D8E2E4; font-weight:600; font-size:14.5px;
  padding:10px 14px; border-radius:3px;
}
.nav-links a:hover{ color:var(--white); background:rgba(255,255,255,.06); }
.nav-links a.is-active{ color:var(--amber); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-phone{ color:#D8E2E4; font-family:var(--font-mono); font-size:14px; font-weight:600; display:flex; align-items:center; gap:6px; }
.nav-toggle{
  display:none; background:none; border:1px solid var(--line-dark); color:var(--white);
  width:42px; height:38px; border-radius:3px; align-items:center; justify-content:center; cursor:pointer;
}

@media (max-width: 640px){
  .brand{ font-size:15px; white-space:nowrap; }
  .brand small{ display:none; }
  .brand-mark{ width:30px; height:30px; font-size:10px; }
  .nav-cta .btn-primary{ display:none; }
  #mobileCta{ display:block !important; text-align:center; }
}

@media (max-width: 920px){
  .nav-links{
    position:absolute; top:100%; left:0; right:0;
    background:var(--ink-2); flex-direction:column; align-items:stretch;
    padding:8px 24px 18px; border-bottom:1px solid var(--line-dark);
    display:none;
  }
  .nav-links.is-open{ display:flex; }
  .nav-links a{ padding:12px 6px; border-bottom:1px solid rgba(255,255,255,.06); }
  .nav-phone{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ---------- Hero ---------- */
.hero{
  background:var(--sand);
  position:relative;
  overflow:hidden;
  padding:72px 0 40px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:44px 44px;
  background-position:center -1px;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 50% at 30% 20%, rgba(246,241,228,.0), var(--sand) 78%);
  pointer-events:none;
}
.hero-illustration{
  position:absolute; right:-40px; bottom:-30px; width:460px; height:460px;
  object-fit:contain; opacity:.16; pointer-events:none; z-index:0;
}
@media (max-width:980px){ .hero-illustration{ width:280px; height:280px; right:-30px; } }

.hero-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center;
}
.hero h1{
  font-size:clamp(36px,5vw,58px);
  letter-spacing:-.01em;
}
.hero h1 em{ font-style:italic; color:var(--teal-dark); }
.hero-lede{ font-size:19px; color:var(--text-soft); max-width:520px; margin:18px 0 30px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:34px; }
.hero-trust{
  display:flex; flex-wrap:wrap; gap:22px 30px;
  padding-top:24px; border-top:1px dashed var(--line);
}
.hero-trust div{ font-family:var(--font-mono); font-size:12.5px; color:var(--text-soft); }
.hero-trust strong{ display:block; font-family:var(--font-display); font-size:26px; color:var(--ink); font-weight:700; }

/* Ticket card — signature element */
.ticket{
  position:relative;
  background:var(--white);
  border:1.5px solid var(--ink);
  border-radius:6px;
  padding:30px 28px 26px;
  box-shadow:var(--shadow-lift);
  transform:rotate(2deg);
}
.ticket::before,.ticket::after{
  content:"";
  position:absolute; width:26px; height:26px;
  background:var(--sand);
  border:1.5px solid var(--ink);
  border-radius:50%;
  top:50%; margin-top:-13px;
}
.ticket::before{ left:-14px; }
.ticket::after{ right:-14px; }
.ticket-row{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
.ticket-eyebrow{ font-family:var(--font-mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-soft); }
.ticket-stamp{
  font-family:var(--font-mono); font-size:10.5px; font-weight:700; letter-spacing:.06em;
  color:var(--success); border:1.5px solid var(--success); padding:3px 8px; border-radius:20px;
  transform:rotate(-6deg);
}
.ticket-price{
  font-family:var(--font-display); font-weight:700; font-size:64px; color:var(--ink); line-height:1; margin:14px 0 2px;
}
.ticket-price sup{ font-size:26px; top:-.6em; }
.ticket-price span{ font-family:var(--font-mono); font-size:14px; color:var(--text-soft); font-weight:500; margin-left:6px; }
.ticket hr{ border:none; border-top:1.5px dashed var(--line); margin:18px 0; }
.ticket-list{ display:grid; gap:9px; }
.ticket-list li{ display:flex; gap:9px; font-size:14.5px; color:var(--text); align-items:flex-start; }
.ticket-list li::before{ content:"✓"; color:var(--success); font-weight:700; flex:none; }
.ticket-foot{ margin-top:20px; text-align:center; }
.ticket-foot small{ display:block; font-family:var(--font-mono); font-size:11px; color:var(--text-soft); margin-top:8px; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns:1fr; }
  .ticket{ transform:none; max-width:400px; margin:0 auto; }
}

/* ---------- Route line (process / signature motif) ---------- */
.route{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
  counter-reset:stop;
}
.route::before{
  content:"";
  position:absolute; top:23px; left:6%; right:6%; height:0;
  border-top:3px dotted var(--line);
  z-index:0;
}
.section--ink .route::before{ border-top-color:var(--line-dark); }
.route-stop{ position:relative; z-index:1; counter-increment:stop; }
.route-pin{
  width:48px; height:48px; border-radius:50%;
  background:var(--ink); color:var(--amber);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-weight:700; font-size:16px;
  border:3px solid var(--sand);
  box-shadow:0 0 0 2px var(--ink);
  margin-bottom:18px;
}
.route-stop h4{ font-size:18px; margin-bottom:8px; }
.route-stop p{ font-size:14.5px; color:var(--text-soft); }

@media (max-width: 860px){
  .route{ grid-template-columns:1fr; gap:34px; }
  .route::before{ display:none; }
}

/* ---------- Cards ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
/* Grid tracks default to a min-width based on their content's intrinsic size,
   which can silently overflow the viewport on narrow phones (e.g. a <select>
   sized to its longest option). Forcing min-width:0 lets tracks actually
   shrink to the space available, the way width:100% on children implies. */
.grid-3 > *, .grid-2 > *, .hero-grid > *, .footer-grid > *, .tickets-row > *{ min-width:0; }
@media (max-width:900px){ .grid-3{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .grid-3, .grid-2{ grid-template-columns:1fr; } }

.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:14px;
  padding:36px 32px;
  box-shadow:0 2px 6px rgba(19,41,61,.05), 0 14px 32px rgba(19,41,61,.07);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{
  transform:translateY(-5px);
  box-shadow:0 6px 14px rgba(19,41,61,.09), 0 26px 48px rgba(19,41,61,.14);
  border-color:transparent;
}
.card-icon{
  width:72px; height:72px; border-radius:18px;
  background:linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border:none;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); margin-bottom:20px;
  box-shadow:0 8px 18px rgba(28,110,116,.28);
  overflow:hidden;
}
.card-icon img{
  width:38px; height:38px; object-fit:contain; display:inline;
  filter:brightness(0) invert(1); /* renders any icon artwork in solid white on the colored tile */
}
.card-icon .icon-fallback{ display:none; font-size:30px; line-height:1; color:var(--white); }
.card h3{ font-size:20px; margin-bottom:10px; letter-spacing:-.01em; }
.card p{ color:var(--text-soft); font-size:15px; margin-bottom:0; }

.avatar-badge{
  width:88px; height:88px; border-radius:50%;
  background:var(--sand-2); border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 18px; overflow:hidden; position:relative;
}
.avatar-badge img{ width:100%; height:100%; object-fit:cover; display:inline; }
.avatar-badge .avatar-fallback{
  display:none; font-family:var(--font-mono); font-weight:700; font-size:22px; color:var(--teal-dark);
}

/* Pricing ticket variants for services page */
.tickets-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; align-items:start; }
@media (max-width:940px){ .tickets-row{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }
.ticket.static{ transform:none; }
.ticket.featured{ border-width:2px; box-shadow:var(--shadow-lift); }
.ticket.featured .ticket-stamp{ background:var(--amber); color:var(--ink-2); border-color:var(--amber-dark); }

/* ---------- Town chips (service area) ---------- */
.towns{ display:flex; flex-wrap:wrap; gap:10px; }
.town-chip{
  font-family:var(--font-mono); font-size:13px; font-weight:500;
  padding:9px 16px; border:1.5px dashed var(--line-dark);
  border-radius:24px; color:#CFE3D8;
}
.town-chip.is-hq{ border-style:solid; border-color:var(--amber); color:var(--amber); font-weight:700; }

/* Communities-we-serve: map left, content right */
.serve-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center;
}
.serve-grid > *{ min-width:0; }
@media (max-width:900px){ .serve-grid{ grid-template-columns:1fr; } }

.service-map-img{
  width:100%; border-radius:10px;
  border:1px solid var(--line-dark);
  box-shadow:0 20px 48px rgba(0,0,0,.28);
}

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding:22px 4px; display:flex; justify-content:space-between; align-items:center;
  font-family:var(--font-display); font-weight:600; font-size:18px; color:var(--ink);
  gap:20px;
}
.faq-q .plus{ font-family:var(--font-mono); font-size:20px; color:var(--amber-dark); transition:transform .2s ease; flex:none; }
.faq-item.is-open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-a p{ padding:0 4px 22px; color:var(--text-soft); font-size:15px; max-width:70ch; }

/* ---------- Forms ---------- */
.form-field{ margin-bottom:18px; }
.form-field label{
  display:block; font-family:var(--font-mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--text-soft); margin-bottom:7px; font-weight:600;
}
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding:13px 14px; border:1.5px solid var(--line); border-radius:3px;
  font-family:var(--font-body); font-size:15px; background:var(--white); color:var(--text);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{ border-color:var(--teal); }
.form-field textarea{ resize:vertical; min-height:130px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-row > *{ min-width:0; }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }
.form-note{ font-size:13px; color:var(--text-soft); }
.hp-field{ position:absolute; left:-9999px; top:-9999px; }

.form-msg{ padding:14px 16px; border-radius:3px; font-size:14.5px; margin-bottom:20px; display:none; }
.form-msg.is-visible{ display:block; }
.form-msg.success{ background:#E6F3EC; border:1px solid var(--success); color:#1F5C42; }
.form-msg.error{ background:#FBEAE7; border:1px solid #C15B4A; color:#8C3323; }

.newsletter-box{
  background:var(--ink-2); border:1px solid var(--line-dark); border-radius:6px;
  padding:34px; display:flex; align-items:center; gap:28px; justify-content:space-between; flex-wrap:wrap;
}
.newsletter-box h3{ color:var(--white); font-size:22px; margin-bottom:6px; }
.newsletter-box p{ color:#9FB2B6; font-size:14.5px; margin:0; }
.newsletter-form{ display:flex; gap:10px; flex-wrap:wrap; }
.newsletter-form input[type=email]{
  padding:13px 16px; border-radius:3px; border:1.5px solid var(--line-dark);
  background:#0A1620; color:var(--white); font-size:14.5px; min-width:230px;
}
.newsletter-form input[type=email]::placeholder{ color:#6E8288; }

/* ---------- Testimonials ---------- */
.testi{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px; box-shadow:var(--shadow-card);
}
.testi-stars{ color:var(--amber-dark); letter-spacing:2px; margin-bottom:12px; font-size:15px; }
.testi p{ font-family:var(--font-display); font-style:italic; font-size:17px; color:var(--ink); margin-bottom:16px; }
.testi-who{ font-family:var(--font-mono); font-size:12.5px; color:var(--text-soft); }

/* ---------- Blog ---------- */
.post-card{
  background:var(--white); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-card); display:flex; flex-direction:column;
}
.post-thumb{
  height:150px; position:relative; overflow:hidden;
  background:
    repeating-linear-gradient(135deg, var(--ink) 0 2px, transparent 2px 14px), var(--teal-dark);
}
.post-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.post-thumb span{
  position:absolute; bottom:12px; left:14px; font-family:var(--font-mono); font-size:11px;
  color:var(--sand); background:rgba(19,41,61,.75); padding:4px 10px; border-radius:20px; letter-spacing:.05em; text-transform:uppercase;
}
.post-body{ padding:22px 22px 24px; flex:1; display:flex; flex-direction:column; }
.post-date{ font-family:var(--font-mono); font-size:12px; color:var(--text-soft); margin-bottom:10px; }
.post-body h3{ font-size:20px; margin-bottom:10px; }
.post-body p{ color:var(--text-soft); font-size:14.5px; flex:1; }
.post-link{ font-weight:700; font-size:14px; margin-top:8px; }

.article-body{ max-width:70ch; margin:0 auto; }
.article-body h2{ font-size:26px; margin-top:1.6em; }
.article-body h3{ font-size:20px; margin-top:1.4em; }
.article-body p{ font-size:17px; color:var(--text); }
.article-body ul{ margin:0 0 1.2em; padding-left:0; }
.article-body ul li{ position:relative; padding-left:26px; margin-bottom:10px; font-size:16.5px; }
.article-body ul li::before{ content:"→"; position:absolute; left:0; color:var(--teal); font-weight:700; }
.article-hero{ text-align:center; max-width:760px; margin:0 auto; }
.article-meta{ font-family:var(--font-mono); font-size:12.5px; color:var(--text-soft); display:flex; gap:16px; justify-content:center; margin-top:14px; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink-2); color:#B9C7CA; padding-top:64px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:48px; border-bottom:1px solid var(--line-dark); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h5{ font-family:var(--font-mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:#7C9096; margin-bottom:16px; }
.footer-grid a{ color:#D8E2E4; }
.footer-links li{ margin-bottom:10px; font-size:14.5px; }
.footer-brand p{ font-size:14.5px; color:#9FB2B6; max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:36px; height:36px; border:1px solid var(--line-dark); border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:#D8E2E4;
}
.footer-social a:hover{ background:var(--amber); color:var(--ink-2); border-color:var(--amber); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:24px 0; flex-wrap:wrap; gap:12px; font-size:13px; color:#7C9096; }
.footer-bottom a{ color:#7C9096; }

/* ---------- Page header (interior pages) ---------- */
.page-hero{
  padding:56px 0 46px; background:var(--sand);
  background-image:linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:44px 44px;
  border-bottom:1px solid var(--line);
}
.page-hero .eyebrow{ margin-bottom:12px; }
.page-hero h1{ font-size:clamp(32px,4.4vw,48px); max-width:760px; }
.page-hero p{ font-size:17.5px; color:var(--text-soft); max-width:600px; margin-top:14px; }
.breadcrumb{ font-family:var(--font-mono); font-size:12.5px; color:var(--text-soft); margin-bottom:18px; }
.breadcrumb a{ color:var(--teal-dark); }

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--ink); border-radius:8px; padding:52px 48px;
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  background-image:radial-gradient(circle at 85% 20%, rgba(232,163,61,.14), transparent 55%);
}
.cta-band h3{ color:var(--white); font-size:26px; margin-bottom:6px; max-width:460px; }
.cta-band p{ color:#B9C7CA; margin:0; }

/* ---------- Misc ---------- */
.divider-dash{ border:none; border-top:1.5px dashed var(--line); margin:0; }
.badge-row{ display:flex; gap:14px; flex-wrap:wrap; }
.mini-badge{
  display:flex; align-items:center; gap:8px; font-family:var(--font-mono); font-size:12.5px;
  color:var(--text-soft); background:var(--white); border:1px solid var(--line); padding:8px 14px; border-radius:20px;
}
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.stack-lg > * + *{ margin-top:20px; }
.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--amber); color:var(--ink-2);
  padding:10px 16px; z-index:200; font-weight:700;
}
.skip-link:focus{ left:12px; top:12px; }
