/* Plain HTML build: Times-style editorial type, Blue Ridge teal, warm paper, and accessible responsive interactions. */

:root {
  --blue: #2d5f9a;
  --blue-dark: #204878;
  --blue-soft: #eef3f8;
  --teal: #0a6b67;
  --teal-dark: #07514f;
  --teal-soft: #ecfdf3;
  --ink: #101828;
  --ink-deep: #0b1f38;
  --slate: #475467;
  --cloud: #ffffff;
  --paper: #f2f7f5;
  --white: #ffffff;
  --clay: #b85d4b;
  --marigold: #d89a2b;
  --line: #dfe7e5;
  --shadow: 0 18px 46px rgba(16, 40, 44, 0.07);
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--marigold); outline-offset: 3px; }
h1, h2, h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(3.1rem, 6vw, 6.7rem); }
h2 { font-size: clamp(2.25rem, 4vw, 4.45rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
p { margin: 0.6rem 0 1.1rem; }
svg { flex: 0 0 auto; }
.utility-links svg, .mobile-action-bar svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.symbol { display: inline-grid; place-items: center; width: 30px; height: 30px; color: var(--teal); font-size: 1.25rem; }
.symbol.large { width: 48px; height: 48px; font-size: 2rem; }
.check { display: inline-grid; place-items: center; width: 20px; height: 20px; border: 1px solid var(--teal); border-radius: 50%; color: var(--teal); font-size: 0.72rem; font-weight: 700; }
.arrow { display: inline-block; }
.container { width: min(100% - 2rem, 1320px); margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform 160ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }
.utility-bar { background: var(--ink-deep); color: #eef6f4; font-size: 0.79rem; letter-spacing: 0.025em; }
.utility-inner { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.utility-links { display: flex; align-items: center; gap: 1.4rem; }
.utility-links a { display: flex; align-items: center; gap: 0.4rem; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); box-shadow: 0 7px 28px rgba(16, 40, 44, 0.035); }
.header-inner { height: 82px; display: flex; align-items: center; gap: 2rem; }
.brand-lockup { display: flex; align-items: center; gap: 0.8rem; min-width: max-content; }
.brand-lockup img { width: 56px; height: 56px; object-fit: contain; }
.wordmark { display: flex; flex-direction: column; line-height: 0.9; }
.wordmark strong { font-family: "Newsreader", serif; font-size: 1.55rem; letter-spacing: -0.04em; }
.wordmark small { margin-top: 0.38rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 1.15rem; font-size: 0.9rem; font-weight: 700; }
.desktop-nav a { position: relative; padding: 0.5rem 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0.15rem; height: 2px; background: var(--teal); transition: right 180ms var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; gap: 0.55rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 160ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(0.97); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 9px 22px rgba(45, 95, 154, 0.18); }
.button-primary:hover { background: var(--blue-dark); }
.button-ink { background: var(--ink); color: white; }
.button-bone { background: white; color: var(--ink); }
.button-outline { border-color: rgba(255, 255, 255, 0.65); color: white; background: transparent; }
.button-small { min-height: 38px; padding: 0.55rem 0.8rem; }
.menu-button { display: none; margin-left: auto; padding: 0.6rem; border: 0; background: transparent; color: var(--ink); }
.menu-icon { display: block; min-width: 24px; font-size: 1.65rem; line-height: 1; }
.mobile-nav { padding: 1rem 0 1.4rem; border-top: 1px solid var(--line); background: var(--cloud); }
.mobile-nav .container { display: grid; }
.mobile-nav a { display: flex; justify-content: space-between; padding: 0.8rem 0; border-bottom: 1px solid var(--line); }
.mobile-nav .mobile-cta { margin-top: 0.75rem; padding: 0.85rem 1rem; border: 0; border-radius: 12px; background: var(--blue); color: white; }
.mobile-nav .mobile-cta.teal { margin-top: 0.4rem; background: var(--teal); }

.eyebrow { margin: 0 0 1rem; color: var(--teal); font-size: 0.76rem; font-weight: 700; line-height: 1.3; letter-spacing: 0.15em; text-transform: uppercase; }
.eyebrow.light { color: #cfe0ff; }
.bridge-motif { width: min(100%, 330px); display: grid; grid-template-columns: 26px 1fr 1fr 26px; align-items: center; gap: 7px; margin-top: 2.2rem; color: #d9e7e3; font-size: 0.68rem; letter-spacing: 0.14em; }
.bridge-motif i { height: 2px; background: currentColor; }
.bridge-motif i:nth-of-type(1) { transform: translateY(-3px); }
.bridge-motif i:nth-of-type(2) { transform: translateY(3px); }
.bridge-motif span:last-child { text-align: right; }
.bridge-motif-home { color: #d8e6e2; }
.lede { max-width: 48rem; color: var(--slate); font-size: clamp(1.08rem, 1.6vw, 1.35rem); }
.section { padding: clamp(5rem, 9vw, 9rem) 0; }
.section-bone { background: var(--white); }
.section-paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-ink { background: var(--ink-deep); color: white; }
.section-ink .eyebrow { color: #a6c1ff; }
.section-heading { max-width: 820px; margin-bottom: 3.4rem; }
.section-heading.center { margin-inline: auto; text-align: center; }

.home-hero { min-height: 740px; display: flex; align-items: flex-end; color: white; background-position: center; background-size: cover; }
.home-hero-inner { display: grid; grid-template-columns: minmax(0, 760px) 1fr; gap: 4rem; align-items: end; padding: 9rem 0 5.5rem; }
.home-hero-copy p:not(.eyebrow) { max-width: 620px; color: #e7eef7; font-size: 1.25rem; }
.hero-actions, .section-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.hero-route-label { justify-self: end; display: grid; grid-template-columns: auto 72px auto; align-items: center; gap: 0.7rem; font-size: 0.82rem; }
.hero-route-label span { grid-column: 1 / -1; justify-self: center; color: #cfe0ff; text-transform: uppercase; letter-spacing: 0.15em; }
.hero-route-label p { margin: 0; }
.hero-route-label i { position: relative; height: 1px; background: var(--marigold); }
.hero-route-label i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 8px; border: 1px solid var(--marigold); border-radius: 50%; transform: translate(-50%, -50%); }

.route-section { position: relative; z-index: 3; margin-top: -42px; padding: 0; background: transparent; }
.route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.route-card { min-height: 360px; display: grid; grid-template-columns: 54px 1fr; grid-template-rows: 1fr auto; gap: 1rem; position: relative; overflow: hidden; padding: 4rem clamp(2rem, 5vw, 5.5rem); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 220ms var(--ease), box-shadow 220ms var(--ease); }
.route-card:hover { z-index: 2; transform: translateY(-7px); box-shadow: 0 30px 75px rgba(16, 24, 40, 0.14); }
.route-staffing { background: var(--ink-deep); color: white; border-top: 8px solid var(--teal); }
.route-homecare { background: #e9d8c8; color: var(--ink); border-top: 8px solid var(--clay); }
.route-number { font-size: 0.76rem; letter-spacing: 0.13em; opacity: 0.78; }
.route-label { margin: 0 0 0.9rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
.route-card h3 { font-size: clamp(2rem, 3.5vw, 3.8rem); }
.route-card p { max-width: 36rem; }
.route-action { grid-column: 2; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid currentColor; font-weight: 700; }
.evidence-band { padding: 2.2rem 0 1.4rem; background: var(--white); color: var(--ink); }
.evidence-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); background: transparent; }
.evidence-grid div { display: flex; flex-direction: column; padding: 2rem 2.5rem; border-right: 1px solid var(--line); }
.evidence-grid strong { font-family: "Newsreader", serif; font-size: 2rem; }
.evidence-grid span { color: var(--slate); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }

.split-feature { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.85fr); gap: clamp(3rem, 7vw, 8rem); align-items: center; }
.split-feature.reverse { grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.05fr); }
.split-feature.reverse .split-image { order: 2; }
.split-image { position: relative; }
.split-image::before { content: ""; position: absolute; left: -18px; top: 18px; width: 100%; height: 100%; border-radius: 2px; background: transparent; border: 2px solid var(--teal); }
.split-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); filter: saturate(0.92) contrast(1.02); }
.split-copy h2 { margin-bottom: 1.3rem; }
.check-list { display: grid; gap: 0.75rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 0.7rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--line); }
.check-list svg { width: 19px; color: var(--teal); }
.assurance-layout, .list-layout, .story-layout, .faq-layout { display: grid; grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.assurance-list { overflow: hidden; border-top: 3px solid var(--teal); border-bottom: 1px solid var(--line); background: transparent; box-shadow: none; }
.assurance-list article { display: grid; grid-template-columns: 46px 1fr; padding: 1.5rem; border-bottom: 1px solid var(--line); }
.assurance-list article:last-child { border-bottom: 0; }
.assurance-list svg { color: var(--teal); }
.assurance-list h3, .assurance-list p { grid-column: 2; }
.assurance-list h3 { font-size: 1.55rem; }
.assurance-list p { margin: 0.25rem 0; }

.cta-band { position: relative; overflow: hidden; padding: 5rem 0; background: var(--teal); color: white; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.32); }
.cta-band::before { top: 18px; }
.cta-band::after { top: 25px; }
.cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3rem; align-items: end; }
.cta-inner h2 { max-width: 820px; }
.cta-inner p:not(.eyebrow) { max-width: 700px; color: #dbe7ff; }
.page-hero { overflow: hidden; color: white; }
.page-hero-ink { background: var(--ink-deep); }
.page-hero-teal { background: var(--teal); }
.page-hero-clay { background: #7a4c3d; }
.page-hero-grid { min-height: 580px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr); gap: 5rem; align-items: center; padding-top: 4rem; padding-bottom: 4rem; }
.page-hero-copy h1 { max-width: 900px; font-size: clamp(3rem, 5.4vw, 6rem); }
.hero-intro { max-width: 720px; color: #dce7f4; font-size: 1.2rem; }
.page-hero-image { align-self: stretch; margin-right: calc((100vw - min(100vw - 2rem, 1320px)) / -2); }
.page-hero-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; filter: saturate(0.92) contrast(1.02); }

.editorial-cards { display: grid; gap: 0; border-top: 2px solid var(--ink); }
.editorial-cards.four { grid-template-columns: repeat(4, 1fr); }
.editorial-cards.three { grid-template-columns: repeat(3, 1fr); }
.editorial-cards article, .service-link-card { min-height: 260px; padding: 2rem; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0; background: rgba(255,255,255,.72); box-shadow: none; }
.editorial-cards article:nth-child(even), .service-link-card:nth-child(even) { background: rgba(242,247,245,.72); }
.editorial-cards article span, .service-link-card > span, .service-detail-grid article > span, .service-detail-grid a > span { color: var(--blue); font-size: 0.72rem; letter-spacing: 0.13em; }
.editorial-cards h3 { margin: 2.2rem 0 1rem; }
.service-link-card { display: flex; flex-direction: column; transition: transform 180ms var(--ease), box-shadow 180ms var(--ease); }
.service-link-card:hover, .service-detail-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-link-card strong, .service-table strong, .service-detail-grid strong { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: auto; color: var(--blue-dark); font-size: 0.86rem; }
.line-list { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; box-shadow: 0 14px 34px rgba(16,40,44,.045); }
.line-list div { display: grid; grid-template-columns: 60px 1fr; padding: 1rem 1.5rem; border-bottom: 1px solid var(--line); }
.line-list div:last-child { border-bottom: 0; }
.line-list span { color: var(--blue); font-size: 0.75rem; }
.line-list p { margin: 0; font-size: 1.25rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 3rem; border-top: 2px solid rgba(255,255,255,.45); }
.process-grid article { min-height: 270px; padding: 2.5rem; border: 0; border-right: 1px solid rgba(255, 255, 255, 0.16); border-radius: 0; background: transparent; }
.process-grid span { color: #a6c1ff; font-size: 0.75rem; letter-spacing: 0.14em; }
.process-grid h3 { margin: 2rem 0 1rem; }
.process-grid p { color: #becbe0; }
.pill-list { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.pill-list span { padding: 0.75rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: white; }
.need-grid, .value-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.need-grid article, .value-strip article { min-height: 240px; padding: 2rem; border: 0; border-top: 2px solid var(--teal); border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; box-shadow: none; }
.value-strip { grid-template-columns: repeat(3, 1fr); }
.need-grid svg, .value-strip svg { width: 30px; height: 30px; margin-bottom: 2rem; color: var(--teal); }
.service-table { display: grid; gap: 0.8rem; }
.service-table article, .service-table > a { display: grid; grid-template-columns: 80px minmax(0, 1fr); padding: 1.6rem; border: 1px solid var(--line); border-left: 3px solid transparent; border-radius: var(--radius-sm); background: white; transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease); }
.service-table > a:hover { border-left-color: var(--teal); }
.service-table > a:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(16, 24, 40, 0.08); }
.service-table span { color: var(--teal); }
.service-table h3 { margin-bottom: 0.4rem; }
.service-table p { margin: 0; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-detail-grid article, .service-detail-grid > a { display: flex; flex-direction: column; padding: 3rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 35px rgba(16, 24, 40, 0.05); transition: transform 180ms var(--ease), box-shadow 180ms var(--ease); }
.service-detail-grid h2 { margin: 1.5rem 0 1rem; font-size: 2.25rem; }
.note-panel { display: grid; grid-template-columns: 70px 1fr; gap: 2rem; max-width: 1000px; padding: 2.5rem; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.note-panel > svg { width: 48px; height: 48px; color: var(--teal); }
.faq-list { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { display: flex; justify-content: space-between; gap: 2rem; padding: 1.35rem 1.5rem; cursor: pointer; list-style: none; font-family: "Newsreader", serif; font-size: 1.35rem; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--blue); transition: transform 180ms var(--ease); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; padding: 0 1.5rem 1.5rem; }

.form-layout { display: grid; grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr); gap: clamp(3rem, 7vw, 8rem); }
.contact-slab { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; padding: 1.5rem; border-radius: var(--radius-sm); background: var(--ink); color: white; }
.contact-slab.warm { background: var(--teal-dark); }
.contact-slab div { display: flex; flex-direction: column; }
.contact-slab span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; }
.contact-slab a { font-family: "Newsreader", serif; font-size: 1.5rem; }
.inquiry-form { padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); border-top: 5px solid var(--blue); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.inquiry-form label { display: grid; gap: 0.4rem; font-size: 0.86rem; font-weight: 700; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; padding: 0.8rem; border: 1px solid #98a2b3; border-radius: 10px; background: white; color: var(--ink); font-weight: 400; }
.inquiry-form > label { margin-top: 1rem; }
.inquiry-form .consent { display: flex; align-items: flex-start; font-weight: 400; }
.consent input { width: 18px; height: 18px; margin-top: 0.25rem; }
.form-note { color: var(--slate); font-size: 0.8rem; }
.optional { color: #718096; font-size: 0.75rem; font-weight: 400; }
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.inquiry-form button:disabled { cursor: wait; opacity: 0.65; transform: none; }
.story-layout > div:last-child { font-size: 1.18rem; }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.fact-grid article { display: flex; flex-direction: column; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.fact-grid span { color: var(--blue); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
.fact-grid strong { font-family: "Newsreader", serif; font-size: 1.7rem; }
.career-routes { gap: 1rem; }
.career-card { min-height: 480px; padding: clamp(2rem, 5vw, 5rem); border-radius: var(--radius); box-shadow: var(--shadow); }
.career-card > svg, .career-card > .symbol { width: 46px; height: 46px; margin-bottom: 4rem; }
.career-card h2 { margin-bottom: 1.5rem; }
.staffing-career { background: var(--blue); color: white; }
.staffing-career .eyebrow { color: #cfe0ff; }
.care-career { background: var(--teal-soft); border: 1px solid #b8ead3; }
.resource-links { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 6rem; }
.resource-links > div:last-child { display: grid; }
.resource-links a { display: flex; justify-content: space-between; padding: 1.2rem 0; border-bottom: 1px solid var(--line); color: var(--blue-dark); font-family: "Newsreader", serif; font-size: 1.35rem; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.contact-grid article { display: flex; flex-direction: column; align-items: flex-start; padding: 2.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 12px 42px rgba(16, 24, 40, 0.06); }
.contact-grid h2 { min-height: 94px; font-size: 2.1rem; }
.contact-grid article > a, .contact-grid article > span { display: flex; align-items: flex-start; gap: 0.7rem; margin: 0.45rem 0; }
.contact-grid article > a { color: var(--blue-dark); font-weight: 700; }
.map-frame { position: relative; overflow: hidden; min-height: 420px; margin-top: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background-color: #d9e7e2; background-image: radial-gradient(circle at 22% 28%, rgba(10,107,103,.25) 0 2px, transparent 3px), repeating-radial-gradient(ellipse at 32% 50%, transparent 0 25px, rgba(16,45,58,.08) 26px 28px); box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 420px; border: 0; opacity: .75; }
.map-address-overlay { position: absolute; left: clamp(1rem,5vw,5rem); bottom: clamp(1rem,4vw,4rem); width: min(430px, calc(100% - 2rem)); padding: 2rem; border-left: 6px solid var(--marigold); background: rgba(251,248,241,.96); color: var(--ink); box-shadow: var(--shadow); }
.map-address-overlay h2 { margin: .7rem 0; font-size: 2.4rem; }
.map-address-overlay p { color: var(--slate); }
.service-page-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr); gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.detail-checks { display: grid; gap: 1rem; }
.detail-checks article { display: grid; grid-template-columns: 58px 1fr; padding: 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.detail-checks span { color: var(--blue); font-size: 0.75rem; }
.detail-checks p { margin: 0; font-size: 1.1rem; }
.boundary-card { max-width: 980px; padding: clamp(2rem, 5vw, 4rem); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.mobile-action-bar { display: none; }
.emergency-note { padding: 1rem 1.3rem; border-left: 5px solid var(--clay); border-radius: 0 12px 12px 0; background: #fff1ee; }
.emergency-note p { margin: 0; }

.policy-section { background: white; }
.policy-grid { display: grid; grid-template-columns: 260px minmax(0, 820px); justify-content: space-between; gap: 5rem; }
.policy-grid aside { position: sticky; top: 140px; align-self: start; padding: 1.25rem; border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: var(--radius-sm); background: var(--paper); font-size: 0.9rem; }
.legal-note { color: var(--slate); font-size: 0.8rem; }
.policy-intro { margin-bottom: 4rem; font-size: 1.3rem; }
.policy-content > section { position: relative; padding: 0 0 3rem 70px; margin-bottom: 3rem; border-bottom: 1px solid var(--line); }
.policy-content h2 { margin-bottom: 1.2rem; font-size: 2rem; }
.policy-content a { color: var(--blue-dark); text-decoration: underline; }
.policy-number { position: absolute; left: 0; top: 0.4rem; color: var(--blue); font-size: 0.75rem; letter-spacing: 0.12em; }
.not-found { min-height: 70vh; display: flex; align-items: center; padding: 6rem 0; background: var(--paper); }
.not-found .container { max-width: 900px; }
.not-found .container > span { color: rgba(21, 94, 239, 0.18); font-family: "Newsreader", serif; font-size: 8rem; line-height: 1; }
.page-loader { min-height: 65vh; display: grid; place-content: center; justify-items: center; gap: 1rem; background: var(--cloud); color: var(--slate); }
.page-loader span { width: 46px; height: 46px; border: 4px solid var(--blue-soft); border-top-color: var(--blue); border-radius: 50%; animation: spin 0.8s linear infinite; }
.page-loader p { margin: 0; }
@keyframes spin { to { transform: rotate(360deg); } }

.cookie-notice { position: fixed; left: 1rem; bottom: 1rem; z-index: 1000; width: min(680px, calc(100% - 2rem)); display: flex; flex-direction: column; align-items: stretch; gap: 1rem; padding: 1.35rem 1.5rem; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 18px; background: var(--ink-deep); color: white; box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28); }
.cookie-copy strong { display: block; margin-bottom: 0.25rem; font-family: "Newsreader", Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.cookie-notice p { margin: 0.15rem 0; color: #c8d4e3; font-size: 0.87rem; }
.cookie-notice .cookie-choice-status { margin-top: 0.45rem; color: #9fd8d1; font-weight: 600; }
.cookie-actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.65rem; }
.cookie-actions .text-link { margin-right: auto; }
.button-cookie-decline { border-color: rgba(255, 255, 255, 0.58); background: transparent; color: white; }
.button-cookie-decline:hover { border-color: white; background: rgba(255, 255, 255, 0.08); }
.text-link { font-size: 0.85rem; text-decoration: underline; }
.site-footer { padding-top: 5rem; background: var(--ink-deep); color: white; }
.footer-lead { display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.footer-brand { display: flex; align-items: flex-start; gap: 1.3rem; max-width: 780px; }
.footer-brand img { width: 68px; }
.footer-brand h2 { font-size: clamp(2rem, 3.3vw, 3.5rem); }
.footer-kicker { margin: 0 0 0.7rem; color: #8ed0c9; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.13em; }
.footer-contact { display: flex; flex-direction: column; text-align: right; }
.footer-contact a { margin: 0.25rem 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-top: 4rem; padding-bottom: 4rem; }
.footer-grid h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { margin: 0.32rem 0; color: #c1cedd; font-size: 0.88rem; }
.footer-grid a:hover { color: white; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.2rem; padding-bottom: 1.2rem; border-top: 1px solid rgba(255, 255, 255, 0.15); color: #9fb0c3; font-size: 0.78rem; }
.footer-bottom p { margin: 0; }
.footer-cookie-link { padding: 0; border: 0; background: transparent; color: #c1cedd; font: inherit; text-decoration: underline; cursor: pointer; }
.footer-cookie-link:hover { color: white; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .page-loader span { animation: none; border-top-color: var(--blue-soft); }
  .button, .route-card { transition: none; }
}
@media (max-width: 1120px) {
  .desktop-nav, .header-actions { display: none; }
  .menu-button { display: block; }
  .page-hero-grid { grid-template-columns: 1fr 40%; gap: 2.5rem; }
  .editorial-cards.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .utility-inner > span, .utility-links a:last-child { display: none; }
  .utility-inner { justify-content: flex-end; }
  .header-inner { height: 76px; }
  .brand-lockup img { width: 46px; height: 46px; }
  .wordmark strong { font-size: 1.35rem; }
  .home-hero { min-height: 650px; background-position: 63% center; }
  .home-hero-inner { grid-template-columns: 1fr; }
  .hero-route-label { display: none; }
  .route-section { margin-top: -24px; }
  .route-grid, .split-feature, .split-feature.reverse, .assurance-layout, .list-layout, .story-layout, .faq-layout, .form-layout, .resource-links, .policy-grid, .service-page-layout { grid-template-columns: 1fr; }
  .split-feature.reverse .split-image { order: 0; }
  .evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .evidence-grid div { border-bottom: 1px solid var(--line); }
  .cta-inner { grid-template-columns: 1fr; align-items: start; }
  .page-hero-grid { grid-template-columns: 1fr; padding-top: 5rem; }
  .page-hero-image { margin-right: 0; }
  .page-hero-image img { min-height: 320px; max-height: 460px; border-radius: var(--radius); }
  .need-grid, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .value-strip, .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .policy-grid aside { position: static; }
  .policy-content > section { padding-left: 46px; }
  .footer-lead { align-items: flex-start; flex-direction: column; }
  .footer-contact { text-align: left; }
  .cookie-actions { width: 100%; }
}
@media (max-width: 560px) {
  body { padding-bottom: 70px; }
  .container { width: min(100% - 1.25rem, 1320px); }
  h1 { font-size: 3rem; }
  .home-hero-copy p:not(.eyebrow) { font-size: 1.05rem; }
  .route-card { min-height: 320px; padding: 2rem 1.4rem; grid-template-columns: 38px 1fr; }
  .evidence-grid, .editorial-cards.four, .editorial-cards.three, .need-grid, .value-strip, .process-grid, .form-grid, .fact-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .page-hero-grid { min-height: auto; padding-bottom: 0; }
  .page-hero-image { display: block; margin: 1rem -0.625rem 0; }
  .page-hero-image img { width: 100%; min-height: 260px; max-height: 290px; border-radius: 18px 18px 0 0; object-position: center; }
  .route-section { margin-top: -16px; }
  .section { padding: 4.5rem 0; }
  .service-table article { grid-template-columns: 48px 1fr; }
  .career-card { min-height: 420px; }
  .footer-bottom { flex-direction: column; }
  .wordmark small { font-size: 0.62rem; }
  .utility-links a { font-size: 0.72rem; }
  .mobile-action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; display: grid; grid-template-columns: repeat(3, 1fr); min-height: 66px; border-top: 1px solid var(--line); background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(16px); box-shadow: 0 -10px 30px rgba(16, 24, 40, 0.08); }
  .mobile-action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; color: var(--ink); font-size: 0.72rem; font-weight: 700; }
  .mobile-action-bar a + a { border-left: 1px solid var(--line); }
  .cookie-notice { bottom: 80px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .text-link { grid-column: 1 / -1; margin: 0 0 0.25rem; }
  .cookie-actions .button { width: 100%; }
  .mobile-action-bar svg { width: 20px; height: 20px; color: var(--blue); }
  .action-dot { width: 20px; height: 20px; display: block; border: 5px solid var(--blue-soft); border-radius: 50%; background: var(--blue); }
  .action-dot.care { border-color: var(--teal-soft); background: var(--teal); }
  .action-dot.work { border-color: #fff2d8; background: var(--marigold); }
}
