:root {
  --ivory: #faf7ef;
  --ivory-deep: #f2ecdf;
  --white: #fffefa;
  --navy: #203a4a;
  --navy-deep: #142d3d;
  --sage: #72866a;
  --sage-dark: #596d52;
  --sage-pale: #e8eee3;
  --gold: #c9a54d;
  --ink: #26353d;
  --muted: #66747a;
  --line: #ddd9cd;
  --shadow: 0 24px 70px rgba(32, 58, 74, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 12px 16px; color: white; background: var(--navy-deep); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; }
::selection { color: var(--navy-deep); background: #e6d7a8; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.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; }
.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.site-shell { min-height: 100vh; overflow: hidden; }
.section { padding: 100px 0; }
.eyebrow { margin: 0 0 18px; color: var(--sage-dark); font-size: 12px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow.light { color: #dce8d5; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2 { color: var(--navy-deep); font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.038em; }
h2 { margin: 0; font-size: clamp(38px, 5vw, 63px); line-height: 1.05; }
p { line-height: 1.75; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 24px; border: 0; border-radius: 7px; font-size: 14px; font-weight: 750; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--sage); box-shadow: 0 12px 28px rgba(89, 109, 82, .22); }
.button-primary:hover { background: var(--sage-dark); }
.button-light { color: var(--navy-deep); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); font-weight: 800; border-bottom: 1px solid rgba(32, 58, 74, .32); padding-bottom: 5px; }
.text-link:hover { color: var(--sage-dark); border-color: var(--sage-dark); }

/* Brand and header */
.site-header { position: relative; z-index: 50; background: rgba(250, 247, 239, .96); border-bottom: 1px solid rgba(221, 217, 205, .75); }
.header-inner { min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand-cluster { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.header-contact-details { display: grid; gap: 3px; padding-left: 22px; border-left: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.35; }
.header-contact-details > a, .header-contact-details > span { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.header-contact-details > a:hover { color: var(--sage-dark); }
.header-contact-details > * > span { min-width: 25px; color: var(--sage-dark); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.header-contact-details > a:last-child { color: var(--navy-deep); font-weight: 750; }
.brand { display: inline-flex; align-items: center; gap: 17px; flex-shrink: 0; }
.brand-copy { display: grid; color: var(--navy-deep); font-family: Georgia, "Times New Roman", serif; font-size: 22px; font-weight: 500; line-height: .98; letter-spacing: -.025em; }
.brand-copy strong { font-weight: 500; }
.brand-mark { position: relative; width: 56px; height: 70px; display: inline-block; }
.brand-petal { --angle: calc(var(--petal) * 36deg); position: absolute; top: 4px; left: 23px; width: 10px; height: 25px; background: var(--white); border: 1px solid #a8b49c; border-radius: 50%; transform-origin: 5px 24px; transform: rotate(var(--angle)); }
.brand-center { position: absolute; z-index: 2; top: 23px; left: 22px; width: 13px; height: 13px; border-radius: 50%; background: var(--gold); box-shadow: inset 0 0 0 2px rgba(255,255,255,.3); }
.brand-stem { position: absolute; top: 35px; left: 28px; width: 1px; height: 31px; background: var(--sage-dark); transform: rotate(4deg); }
.brand-leaf { position: absolute; width: 13px; height: 7px; border-radius: 100% 0 100% 0; background: var(--sage); }
.leaf-one { top: 49px; left: 29px; transform: rotate(-14deg); }
.leaf-two { top: 56px; left: 16px; transform: rotate(165deg); }
.brand-mark.compact { transform: scale(.86); transform-origin: left center; margin-right: -7px; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 26px); color: var(--navy-deep); font-size: 13px; font-weight: 700; }
.mobile-contact-details { display: none; }
.site-nav > a:not(.button) { position: relative; padding: 12px 0; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 2px; background: var(--sage); transition: right .2s ease; }
.site-nav > a:hover::after, .site-nav > a.active::after { right: 0; }
.nav-cta { min-width: 196px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 6px; background: transparent; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--navy-deep); }

/* Home */
.home-hero { position: relative; padding-top: 42px; background: radial-gradient(circle at 0 60%, rgba(114,134,106,.12), transparent 30%), var(--ivory); }
.home-hero::before { content: "✿"; position: absolute; left: -42px; top: 170px; color: rgba(114,134,106,.10); font-size: 250px; line-height: 1; transform: rotate(-14deg); }
.hero-grid { position: relative; display: grid; grid-template-columns: .94fr 1.24fr; align-items: center; gap: 54px; }
.hero-copy { position: relative; z-index: 2; padding: 52px 0 62px; }
.hero-copy h1 { max-width: 610px; margin: 0; font-size: clamp(58px, 6vw, 92px); line-height: .98; }
.hero-copy h1 em { display: block; color: var(--sage-dark); font-style: normal; }
.hero-intro { max-width: 570px; margin: 30px 0 32px; color: #46565e; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-image-wrap { position: relative; min-height: 610px; align-self: stretch; overflow: hidden; border-radius: 110px 0 0 0; box-shadow: var(--shadow); }
.hero-image { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 55% center; }
.image-note { position: absolute; left: 24px; bottom: 24px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.6); border-radius: 5px; color: white; background: rgba(20,45,61,.72); backdrop-filter: blur(10px); font-size: 12px; letter-spacing: .04em; }
.trust-strip { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 0; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: 0 18px 48px rgba(32,58,74,.05); }
.trust-strip div { min-height: 112px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 24px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip span { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 48px; border: 1px solid #aab7a1; border-radius: 50%; color: var(--sage-dark); font-size: 23px; }
.trust-strip strong { color: var(--navy-deep); font-size: 15px; }
.two-column { display: grid; grid-template-columns: .9fr 1fr; gap: 100px; align-items: start; }
.prose p { margin: 0 0 22px; color: var(--muted); font-size: 16px; }
.services-section { background: var(--navy-deep); }
.services-section h2, .services-section h3 { color: white; }
.services-section .eyebrow { color: #b8c9ae; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 58px; }
.section-heading > p { max-width: 455px; margin: 0; color: rgba(255,255,255,.66); }
.section-heading.compact { display: block; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-grid.five-services { grid-template-columns: repeat(5, 1fr); }
.five-services .service-card { padding-inline: 22px; }
.five-services .service-card h3 { font-size: 25px; }
.service-card { min-height: 360px; display: flex; flex-direction: column; padding: 34px 28px; border: 1px solid rgba(255,255,255,.13); border-right: 0; transition: background .2s ease, transform .2s ease; }
.service-card:last-child { border-right: 1px solid rgba(255,255,255,.13); }
.service-card:hover { background: rgba(255,255,255,.055); transform: translateY(-4px); }
.service-card > span { color: #c6d5be; font-family: Georgia, serif; font-size: 13px; }
.service-card h3 { margin: 60px 0 15px; font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.service-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; }
.service-card a { margin-top: auto; color: white; font-size: 13px; font-weight: 800; }
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-grid article { position: relative; padding: 34px; border-top: 1px solid var(--navy); background: var(--ivory); }
.process-grid span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--sage); font-family: Georgia, serif; }
.process-grid h3 { margin: 44px 0 13px; color: var(--navy-deep); font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.process-grid p { margin: 0; color: var(--muted); }
.promise-section { background: var(--ivory-deep); }
.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.promise-quote { position: relative; min-height: 420px; display: grid; align-content: center; padding: 60px; border-radius: 80px 0 80px 0; background: var(--sage); color: white; }
.promise-quote > span { position: absolute; top: 24px; left: 38px; color: rgba(255,255,255,.3); font-family: Georgia, serif; font-size: 120px; }
.promise-quote blockquote { position: relative; margin: 0; font-family: Georgia, serif; font-size: clamp(30px, 3.3vw, 48px); line-height: 1.16; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 30px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 31px; color: #4b5b62; line-height: 1.55; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--sage); font-size: 11px; }

/* Interior pages */
.page-hero { position: relative; padding: 112px 0 104px; overflow: hidden; color: white; background: var(--navy-deep); }
.page-hero::after { content: ""; position: absolute; width: 440px; height: 440px; right: -100px; top: -220px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.025), 0 0 0 180px rgba(255,255,255,.02); }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .eyebrow { color: #bed0b5; }
.page-hero h1 { max-width: 900px; margin: 0; color: white; font-size: clamp(50px, 6vw, 84px); line-height: 1.03; }
.page-hero p:not(.eyebrow) { max-width: 760px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 17px; }
.page-hero .button { margin-top: 30px; }
.botanical { position: absolute; color: rgba(255,255,255,.035); font-size: 310px; }
.botanical-left { left: -60px; bottom: -120px; }
.detailed-service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.detailed-service { position: relative; padding: 42px; border: 1px solid var(--line); background: var(--white); }
.detailed-service .service-flower { color: var(--gold); font-size: 28px; }
.detailed-service h2 { margin: 24px 0 15px; font-family: Georgia, serif; font-size: 34px; }
.detailed-service p { color: var(--muted); }
.detailed-service ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 28px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.detailed-service li { position: relative; padding-left: 18px; color: #52636b; font-size: 13px; line-height: 1.5; }
.detailed-service li::before { content: "•"; position: absolute; left: 0; color: var(--sage); }
.notice-section { padding-top: 0; }
.notice-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; padding: 55px; border-left: 5px solid var(--gold); background: var(--ivory-deep); }
.notice-card h2 { font-size: 43px; }
.notice-card p { margin-top: 0; color: var(--muted); }
.insurance-promo-section { padding: 64px 0; background: var(--sage-pale); }
.insurance-promo { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; padding: 44px; color: white; background: var(--sage); box-shadow: var(--shadow); }
.insurance-symbol { width: 68px; height: 68px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--sage-dark); background: var(--white); font-size: 30px; font-weight: 900; }
.insurance-promo .eyebrow { margin-bottom: 8px; color: #e1eadc; }
.insurance-promo h2 { color: white; font-size: clamp(34px, 4vw, 50px); }
.insurance-promo p:not(.eyebrow) { max-width: 720px; margin: 12px 0 0; color: rgba(255,255,255,.79); }
.story-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 100px; }
.values-section { background: var(--white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.values-grid article { min-height: 310px; padding: 34px; background: var(--ivory); }
.values-grid span { color: var(--sage); font-family: Georgia, serif; }
.values-grid h3 { margin: 58px 0 12px; color: var(--navy-deep); font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.values-grid p { color: var(--muted); font-size: 14px; }
.quality-section { background: var(--sage-pale); }
.resource-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.resource-layout aside { position: sticky; top: 30px; padding: 38px; background: var(--sage-pale); }
.resource-layout aside h2 { font-size: 42px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy-deep); font-family: Georgia, serif; font-size: 24px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: Arial, sans-serif; color: var(--sage); font-size: 24px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 50px 28px 0; color: var(--muted); }
.emergency-section { padding-top: 0; }
.emergency-card { display: flex; gap: 25px; align-items: start; padding: 34px; color: #66321f; border: 1px solid #ddbba7; background: #fff3ec; }
.emergency-card > span { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 40px; border-radius: 50%; color: white; background: #a55232; font-weight: 900; }
.emergency-card h2 { margin: 0 0 8px; color: #66321f; font-size: 28px; }
.emergency-card p { margin: 0; }
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: start; }
.inquiry-form { padding: 42px; border: 1px solid var(--line); background: var(--ivory); box-shadow: var(--shadow); }
.form-heading h2 { font-size: 44px; }
.form-heading > p:last-child { margin: 12px 0 30px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid label { display: grid; gap: 8px; }
.form-grid label > span { color: var(--navy-deep); font-size: 13px; font-weight: 800; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid #c9c9bd; border-radius: 5px; color: var(--ink); background: white; outline: none; }
.form-grid input, .form-grid select { height: 49px; padding: 0 13px; }
.form-grid textarea { min-height: 150px; padding: 13px; resize: vertical; line-height: 1.55; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 4px rgba(114,134,106,.14); }
.form-wide { grid-column: 1 / -1; }
.consent-row { display: flex; align-items: start; gap: 12px; margin-top: 20px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.consent-row input { width: 18px; height: 18px; flex: 0 0 18px; accent-color: var(--sage); }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 25px; }
.form-actions small { max-width: 180px; color: var(--muted); line-height: 1.5; }
.form-status { margin: 18px 0 0; padding: 14px; color: #3f5c3b; background: var(--sage-pale); }
.form-error { margin: 18px 0; padding: 14px; color: #7b2f20; border: 1px solid #d7a89e; background: #fff0ed; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-aside h2 { font-size: 44px; }
.contact-facts { display: grid; gap: 18px; margin-top: 28px; }
.contact-facts > div { display: grid; gap: 5px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.contact-facts strong { color: var(--navy-deep); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.contact-facts a { width: fit-content; color: var(--sage-dark); font-size: 16px; font-weight: 800; }
.contact-facts p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.contact-aside ol { display: grid; gap: 28px; padding: 0; margin: 32px 0 0; list-style: none; }
.contact-aside li { display: flex; gap: 18px; }
.contact-aside li > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; border-radius: 50%; color: white; background: var(--sage); }
.contact-aside li strong { color: var(--navy-deep); }
.contact-aside li p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.contact-note { margin-top: 38px; padding: 24px; border-left: 4px solid var(--gold); background: var(--ivory-deep); }
.contact-note strong { color: var(--navy-deep); }
.contact-note p { margin-bottom: 0; color: var(--muted); font-size: 13px; }
.contact-note a { color: var(--sage-dark); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.referral-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: start; }
.legal-section { background: var(--white); }
.legal-content { max-width: 850px; }
.legal-date { padding-bottom: 24px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.legal-content h2 { margin: 52px 0 13px; font-size: 35px; }
.legal-content p { color: var(--muted); }
.not-found { min-height: 620px; display: grid; place-items: center; text-align: center; }
.not-found > div > span { display: block; margin-bottom: 20px; color: var(--gold); font-size: 64px; }
.not-found h1 { max-width: 700px; margin: 0 auto; font-size: clamp(50px, 7vw, 84px); }
.not-found p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }

/* CTA and footer */
.cta-section { padding: 70px 0; background: var(--ivory); }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 58px; color: white; background: var(--sage); }
.cta-card h2 { max-width: 780px; color: white; font-size: clamp(37px, 4vw, 56px); }
.cta-card .button { flex-shrink: 0; }
.site-footer { padding: 78px 0 24px; color: rgba(255,255,255,.65); background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr 1fr; gap: 50px; padding-bottom: 54px; }
.footer-logo .brand-copy { color: white; }
.footer-brand > p { max-width: 370px; margin: 24px 0 0; font-size: 13px; }
.footer-column { display: flex; flex-direction: column; align-items: start; gap: 12px; }
.footer-column > strong { margin-bottom: 6px; color: #b9caae; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a { font-size: 13px; }
.footer-column a:hover { color: white; }
.footer-column p { margin: 0; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; letter-spacing: .03em; }

@media (max-width: 1060px) {
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 14px 24px 24px; border-bottom: 1px solid var(--line); background: var(--ivory); box-shadow: 0 20px 35px rgba(32,58,74,.12); }
  .site-nav.open { display: flex; }
  .site-nav.open { display: flex; }
  .header-contact-details { display: none; }
  .mobile-contact-details { display: grid; gap: 9px; margin-bottom: 10px; padding: 14px 4px; color: var(--navy-deep); border-bottom: 1px solid var(--line); font-size: 13px; }
  .mobile-contact-details a { color: var(--sage-dark); font-weight: 800; }
  .site-nav > a:not(.button) { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .site-nav > a:not(.button)::after { display: none; }
  .nav-cta { margin-top: 16px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-image-wrap { min-height: 560px; }
  .service-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid.five-services { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 1px solid rgba(255,255,255,.13); }
  .service-card:nth-child(n+3) { border-top: 0; }
  .contact-grid, .referral-layout { gap: 40px; }
  .footer-grid { grid-template-columns: 1.3fr .7fr .7fr; }
  .footer-column:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1200px); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 82px; }
  .brand { gap: 10px; }
  .brand-mark { transform: scale(.78); transform-origin: left center; margin-right: -10px; }
  .brand-copy { font-size: 18px; }
  .home-hero { padding-top: 0; }
  .hero-grid { width: 100%; grid-template-columns: 1fr; gap: 0; }
  .hero-copy { width: min(100% - 32px, 1200px); margin-inline: auto; padding: 62px 0 54px; }
  .hero-copy h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero-image-wrap { min-height: 460px; border-radius: 70px 0 0 0; }
  .trust-strip { width: 100%; grid-template-columns: 1fr; }
  .trust-strip div { min-height: 82px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
  .trust-strip span { width: 40px; height: 40px; flex-basis: 40px; }
  .two-column, .promise-grid, .story-grid, .notice-card, .resource-layout, .contact-grid, .referral-layout { grid-template-columns: 1fr; gap: 44px; }
  .insurance-promo { grid-template-columns: 1fr; align-items: start; padding: 34px 28px; }
  .insurance-promo .button { justify-self: start; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .service-grid, .process-grid, .detailed-service-grid, .values-grid { grid-template-columns: 1fr; }
  .service-grid.five-services { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(2), .service-card:last-child { border: 1px solid rgba(255,255,255,.13); border-bottom: 0; }
  .service-card:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
  .promise-quote { min-height: 360px; padding: 42px; }
  .page-hero { padding: 84px 0; }
  .page-hero h1 { font-size: clamp(48px, 13vw, 68px); }
  .detailed-service { padding: 30px; }
  .detailed-service ul { grid-template-columns: 1fr; }
  .notice-card { padding: 36px 28px; }
  .resource-layout aside { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: 1; }
  .inquiry-form { padding: 28px 22px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions small { max-width: none; }
  .cta-card { align-items: stretch; flex-direction: column; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-column:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-image-wrap { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-column:last-child { grid-column: auto; }
}

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