:root {
    --ink: #223129;
    --muted: #5e6b63;
    --plum: #285b49;
    --plum-deep: #174435;
    --plum-soft: #e1efe8;
    --coral: #D46741;
    --coral-text: #B84F30;
    --coral-soft: #f3e5d8;
    --gold: #D46741;
    --gold-soft: #f3e9dc;
    --cream: #f4f3ed;
    --paper: #f4f3ed;
    --white: #ffffff;
    --line: #d8ded8;
    --shadow: 0 24px 70px rgba(23, 68, 53, .14);
    --radius: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI", ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
a, button, summary { touch-action: manipulation; }
.shell { width: 100%; margin-inline: auto; padding-inline: clamp(20px, 4vw, 80px); }
.section-pad { padding: 104px 0; }
.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;
}
.skip-link {
    position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px;
    color: var(--white); background: var(--plum); border-radius: 8px; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
#main-content:focus { outline: 0; }

.site-header {
    position: sticky; top: 0; z-index: 100; height: 78px; display: flex; align-items: center;
    background: rgba(244, 243, 237, .93); border-bottom: 1px solid transparent;
    backdrop-filter: blur(16px); transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: rgba(40, 91, 73, .12); box-shadow: 0 8px 24px rgba(23, 68, 53, .08); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; }
.brand-logo { display: block; width: auto; max-width: none; height: auto; }
.brand-logo-header { width: 42px; height: 48px; }
.brand-logo-footer { width: 49px; height: 56px; }
.brand-name { display: grid; color: #1F5140; font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 700; line-height: .9; letter-spacing: -.025em; white-space: nowrap; }
.brand-name > span { display: block; }
.brand-footer .brand-name { font-size: 22px; }
.primary-nav { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 30px); }
.primary-nav > a { min-height: 44px; display: inline-flex; align-items: center; padding-block: 8px; color: #33463d; font-size: 14px; font-weight: 700; text-decoration: none; }
.primary-nav > a:not(.button):hover { color: var(--plum); }
.primary-nav .nav-sign-in { margin-left: 12px; color: var(--plum); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 10px; background: transparent; }
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--plum); border-radius: 10px; }
.nav-guides { position: relative; }
.nav-guides-toggle { min-height: 44px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 0; color: #33463d; background: transparent; border: 0; font-size: 14px; font-weight: 700; cursor: pointer; }
.nav-guides-toggle:hover { color: var(--plum); }
.nav-guides-chevron { width: 14px; height: 14px; flex: none; transform-origin: center; transition: transform .2s ease; }
.nav-guides-toggle[aria-expanded="true"] .nav-guides-chevron { transform: rotate(180deg); }
.mobile-guides-label { display: none; }
.nav-guides-menu { position: absolute; top: calc(100% + 8px); right: 0; width: min(340px, calc(100vw - 40px)); display: grid; gap: 2px; padding: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.js .nav-guides-menu { display: none; }
.js .nav-guides.is-open .nav-guides-menu { display: grid; }
.nav-guides-menu a { min-height: 44px; display: flex; align-items: center; padding: 9px 12px; color: var(--ink); border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 1.35; text-decoration: none; }
.nav-guides-menu a:hover, .nav-guides-menu a:focus-visible { color: var(--plum-deep); background: var(--plum-soft); }

.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 13px 24px;
    color: var(--white) !important; background: var(--plum); border: 1px solid var(--plum); border-radius: 999px;
    font-size: 15px; font-weight: 800; line-height: 1.2; text-decoration: none;
    box-shadow: 0 11px 24px rgba(40, 91, 73, .22); transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { background: var(--plum-deep); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(23, 68, 53, .28); }
.button-small { min-height: 44px; padding: 10px 19px; font-size: 13px !important; }
.button-large { min-height: 58px; padding: 16px 28px; }
.button-light { color: var(--plum-deep) !important; background: var(--cream); border-color: var(--cream); box-shadow: 0 12px 26px rgba(28, 13, 25, .25); }
.button-light:hover { background: var(--white); }
.text-link, .light-link { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; padding-block: 7px; font-weight: 800; text-decoration: none; }
.text-link { color: var(--plum); }
.light-link { color: rgba(255, 255, 255, .92); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--plum); font-size: 12px; font-weight: 900; letter-spacing: 1.5px; line-height: 1.2; text-transform: uppercase; }
.eyebrow > span { width: 22px; height: 2px; background: var(--coral); border-radius: 4px; }
.eyebrow-light { color: var(--gold-soft); }
.eyebrow-light > span { background: var(--gold); }
h1, h2, h3 { margin-top: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; line-height: 1.08; }
h1 { margin-bottom: 24px; font-size: clamp(48px, 6.2vw, 78px); letter-spacing: -3px; }
h2 { margin-bottom: 20px; font-size: clamp(38px, 4.5vw, 56px); letter-spacing: -2px; }
h3 { margin-bottom: 12px; font-size: 25px; letter-spacing: -.7px; }
h1 em, h2 em { color: var(--coral-text); font-weight: inherit; }

.hero { position: relative; min-height: 720px; display: flex; align-items: center; overflow: hidden; background-color: var(--paper); background-image: linear-gradient(135deg, #f4f3ed 0%, #edf3ed 55%, #e1efe8 100%); }
.hero::before { content: ""; position: absolute; inset: auto 0 0; height: 100px; background: linear-gradient(to bottom right, transparent 49.5%, var(--paper) 50%); opacity: .9; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 420px; height: 420px; top: -210px; left: -120px; background: rgba(212, 103, 65, .12); }
.hero-glow-two { width: 510px; height: 510px; right: -230px; bottom: -190px; background: rgba(40, 91, 73, .14); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: clamp(48px, 5vw, 96px); align-items: center; }
.hero-copy { max-width: 740px; padding-bottom: 36px; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-lead { max-width: 650px; margin: 0 0 30px; color: var(--muted); font-size: 19px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-bottom: 20px; }
.cta-expectation { max-width: 66ch; margin: -6px 0 22px; color: #506159; font-size: 13px; line-height: 1.55; }
.reassurance-list { display: flex; flex-wrap: wrap; gap: 9px 18px; margin: 0; padding: 0; color: #506159; font-size: 13px; font-weight: 700; list-style: none; }
.reassurance-list span { color: var(--coral-text); font-weight: 900; }

.hero-visual { position: relative; min-width: 0; min-height: 530px; margin: 0; display: grid; place-items: center; }
.visual-orbit { position: absolute; border: 1px solid rgba(40, 91, 73, .14); border-radius: 50%; }
.orbit-one { width: min(44vw, 650px); aspect-ratio: 1; }
.orbit-two { width: min(36vw, 540px); aspect-ratio: 1; border-style: dashed; transform: rotate(18deg); }
.hub-preview-frame { position: relative; z-index: 2; width: min(100%, 760px); overflow: hidden; background: var(--white); border: 1px solid rgba(40, 91, 73, .14); border-radius: 22px; box-shadow: 0 28px 72px rgba(23, 68, 53, .19); transform: perspective(1200px) rotateY(-2deg) rotateZ(1deg); }
.hub-preview-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.5); border-radius: inherit; pointer-events: none; }
.hub-preview-frame img { width: 100%; height: auto; }
.hero-preview-note { position: absolute; right: 3%; bottom: 1%; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--muted); background: rgba(255,255,255,.96); border: 1px solid rgba(40,91,73,.12); border-radius: 999px; box-shadow: 0 12px 28px rgba(23,68,53,.14); font-size: 11px; font-weight: 800; }
.hero-preview-note span { color: var(--coral-text); }

.connection-strip { padding: 26px 0; background: var(--plum-deep); color: rgba(255,255,255,.8); }
.connection-row { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 2.6vw, 34px); font-size: 14px; }
.connection-row > span { color: var(--gold-soft); font-size: 10px; font-weight: 900; letter-spacing: 1.4px; text-transform: uppercase; }.connection-row strong { color: white; font-family: Georgia, serif; font-size: 17px; }.connection-row i { width: 4px; height: 4px; background: var(--coral); border-radius: 50%; }

.features { background: var(--paper); }
.section-heading { max-width: 690px; margin: 0 auto 52px; text-align: center; }.section-heading .eyebrow { margin-bottom: 18px; }.section-heading p { margin: 0 auto; max-width: 580px; color: var(--muted); font-size: 18px; }.section-heading-left { margin: 0; text-align: left; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { position: relative; min-height: 360px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(23, 68, 53, .11); }
.feature-card-plum { background: #e8f2ed; }.feature-card-gold { background: #f5eee6; }.feature-card-coral { background: #eef2e6; }
.feature-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -72px; bottom: -70px; border: 1px solid rgba(40,91,73,.14); border-radius: 50%; box-shadow: 0 0 0 20px rgba(255,255,255,.2), 0 0 0 40px rgba(255,255,255,.12); }
.feature-icon { width: 58px; height: 58px; margin-bottom: 48px; display: grid; place-items: center; color: var(--plum); background: white; border-radius: 18px; box-shadow: 0 10px 25px rgba(23, 68, 53, .09); }
.feature-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-number { position: absolute; top: 35px; right: 32px; color: rgba(40,91,73,.3); font-family: Georgia, serif; font-size: 14px; font-weight: 800; }
.feature-card p { max-width: 52ch; margin: 0 0 20px; color: var(--muted); }.feature-tag { color: var(--plum); font-size: 11px; font-weight: 900; letter-spacing: .5px; text-transform: uppercase; }

.how-it-works { position: relative; overflow: hidden; color: white; background: var(--plum); }
.how-it-works::before { content: ""; position: absolute; width: 440px; height: 440px; top: -260px; right: -100px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.02); }
.how-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: center; }.how-copy h2 { margin-top: 18px; color: white; }.how-copy p { margin: 0 0 30px; color: rgba(255,255,255,.72); font-size: 18px; }
.steps-list { margin: 0; padding: 0; list-style: none; }.steps-list li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.15); }.steps-list li:last-child { border-bottom: 0; }.steps-list > li > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--plum-deep); background: var(--gold-soft); border-radius: 50%; font-family: Georgia, serif; font-size: 21px; font-weight: 800; }.steps-list h3 { margin-bottom: 5px; color: white; font-size: 22px; }.steps-list p { margin: 0; color: rgba(255,255,255,.67); }

.promise { background: var(--cream); }.promise-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: center; }.promise-art { position: relative; min-height: 430px; background: radial-gradient(circle at 50% 48%, #dfeadf 0 19%, transparent 20%), linear-gradient(145deg, #e1efe8, #f3eadf); border-radius: 46% 54% 45% 55% / 55% 42% 58% 45%; }.family-ring { position: absolute; inset: 0; }.family-ring span { position: absolute; display: grid; place-items: center; color: white; background: var(--plum); border: 5px solid var(--cream); border-radius: 50%; box-shadow: 0 10px 24px rgba(23,68,53,.16); font-family: Georgia, serif; font-weight: 800; }.ring-one span:first-child { width: 86px; height: 86px; top: 42px; left: 46px; }.ring-one span:last-child { width: 72px; height: 72px; right: 35px; bottom: 52px; background: var(--coral); }.ring-two span:nth-child(1) { width: 62px; height: 62px; top: 55px; right: 62px; background: #6f8f61; }.ring-two span:nth-child(2) { width: 68px; height: 68px; left: 35px; bottom: 54px; background: #648071; }.ring-two span:nth-child(3) { width: 50px; height: 50px; right: 34px; top: 185px; background: #D46741; }.family-heart { position: absolute; top: 50%; left: 50%; width: 112px; height: 112px; display: grid; place-items: center; color: var(--coral-text); background: white; border-radius: 50%; box-shadow: var(--shadow); transform: translate(-50%, -50%); font-size: 42px; }
.promise-copy .eyebrow { margin-bottom: 18px; }.promise-copy p { color: var(--muted); font-size: 18px; }.check-list { margin: 28px 0 0; padding: 0; list-style: none; }.check-list li { display: flex; gap: 13px; align-items: center; margin: 13px 0; font-weight: 700; }.check-list span { width: 28px; height: 28px; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; font-size: 13px; }

.faq { background: white; }.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }.faq-list details { border-top: 1px solid var(--line); }.faq-list details:last-child { border-bottom: 1px solid var(--line); }.faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; color: var(--ink); font-family: Georgia, serif; font-size: 21px; font-weight: 800; list-style: none; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { color: var(--coral-text); font-family: sans-serif; font-size: 24px; font-weight: 400; transition: transform .2s ease; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list p { margin: -4px 45px 24px 0; color: var(--muted); }

.final-cta { padding-top: 40px; background: white; }.final-card { position: relative; padding: 78px 40px; overflow: hidden; color: white; background-color: var(--plum-deep); background-image: linear-gradient(135deg, var(--plum-deep), var(--plum) 58%, #326c57); border-radius: 32px; text-align: center; box-shadow: 0 24px 60px rgba(23,68,53,.2); }.final-card::before, .final-card::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }.final-card::before { width: 360px; height: 360px; left: -210px; top: -210px; box-shadow: 0 0 0 50px rgba(255,255,255,.025); }.final-card::after { width: 290px; height: 290px; right: -160px; bottom: -190px; box-shadow: 0 0 0 55px rgba(255,255,255,.02); }.final-card h2 { position: relative; z-index: 1; margin: 18px 0 30px; color: white; }.final-card .eyebrow, .final-actions { position: relative; z-index: 1; }.final-actions { display: flex; flex-direction: column; align-items: center; gap: 17px; }.final-spark { position: absolute; color: #dce8c0; }.spark-one { top: 60px; left: 12%; font-size: 30px; }.spark-two { right: 14%; bottom: 60px; font-size: 20px; }

.site-footer { padding: 70px 0 28px; color: var(--muted); background: white; }.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: start; padding-bottom: 42px; }.brand-footer { margin-bottom: 14px; }.footer-grid p { max-width: 470px; margin: 0; }.footer-operator { display: grid; gap: 8px; margin-top: 22px; font-size: 13px; line-height: 1.55; }.footer-operator address { color: var(--muted); font-style: normal; }.footer-operator a { min-height: 44px; display: inline-flex; align-items: center; color: var(--plum); font-weight: 800; }.footer-links { display: grid; grid-template-columns: repeat(2, auto); gap: 6px 34px; }.footer-links a { min-height: 44px; display: inline-flex; align-items: center; padding-block: 8px; color: var(--ink); font-size: 14px; font-weight: 700; text-decoration: none; }.footer-links a:hover { color: var(--coral-text); }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; }
.legal-page { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }.legal-shell { max-width: 1040px; }.legal-card { padding: clamp(30px, 5vw, 68px); border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }.legal-card h1 { max-width: 880px; margin-bottom: 18px; }.legal-card h2 { margin: 42px 0 12px; font-size: clamp(1.35rem, 2vw, 1.8rem); }.legal-card h3 { margin: 28px 0 8px; color: var(--ink); font-size: clamp(1.12rem, 2vw, 1.36rem); }.legal-card p, .legal-card li { max-width: 76ch; line-height: 1.75; }.legal-card ul, .legal-card ol { display: grid; gap: 10px; padding-left: 24px; }.legal-card a { display: inline-block; min-height: 24px; line-height: 24px; }.legal-lead { color: var(--ink); font-size: clamp(1.06rem, 1.8vw, 1.2rem); }.legal-card address { margin-top: 18px; font-style: normal; line-height: 1.7; }.legal-jump { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 12px; }.legal-jump a { min-height: 44px; display: inline-flex; align-items: center; padding: 9px 14px; color: var(--plum); background: var(--plum-soft); border-radius: 999px; font-size: 13px; font-weight: 900; line-height: 1.3; text-decoration: none; }.legal-jump a:hover { color: #fff; background: var(--plum); }.legal-principle-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 34px 0; }.legal-principle-grid section { padding: 24px; background: linear-gradient(145deg,#f5f8f5,#fbf7f1); border: 1px solid var(--line); border-radius: 18px; }.legal-principle-grid strong { color: var(--ink); font-family: Georgia,serif; font-size: 20px; }.legal-principle-grid p { margin: 8px 0 0; font-size: 15px; }.legal-action-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin: 32px 0; padding: clamp(22px,4vw,34px); color: #fff; background: linear-gradient(135deg,var(--plum-deep),var(--plum)); border-radius: 20px; }.legal-action-card strong { font-family: Georgia,serif; font-size: 23px; }.legal-action-card p { margin: 7px 0 0; color: #e3eee8; }.legal-action-card .button { flex: 0 0 auto; color: var(--plum); background: #fff; }.legal-action-card .button:hover { color: var(--plum-deep); background: var(--cream); }

@media (max-width: 680px) { .legal-principle-grid { grid-template-columns: 1fr; }.legal-action-card { align-items: stretch; flex-direction: column; }.legal-action-card .button { width: 100%; }.legal-card ol,.legal-card ul { padding-left: 22px; } }

.handoff-page { min-height: calc(100vh - 78px); display: grid; place-items: center; background: linear-gradient(145deg, var(--cream), var(--plum-soft)); }.handoff-shell { display: grid; place-items: center; }.handoff-card { width: min(100%, 660px); padding: 54px; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); text-align: center; }.handoff-card > img { margin: 0 auto 24px; }.handoff-card h1 { margin: 18px 0; font-size: clamp(40px, 6vw, 58px); }.handoff-card > p { margin: 0 auto 28px; color: var(--muted); font-size: 18px; }.handoff-card .text-link { margin-top: 28px; }.pending-note { margin: 10px 0 0; padding: 18px; color: var(--plum); background: var(--gold-soft); border-radius: 14px; }.pending-note strong, .pending-note span { display: block; }.pending-note span { margin-top: 4px; color: var(--muted); font-size: 14px; }

.handoff-actions { margin-top: 24px; }

.status-page { min-height: calc(100vh - 78px); padding: clamp(72px, 9vw, 120px) 0; background: linear-gradient(145deg, var(--cream), var(--plum-soft)); }
.readable-shell { max-width: 860px; }
.status-card { padding: clamp(30px, 6vw, 58px); background: rgba(255,255,255,.97); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.status-card .eyebrow { margin-bottom: 20px; }
.status-card h1 { margin-bottom: 22px; overflow-wrap: anywhere; font-size: clamp(40px, 6vw, 62px); }
.status-lead { color: var(--muted); font-size: 19px; line-height: 1.65; }
.status-card > p, .status-card form > p { max-width: 64ch; }
.form-field { margin: 28px 0 22px; }
.form-field label { display: block; margin-bottom: 8px; color: var(--ink); font-weight: 800; }
.form-field input { width: 100%; min-height: 54px; padding: 12px 14px; color: var(--ink); background: white; border: 2px solid #abb9b1; border-radius: 11px; font: inherit; }
.form-field input:focus { border-color: var(--plum); outline: 3px solid rgba(212, 103, 65,.28); outline-offset: 2px; }
.form-check { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 10px; align-items: start; margin: 18px 0; }
.form-check input { width: 24px; height: 24px; margin: 1px 0 0; accent-color: var(--plum); }
.form-check label { cursor: pointer; color: var(--ink); font-weight: 700; line-height: 1.5; }
.consent-fieldset { min-width: 0; margin: 24px 0; padding: 20px; border: 1px solid var(--line); border-radius: 14px; }
.consent-fieldset legend { padding: 0 8px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 800; }
.form-help { margin: 24px 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.form-errors { margin: 22px 0; padding: 16px 18px; color: #6e241f; background: #fff1ef; border: 1px solid #c66d64; border-radius: 12px; font-weight: 700; }
.notice-panel { margin: 25px 0; padding: 22px; background: var(--plum-soft); border-left: 5px solid var(--plum); border-radius: 12px; }
.notice-panel h2 { margin-bottom: 10px; font-size: 28px; letter-spacing: -.5px; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.not-found-card { text-align: center; }
.not-found-card .status-lead { margin-inline: auto; }
.not-found-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 24px; margin-top: 30px; }

/* Session-only accessibility preferences. Native browser and OS settings remain authoritative. */
[hidden] { display: none !important; }
.footer-accessibility-button {
    min-height: 44px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 0;
    color: var(--ink); background: transparent; border: 0; cursor: pointer;
    font-size: 14px; font-weight: 700; text-align: left;
}
.footer-accessibility-button:hover { color: var(--coral-text); }
.footer-accessibility-button svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.accessibility-backdrop { position: fixed; inset: 0; z-index: 800; background: rgba(23, 40, 32, .54); }
.accessibility-dialog {
    position: fixed; inset: 0 0 0 auto; z-index: 810; width: min(100%, 560px); height: 100dvh;
    padding: clamp(24px, 4vw, 44px); overflow-y: auto; color: var(--ink); background: var(--white);
    border-left: 1px solid var(--line); box-shadow: -24px 0 60px rgba(23, 68, 53, .2);
}
.accessibility-dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.accessibility-dialog-header .eyebrow { margin-bottom: 12px; }
.accessibility-dialog h2 { margin-bottom: 12px; font-size: clamp(34px, 5vw, 46px); letter-spacing: -1.2px; }
.accessibility-dialog > p { max-width: 54ch; margin: 0 0 26px; color: var(--muted); }
.accessibility-close { flex: 0 0 auto; width: 46px; min-height: 46px; padding: 0; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; font-size: 30px; line-height: 1; }
.accessibility-fieldset { min-width: 0; margin: 0 0 24px; padding: 18px; border: 1px solid var(--line); border-radius: 16px; }
.accessibility-fieldset legend { padding: 0 7px; color: var(--ink); font-weight: 800; }
.accessibility-fieldset label { min-height: 44px; display: flex; align-items: center; gap: 12px; padding: 7px 5px; cursor: pointer; font-weight: 700; }
.accessibility-fieldset input { flex: 0 0 auto; width: 24px; height: 24px; margin: 0; accent-color: var(--plum); }
.accessibility-options { display: grid; grid-template-columns: 1fr 1fr; column-gap: 20px; }
.accessibility-options legend { grid-column: 1 / -1; }
.accessibility-actions { display: flex; justify-content: flex-end; gap: 14px; padding-bottom: 16px; }
.button-secondary { color: var(--plum-deep) !important; background: var(--white); box-shadow: none; }
.button-secondary:hover { color: var(--white) !important; }
body[data-a11y-dialog-open="true"] { overflow: hidden; }

html[data-a11y-text="large"] { font-size: 18px; }
html[data-a11y-text="largest"] { font-size: 20px; }
html[data-a11y-contrast="true"] {
    --ink: #101b15; --muted: #273c32; --plum: #174435; --plum-deep: #0c3024;
    --plum-soft: #d5e8de; --coral: #7b3d10; --coral-text: #7b3d10; --line: #667b70;
}
html[data-a11y-contrast="true"] body { color: #101b15; background: #ffffff; }
html[data-a11y-links="true"] a:not(.button):not(.brand) { text-decoration: underline !important; text-decoration-thickness: .13em !important; text-underline-offset: .2em; }
html[data-a11y-font="true"] h1,
html[data-a11y-font="true"] h2,
html[data-a11y-font="true"] h3,
html[data-a11y-font="true"] .connection-row strong,
html[data-a11y-font="true"] .consent-fieldset legend { font-family: "Segoe UI", ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif; }
html[data-a11y-spacing="true"] body { line-height: 1.85; letter-spacing: .045em; word-spacing: .12em; }
html[data-a11y-controls="true"] .button,
html[data-a11y-controls="true"] .primary-nav > a,
html[data-a11y-controls="true"] .footer-links a,
html[data-a11y-controls="true"] .footer-accessibility-button,
html[data-a11y-controls="true"] .text-link,
html[data-a11y-controls="true"] .light-link,
html[data-a11y-controls="true"] .accessibility-fieldset label { min-height: 54px; }
html[data-a11y-controls="true"] .accessibility-fieldset input { width: 30px; height: 30px; }
html[data-a11y-focus="true"] :focus-visible { outline: 5px solid #b14f00 !important; outline-offset: 4px !important; }
html[data-a11y-motion="true"] { scroll-behavior: auto; }
html[data-a11y-motion="true"] *,
html[data-a11y-motion="true"] *::before,
html[data-a11y-motion="true"] *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }

.resource-paths { background: #edf3ed; }
.resource-path-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.resource-path-grid > a { min-height: 230px; display: block; padding: 28px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 20px; text-decoration: none; box-shadow: 0 12px 30px rgba(23,68,53,.06); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.resource-path-grid > a:hover { transform: translateY(-4px); border-color: rgba(40,91,73,.4); box-shadow: 0 18px 38px rgba(23,68,53,.12); }
.resource-path-grid > a > span { display: block; margin-bottom: 28px; color: var(--coral-text); font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.resource-path-grid h3 { margin-bottom: 10px; font-size: 24px; }
.resource-path-grid p { margin: 0; color: var(--muted); }
.content-hero { background: linear-gradient(145deg, var(--cream), var(--plum-soft)); }
.content-hero .readable-shell { max-width: 980px; }
.content-hero .eyebrow { margin: 28px 0 18px; }
.content-hero h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(44px, 6vw, 72px); }
.content-lead { max-width: 72ch; margin: 0; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.7; }
.content-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 32px; }
.content-actions + .cta-expectation { margin-top: 14px; margin-bottom: 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; color: var(--muted); font-size: 14px; font-weight: 700; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #7b8a82; }
.breadcrumbs a { min-height: 44px; display: inline-flex; align-items: center; color: var(--plum); }
.breadcrumbs li[aria-current="page"] { min-height: 44px; display: inline-flex; align-items: center; }
.content-section { background: var(--white); }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 360px); gap: clamp(48px, 7vw, 120px); align-items: start; }
.article-body { max-width: 78ch; }
.article-body > h2 { margin: 58px 0 18px; font-size: clamp(34px, 4vw, 46px); letter-spacing: -1.3px; }
.article-body > h2:first-child { margin-top: 0; }
.article-body h3 { margin: 34px 0 10px; font-size: 25px; }
.article-body p, .article-body li, .article-body dd { color: #46584f; line-height: 1.8; }
.article-body strong { color: var(--ink); }
.article-body section { margin-top: 46px; }
.content-callout { margin: 42px 0; padding: clamp(24px, 4vw, 38px); background: var(--plum-soft); border-left: 5px solid var(--plum); border-radius: 16px; }
.content-callout h3 { margin-top: 0; }
.content-callout > :last-child { margin-bottom: 0; }
.content-aside { position: sticky; top: 110px; padding: 28px; background: var(--cream); border: 1px solid var(--line); border-radius: 20px; }
.content-aside h2 { margin-bottom: 18px; font-size: 28px; letter-spacing: -.7px; }
.content-aside p { color: var(--muted); }
.compact-checklist { gap: 14px; }
.numbered-checklist { display: grid; gap: 14px; margin: 18px 0 0; padding-left: 24px; }
.large-steps { gap: 20px; }
.plain-checklist, .question-list { display: grid; gap: 12px; padding-left: 22px; }
.two-column-list { grid-template-columns: 1fr 1fr; gap: 10px 32px; }
.field-guide, .status-key { display: grid; gap: 14px; margin: 18px 0 0; }
.field-guide div, .status-key div { display: grid; grid-template-columns: minmax(90px, .35fr) 1fr; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(40,91,73,.16); }
.field-guide dt, .status-key dt { color: var(--ink); font-weight: 900; }
.field-guide dd, .status-key dd { margin: 0; }
.template-block { padding: 24px; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; }
.template-block p { margin: 0 0 12px; }
.template-block p:last-child { margin-bottom: 0; }
.related-guides { background: #edf3ed; }
.related-guides h2 { margin-bottom: 30px; font-size: clamp(34px, 4vw, 48px); }
.guide-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.guide-link-grid a { min-height: 150px; display: flex; flex-direction: column; gap: 8px; padding: 26px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 18px; text-decoration: none; }
.guide-link-grid a:hover { border-color: var(--plum); box-shadow: 0 14px 34px rgba(23,68,53,.1); }
.guide-link-grid strong { font-family: Georgia, "Times New Roman", serif; font-size: 22px; }
.guide-link-grid span { color: var(--muted); }
.final-expectation { max-width: 64ch; margin: 22px auto 0; color: #f1ece8; font-size: 13px; line-height: 1.6; }

/* Let page-wide bands use the viewport while keeping text easy to scan. */
.how-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(58px, 6vw, 116px); }
.how-copy { max-width: 720px; }
.steps-list p { max-width: 64ch; }
.promise-grid { grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(58px, 6vw, 116px); }
.promise-copy { max-width: 760px; }
.faq-grid { grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: clamp(48px, 5vw, 96px); }
.faq-list p { max-width: 72ch; }
.final-card.shell { width: calc(100% - clamp(40px, 8vw, 160px)); padding: 78px 40px; }

@media (max-width: 980px) {
    .section-pad { padding: 82px 0; }
    .resource-path-grid { grid-template-columns: 1fr 1fr; }
    .content-layout { grid-template-columns: 1fr; gap: 44px; }
    .content-aside { position: static; }
    .nav-toggle { display: block; }
    .primary-nav { position: absolute; top: 68px; left: 20px; right: 20px; display: none; align-items: stretch; gap: 4px; padding: 16px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
    .primary-nav.is-open { display: flex; flex-direction: column; }
    .primary-nav > a { padding: 10px 12px; }.primary-nav .nav-sign-in { margin-left: 0; }.primary-nav .button { margin-top: 6px; }
    .nav-guides { width: 100%; padding: 8px 12px 10px; border-block: 1px solid var(--line); }
    .nav-guides-toggle { display: none; }
    .mobile-guides-label { display: block; margin-bottom: 4px; color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
    .nav-guides-menu, .js .nav-guides-menu { position: static; width: 100%; display: grid; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
    .nav-guides-menu a { padding-inline: 0; }
    .no-js .site-header { position: relative; height: auto; }
    .no-js .nav-wrap { align-items: flex-start; padding-block: 12px; }
    .no-js .nav-toggle { display: none; }
    .no-js .primary-nav { position: static; display: flex; flex: 1; flex-direction: column; margin-left: 20px; box-shadow: none; }
    .hero { min-height: auto; }.hero-grid { grid-template-columns: 1fr; gap: 35px; }.hero-copy { padding-bottom: 0; }.hero-visual { min-height: 520px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }.feature-card:last-child { grid-column: 1 / -1; }.feature-card { min-height: 330px; }
    .how-grid, .promise-grid { grid-template-columns: 1fr; gap: 58px; }.promise-art { width: min(100%, 540px); margin-inline: auto; }.faq-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 680px) {
    .shell { padding-inline: 14px; }.section-pad { padding: 68px 0; }.site-header { height: 70px; }.brand-logo-header { width: 35px; height: 40px; }.brand-logo-footer { width: 42px; height: 48px; }.brand-name { font-size: 18px; }.brand-footer .brand-name { font-size: 20px; }
    .resource-path-grid, .guide-link-grid, .two-column-list { grid-template-columns: 1fr; }
    .resource-path-grid > a { min-height: 0; }
    .content-actions { align-items: stretch; flex-direction: column; }
    .content-actions .button, .content-actions .text-link { width: 100%; justify-content: center; }
    .content-hero h1 { font-size: clamp(40px, 12vw, 56px); }
    .field-guide div, .status-key div { grid-template-columns: 1fr; gap: 4px; }
    h1 { font-size: clamp(43px, 13vw, 60px); letter-spacing: -2px; }.hero { padding-top: 72px; }.hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }.hero-actions .text-link { justify-content: center; }.button-large { width: 100%; }.reassurance-list { flex-direction: column; }
    .hero-visual { min-height: 300px; padding-bottom: 44px; }.visual-orbit { display: none; }.hub-preview-frame { border-radius: 16px; transform: none; }.hero-preview-note { right: auto; bottom: 0; left: 50%; white-space: nowrap; transform: translateX(-50%); }
    .connection-row { flex-wrap: wrap; gap: 8px 15px; }.connection-row > span { flex-basis: 100%; text-align: center; }
    .feature-grid { grid-template-columns: 1fr; }.feature-card:last-child { grid-column: auto; }.feature-card { min-height: 310px; }.feature-icon { margin-bottom: 38px; }
    .how-copy .button { width: 100%; }.steps-list li { grid-template-columns: 44px 1fr; gap: 14px; }.steps-list > li > span { width: 42px; height: 42px; }
    .promise-art { min-height: 350px; }.ring-one span:first-child { left: 25px; }.ring-one span:last-child { right: 22px; }.ring-two span:nth-child(1) { right: 40px; }.ring-two span:nth-child(2) { left: 18px; }.ring-two span:nth-child(3) { right: 18px; }
    .final-card.shell { width: calc(100% - 28px); padding: 60px 22px; }.final-card { border-radius: 24px; }.footer-grid { grid-template-columns: 1fr; gap: 32px; }.footer-links { grid-template-columns: 1fr 1fr; }.footer-bottom { flex-direction: column; }.handoff-card, .status-card { padding: 38px 22px; }.status-page { min-height: calc(100vh - 70px); }.form-check { grid-template-columns: 26px minmax(0, 1fr); }
    .accessibility-dialog { width: 100%; padding: 22px 18px; border-left: 0; }
    .accessibility-options { grid-template-columns: 1fr; }
    .accessibility-actions .button { flex: 1 1 0; }
}

@media (max-width: 420px) {
    .footer-links { grid-template-columns: 1fr; gap: 2px; }
    .consent-fieldset { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media (forced-colors: active) {
    .button, .nav-toggle, .hub-preview-frame, .feature-card, .status-card, .handoff-card, .accessibility-dialog, .accessibility-fieldset, .accessibility-close, .footer-accessibility-button { border: 2px solid ButtonText; }
    .eyebrow > span, .connection-row i { background: CanvasText; }
    :focus-visible { outline-color: Highlight; }
}

/* Problem report */
.report-hero { min-height: 70vh; padding: clamp(42px,6vw,84px) 0 100px; background: linear-gradient(145deg,#f4f3ed,#edf3ed 55%,#f6eadf); }
.report-shell { max-width: 940px; }
.report-intro { max-width: 720px; margin-bottom: 32px; }
.report-intro h1 { margin: 8px 0 16px; font-size: clamp(42px,6vw,68px); }
.report-intro > p:last-child { max-width: 58ch; color: #526158; font-size: 18px; line-height: 1.7; }
.report-card,.report-confirmation { padding: clamp(24px,4vw,46px); background: #fff; border: 1px solid rgba(40,91,73,.16); border-radius: 26px; box-shadow: 0 24px 70px rgba(23,68,53,.12); }
.form-grid.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: grid; gap: 8px; margin-bottom: 22px; }
.form-field label,.check-row { color: #163c30; font-weight: 800; }
.form-field input,.form-field select,.form-field textarea { width: 100%; min-height: 50px; padding: 12px 14px; color: #152a23; background: #fff; border: 1px solid #aabbb3; border-radius: 10px; font: inherit; }
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field input:focus,.form-field select:focus,.form-field textarea:focus { outline: 3px solid rgba(212, 103, 65,.22); border-color: #D46741; }
.field-help { color: #65746c; font-size: 13px; }
.field-error,.form-error,.validation-summary { display: block; margin-bottom: 16px; color: #8b231e; font-weight: 700; }
.report-more,.technical-preview { margin: 4px 0 24px; padding: 0 18px; border: 1px solid #d5dfda; border-radius: 12px; }
.report-more summary,.technical-preview summary { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #285b49; cursor: pointer; font-weight: 850; }
.report-more[open],.technical-preview[open] { padding-bottom: 18px; }
.technical-preview p { color: #526158; line-height: 1.65; }
.check-row { display: flex; gap: 10px; align-items: center; min-height: 48px; margin-bottom: 18px; cursor: pointer; }
.check-row input { width: 22px; height: 22px; }
.report-actions { display: flex; justify-content: flex-end; padding-top: 10px; }
.upload-status { min-height: 1.4em; margin: 8px 0 0; color: #526158; font-size: 13px; overflow-wrap: anywhere; }
.technical-preview pre { max-height: 14rem; overflow: auto; margin: 12px 0 0; padding: 14px; color: #31473e; background: #f3f6f3; border-radius: 10px; font: 12px/1.55 Consolas, monospace; white-space: pre-wrap; overflow-wrap: anywhere; }
.report-actions .button.is-submitting { cursor: wait; opacity: .72; pointer-events: none; }
.trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.report-confirmation { text-align: center; }
.confirmation-mark { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 20px; color: #fff; background: #285b49; border-radius: 50%; font-size: 32px; }
.report-confirmation strong { display: block; margin: 14px 0 20px; color: #285b49; font-size: clamp(24px,4vw,34px); letter-spacing: .03em; }
@media (max-width:680px){.form-grid.two-columns{grid-template-columns:1fr}.report-card,.report-confirmation{border-radius:18px}.report-actions .button{width:100%}}

/* Support landing page */
.support-page {
    position: relative;
    min-height: clamp(42rem, calc(100vh - 78px), 58rem);
    display: grid;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f3ed 0%, #edf3ed 58%, #e1efe8 100%);
}
.support-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.support-glow-one { width: 32rem; height: 32rem; top: -18rem; left: -10rem; background: rgba(212, 103, 65,.12); }
.support-glow-two { width: 38rem; height: 38rem; right: -20rem; bottom: -22rem; background: rgba(40,91,73,.14); }
.support-shell { position: relative; z-index: 1; display: grid; place-items: center; }
.support-card { width: min(100%, 56rem); padding: clamp(2rem,6vw,5.5rem); background: rgba(255,255,255,.94); border: 1px solid rgba(40,91,73,.16); border-radius: 2rem; box-shadow: var(--shadow); text-align: center; }
.support-card .eyebrow { margin-bottom: 1.5rem; }
.support-card h1 { font-size: clamp(2.8rem,6vw,4.8rem); }
.support-card > p { max-width: 40rem; margin: 0 auto 2rem; color: var(--muted); font-size: 1.18rem; }
.support-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 36rem) {
    .support-card { padding: 2rem 1.25rem; border-radius: 1.4rem; }
    .support-actions { display: grid; }
    .support-actions .button { width: 100%; }
}

/* Pricing */
.pricing-hero {
    position: relative; overflow: hidden; padding-top: clamp(58px, 7vw, 92px); padding-bottom: clamp(72px, 8vw, 112px);
    background: linear-gradient(145deg, var(--cream) 0%, #edf3ed 52%, var(--plum-soft) 100%);
}
.pricing-hero-shell { position: relative; z-index: 1; }
.pricing-hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.pricing-hero-glow-one { width: 380px; height: 380px; top: -230px; right: 8%; background: rgba(212, 103, 65, .12); }
.pricing-hero-glow-two { width: 460px; height: 460px; bottom: -330px; left: -130px; background: rgba(40, 91, 73, .12); }
.pricing-breadcrumbs { margin-bottom: clamp(40px, 6vw, 72px); }
.pricing-hero-copy { max-width: 960px; margin-inline: auto; text-align: center; }
.pricing-hero-copy .eyebrow { margin-bottom: 20px; }
.pricing-hero-copy h1 { max-width: 920px; margin-inline: auto; font-size: clamp(48px, 6.4vw, 82px); }
.pricing-hero-copy > p { max-width: 760px; margin: 0 auto; color: #46584f; font-size: clamp(18px, 2vw, 21px); line-height: 1.7; }
.pricing-billing-toggle {
    width: fit-content; display: flex; gap: 4px; margin: 40px auto 0; padding: 5px;
    background: rgba(255, 255, 255, .86); border: 1px solid rgba(40, 91, 73, .18); border-radius: 999px;
    box-shadow: 0 14px 36px rgba(23, 68, 53, .09);
}
.pricing-billing-choice {
    min-height: 48px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px;
    color: var(--ink); background: transparent; border: 0; border-radius: 999px; cursor: pointer;
    font-size: 14px; font-weight: 850;
}
.pricing-billing-choice span { padding: 3px 7px; color: #71441f; background: var(--gold-soft); border-radius: 999px; font-size: 11px; white-space: nowrap; }
.pricing-billing-choice.is-active { color: var(--white); background: var(--plum); box-shadow: 0 8px 20px rgba(23, 68, 53, .2); }
.pricing-billing-choice.is-active span { color: var(--plum-deep); background: #fff3dd; }

.pricing-plans { position: relative; background: var(--white); }
.pricing-section-heading { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.pricing-section-heading .eyebrow { margin-bottom: 16px; }
.pricing-section-heading p { max-width: 680px; margin-inline: auto; color: var(--muted); font-size: 18px; }
.pricing-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 28px); align-items: stretch; }
.pricing-card {
    position: relative; min-width: 0; display: flex; flex-direction: column; padding: clamp(28px, 3vw, 40px);
    background: #fbfcfa; border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 18px 48px rgba(23, 68, 53, .08);
}
.pricing-card-featured { color: var(--white); background: linear-gradient(155deg, #285b49 0%, #174435 100%); border-color: var(--plum-deep); box-shadow: 0 25px 64px rgba(23, 68, 53, .24); transform: translateY(-10px); }
.pricing-card-unlimited { background: linear-gradient(180deg, #fffaf4 0%, #fff 100%); border-color: #ddc4a9; }
.pricing-card-topline { min-height: 31px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.pricing-plan-kicker { color: var(--coral-text); font-size: 12px; font-weight: 900; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }
.pricing-card-featured .pricing-plan-kicker { color: #f6d9b4; }
.pricing-popular-badge { flex: 0 0 auto; padding: 5px 9px; color: var(--plum-deep); background: #fff3dd; border-radius: 999px; font-size: 11px; font-weight: 900; line-height: 1.2; text-transform: uppercase; }
.pricing-card h3 { min-height: 58px; margin: 14px 0 10px; font-size: clamp(30px, 3vw, 38px); }
.pricing-card-featured h3 { color: var(--white); }
.pricing-plan-summary { min-height: 82px; margin: 0; color: var(--muted); line-height: 1.65; }
.pricing-card-featured .pricing-plan-summary { color: #e3efe9; }
.pricing-price { min-height: 104px; margin: 28px 0 24px; padding-top: 22px; border-top: 1px solid rgba(40, 91, 73, .15); }
.pricing-card-featured .pricing-price { border-color: rgba(255, 255, 255, .2); }
.pricing-price > div { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px; }
.pricing-price strong { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 4vw, 54px); line-height: 1; letter-spacing: -2px; }
.pricing-card-featured .pricing-price strong { color: var(--white); }
.pricing-price > div > span { color: var(--muted); font-size: 14px; font-weight: 750; }
.pricing-card-featured .pricing-price > div > span { color: #d8e9e1; }
.pricing-price small { display: block; margin-top: 10px; color: var(--muted); font-size: 13px; }
.pricing-card-featured .pricing-price small { color: #d8e9e1; }
.pricing-card-action { width: 100%; margin-bottom: 26px; white-space: nowrap; }
.pricing-card-featured .pricing-card-action { color: var(--plum-deep) !important; background: #fff3dd; border-color: #fff3dd; box-shadow: 0 12px 26px rgba(8, 34, 25, .28); }
.pricing-card-featured .pricing-card-action:hover { background: var(--white); }
.pricing-feature-list { display: grid; gap: 13px; margin: 0; padding: 24px 0 0; border-top: 1px solid rgba(40, 91, 73, .15); list-style: none; }
.pricing-card-featured .pricing-feature-list { border-color: rgba(255, 255, 255, .2); }
.pricing-feature-list li { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 8px; color: #46584f; font-size: 14px; line-height: 1.5; }
.pricing-card-featured .pricing-feature-list li { color: #edf6f1; }
.pricing-feature-list li > span { width: 21px; height: 21px; display: inline-grid; place-items: center; margin-top: 1px; color: var(--plum); background: var(--plum-soft); border-radius: 50%; font-size: 12px; font-weight: 900; }
.pricing-card-featured .pricing-feature-list li > span { color: var(--plum-deep); background: #fff3dd; }
.pricing-plan-note { max-width: 900px; margin: 30px auto 0; color: var(--muted); font-size: 13px; line-height: 1.65; text-align: center; }

.pricing-comparison { background: #edf3ed; }
.pricing-table-shell { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 52px rgba(23, 68, 53, .09); }
.pricing-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.pricing-table thead { color: var(--white); background: var(--plum-deep); }
.pricing-table th, .pricing-table td { padding: 22px clamp(14px, 2vw, 26px); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.pricing-table thead th { font-size: 14px; line-height: 1.35; }
.pricing-table thead th:first-child { width: 28%; }
.pricing-table tbody tr:last-child th, .pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table tbody tr:nth-child(even) { background: #fafbf9; }
.pricing-table tbody th strong { display: block; color: var(--ink); font-size: 15px; }
.pricing-table tbody th small { display: block; margin-top: 5px; color: var(--muted); font-weight: 400; line-height: 1.45; }
.pricing-table td { color: #46584f; font-size: 14px; line-height: 1.55; }

.pricing-faq { background: var(--white); }
.pricing-faq-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 7vw, 118px); align-items: start; }
.pricing-faq-intro { position: sticky; top: 112px; }
.pricing-faq-intro .eyebrow { margin-bottom: 17px; }
.pricing-faq-intro h2 { font-size: clamp(40px, 4.7vw, 58px); }
.pricing-faq-intro p { color: var(--muted); font-size: 18px; }
.pricing-faq-list { border-top: 1px solid var(--line); }
.pricing-faq-list details { border-bottom: 1px solid var(--line); }
.pricing-faq-list summary { min-height: 72px; display: grid; grid-template-columns: minmax(0, 1fr) 32px; gap: 18px; align-items: center; padding: 18px 0; color: var(--ink); cursor: pointer; font-family: Georgia, "Times New Roman", serif; font-size: clamp(19px, 2vw, 23px); font-weight: 800; line-height: 1.3; list-style: none; }
.pricing-faq-list summary::-webkit-details-marker { display: none; }
.pricing-faq-list summary > span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--plum); background: var(--plum-soft); border-radius: 50%; font-family: "Segoe UI", sans-serif; transition: transform .2s ease; }
.pricing-faq-list details[open] summary > span { transform: rotate(45deg); }
.pricing-faq-list p { max-width: 68ch; margin: -2px 50px 24px 0; color: var(--muted); line-height: 1.75; }

.pricing-final { padding-top: 0; background: var(--white); }
.pricing-final-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(42px, 6vw, 72px); color: var(--white); background: linear-gradient(135deg, #174435, #285b49); border-radius: 28px; box-shadow: var(--shadow); }
.pricing-final-card > div { max-width: 720px; }
.pricing-final-card .eyebrow { margin-bottom: 16px; }
.pricing-final-card h2 { margin-bottom: 14px; color: var(--white); }
.pricing-final-card p { margin: 0; color: #deebe4; font-size: 18px; }
.pricing-final-card > .button { flex: 0 0 auto; }

@media (max-width: 1100px) {
    .pricing-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .pricing-card-featured { transform: none; }
    .pricing-card-unlimited { grid-column: 1 / -1; width: min(100%, calc(50% - 10px)); justify-self: center; }
}

@media (max-width: 760px) {
    .pricing-hero { padding-top: 38px; }
    .pricing-breadcrumbs { margin-bottom: 32px; }
    .pricing-hero-copy { text-align: left; }
    .pricing-hero-copy h1 { font-size: clamp(43px, 13vw, 62px); letter-spacing: -2px; }
    .pricing-billing-toggle { width: 100%; }
    .pricing-billing-choice { flex: 1 1 0; justify-content: center; padding-inline: 12px; }
    .pricing-card-grid { grid-template-columns: 1fr; }
    .pricing-card-unlimited { grid-column: auto; width: 100%; }
    .pricing-card h3, .pricing-plan-summary { min-height: 0; }
    .pricing-price { min-height: 0; }
    .pricing-card-action { white-space: normal; }
    .pricing-table-shell { overflow: visible; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
    .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table th, .pricing-table td { display: block; width: 100%; }
    .pricing-table { table-layout: auto; }
    .pricing-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
    .pricing-table tbody { display: grid; gap: 18px; }
    .pricing-table tbody tr { overflow: hidden; background: var(--white) !important; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 28px rgba(23, 68, 53, .07); }
    .pricing-table tbody th, .pricing-table tbody td { padding: 17px 18px; border-bottom: 1px solid var(--line); }
    .pricing-table tbody th { background: var(--plum-deep); }
    .pricing-table tbody th strong, .pricing-table tbody th small { color: var(--white); }
    .pricing-table tbody th small { color: #dcebe3; }
    .pricing-table tbody td::before { content: attr(data-plan-label); display: block; margin-bottom: 4px; color: var(--plum); font-size: 11px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
    .pricing-table tbody tr td:last-child { border-bottom: 0; }
    .pricing-faq-grid { grid-template-columns: 1fr; gap: 34px; }
    .pricing-faq-intro { position: static; }
    .pricing-final-card { align-items: stretch; flex-direction: column; }
    .pricing-final-card > .button { width: 100%; }
}

@media (max-width: 480px) {
    .pricing-billing-choice { min-width: 0; flex-direction: column; gap: 2px; padding: 8px; line-height: 1.2; }
    .pricing-billing-choice span { padding: 0; background: transparent; font-size: 10px; }
    .pricing-billing-choice.is-active span { color: #e7f1ec; background: transparent; }
    .pricing-card { padding: 25px 21px; }
    .pricing-card-topline { min-height: 0; flex-wrap: wrap; }
}

@media (forced-colors: active) {
    .pricing-card, .pricing-billing-toggle, .pricing-billing-choice, .pricing-table-shell, .pricing-table tbody tr, .pricing-final-card { border: 2px solid ButtonText; }
}

/* Features overview */
.features-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(42px, 6vw, 78px) 0 clamp(76px, 9vw, 126px);
    background: linear-gradient(145deg, #f4f3ed 0%, #edf3ed 48%, #f7eee5 100%);
}
.features-hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.features-hero-glow-one { width: 520px; height: 520px; top: -355px; right: -80px; background: rgba(212, 103, 65, .11); }
.features-hero-glow-two { width: 430px; height: 430px; bottom: -330px; left: -170px; background: rgba(40, 91, 73, .12); }
.features-hero-shell { position: relative; z-index: 1; }
.features-breadcrumbs { margin-bottom: clamp(38px, 5vw, 68px); }
.features-hero-grid { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(560px, 1.22fr); gap: clamp(44px, 6vw, 104px); align-items: center; }
.features-hero-copy { max-width: 720px; }
.features-hero-copy .eyebrow { margin-bottom: 20px; }
.features-hero-copy h1 { max-width: 700px; margin-bottom: 25px; font-size: clamp(48px, 5.6vw, 78px); }
.features-hero-copy > p { max-width: 650px; margin: 0; color: #46584f; font-size: clamp(18px, 1.8vw, 21px); line-height: 1.72; }
.features-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 25px; margin-top: 34px; }
.features-assurances { display: flex; flex-wrap: wrap; gap: 12px 22px; margin: 31px 0 0; padding: 0; color: #46584f; list-style: none; }
.features-assurances li { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; }
.features-assurances li span { width: 22px; height: 22px; display: grid; place-items: center; color: var(--white); background: var(--plum); border-radius: 50%; font-size: 11px; }
.features-hero-visual, .feature-story-visual, .features-mobile-visual { min-width: 0; margin: 0; }
.features-hero-visual { position: relative; width: min(850px, 100%); justify-self: end; }
.features-product-frame { position: relative; overflow: hidden; padding-top: 26px; background: #fff; border: 1px solid rgba(40, 91, 73, .2); border-radius: 24px; box-shadow: 0 28px 74px rgba(23, 68, 53, .17); }
.features-product-frame-hero { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); transform-origin: center left; }
.features-frame-bar { position: absolute; inset: 0 0 auto; height: 26px; display: flex; align-items: center; gap: 6px; padding-left: 12px; background: #fff; border-bottom: 1px solid var(--line); }
.features-frame-bar i { width: 7px; height: 7px; display: block; background: #d8ded8; border-radius: 50%; }
.features-frame-bar i:first-child { background: #c88165; }
.features-frame-bar i:nth-child(2) { background: #d9ad62; }
.features-frame-bar i:last-child { background: #739a79; }
.features-product-frame img { width: 100%; height: auto; display: block; }
.features-hero-visual figcaption, .feature-story-visual figcaption, .features-mobile-visual figcaption { margin-top: 13px; color: var(--muted); font-size: 12px; font-weight: 700; line-height: 1.45; text-align: center; }

.features-jump { position: relative; z-index: 4; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 10px 30px rgba(23, 68, 53, .05); }
.features-jump-inner { min-height: 72px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 5px 8px; }
.features-jump-inner > span { margin-right: 10px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.features-jump a { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 13px; color: var(--ink); border-radius: 999px; font-size: 13px; font-weight: 800; text-decoration: none; }
.features-jump a:hover { color: var(--plum); background: var(--plum-soft); }

.feature-story { scroll-margin-top: 86px; background: var(--white); }
.feature-story-tint { background: #edf3ed; }
.feature-story-grid { display: grid; grid-template-columns: minmax(340px, .82fr) minmax(520px, 1.18fr); gap: clamp(50px, 7vw, 120px); align-items: center; }
.feature-story-grid-reverse { grid-template-columns: minmax(520px, 1.18fr) minmax(340px, .82fr); }
.feature-story-copy { position: relative; max-width: 760px; }
.features-number { display: block; margin-bottom: 28px; color: rgba(40, 91, 73, .19); font-family: Georgia, "Times New Roman", serif; font-size: 58px; font-weight: 800; line-height: .8; }
.feature-story-copy .eyebrow { margin-bottom: 17px; }
.feature-story-copy h2 { margin-bottom: 22px; font-size: clamp(39px, 4.4vw, 58px); }
.feature-story-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.feature-check-list { display: grid; gap: 17px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-check-list li { display: grid; grid-template-columns: 27px minmax(0, 1fr); gap: 11px; align-items: start; color: #46584f; line-height: 1.6; }
.feature-check-list li > span { width: 25px; height: 25px; display: grid; place-items: center; margin-top: 1px; color: var(--white); background: var(--plum); border-radius: 50%; font-size: 11px; font-weight: 900; }
.feature-check-list strong { color: var(--ink); }
.feature-inline-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; color: var(--plum); font-weight: 900; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.feature-inline-link span { transition: transform .2s ease; }
.feature-inline-link:hover span { transform: translateX(4px); }
.features-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.features-detail-grid > div { padding: 19px; background: rgba(255, 255, 255, .72); border: 1px solid rgba(40, 91, 73, .15); border-radius: 15px; }
.features-detail-grid strong, .features-detail-grid span { display: block; }
.features-detail-grid strong { margin-bottom: 7px; color: var(--ink); }
.features-detail-grid span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.feature-story-dark { color: var(--white); background: linear-gradient(140deg, #123a2c 0%, #285b49 65%, #326c57 100%); }
.feature-story-dark .features-number { color: rgba(255, 255, 255, .18); }
.feature-story-dark h2 { color: var(--white); }
.feature-story-dark .feature-story-copy > p { color: #dce9e2; }
.features-product-frame-dark { border-color: rgba(255, 255, 255, .28); box-shadow: 0 30px 75px rgba(6, 28, 20, .38); }
.feature-story-dark figcaption { color: #cedfd6; }
.feature-check-list-light li { color: #e5efe9; }
.feature-check-list-light li > span { color: var(--plum-deep); background: #fff3dd; }
.feature-check-list-light strong { color: var(--white); }
.feature-inline-link-light { color: #fff3dd; }

.features-more { scroll-margin-top: 86px; background: var(--cream); }
.features-section-heading { max-width: 820px; margin: 0 auto 50px; text-align: center; }
.features-section-heading .eyebrow { margin-bottom: 17px; }
.features-section-heading h2 { margin-bottom: 16px; font-size: clamp(40px, 5vw, 62px); }
.features-section-heading p { max-width: 650px; margin: 0 auto; color: var(--muted); font-size: 18px; }
.features-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 19px; }
.features-card { min-width: 0; padding: clamp(25px, 2.5vw, 34px); background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 14px 38px rgba(23, 68, 53, .07); }
.features-card-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 28px; color: var(--plum); background: var(--plum-soft); border-radius: 16px; }
.features-card-icon-warm { color: #7c451b; background: #f3e9dc; }
.features-card-icon-leaf { color: #496b3d; background: #e7efe3; }
.features-card-icon-gold { color: #71441f; background: #fff3dd; }
.features-card-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.features-card h3 { margin-bottom: 12px; font-size: clamp(22px, 2.2vw, 28px); }
.features-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.features-mobile { position: relative; scroll-margin-top: 86px; overflow: hidden; color: var(--white); background: #173f31; }
.features-mobile::before { content: ""; position: absolute; width: 640px; height: 640px; top: -340px; right: -220px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.features-mobile-grid { position: relative; display: grid; grid-template-columns: minmax(350px, .85fr) minmax(520px, 1.15fr); gap: clamp(40px, 7vw, 120px); align-items: center; }
.features-mobile-copy { max-width: 700px; }
.features-coming-badge { width: fit-content; display: block; margin-bottom: 22px; padding: 7px 12px; color: #5b3518; background: #fff3dd; border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.features-mobile-copy .eyebrow { margin-bottom: 18px; }
.features-mobile-copy h2 { margin-bottom: 21px; color: var(--white); font-size: clamp(40px, 4.8vw, 62px); }
.features-mobile-copy > p { max-width: 650px; color: #dce9e2; font-size: 18px; line-height: 1.75; }
.features-mobile-copy .features-mobile-note { margin-top: 24px; color: #f3dbc0; font-size: 14px; font-weight: 800; }
.features-mobile-copy .button { margin-top: 17px; }
.features-mobile-visual img { width: 100%; height: auto; display: block; }
.features-mobile-visual figcaption { color: #cedfd6; }

.features-related { background: var(--white); }
.features-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 19px; }
.features-related-grid a { min-height: 190px; display: flex; flex-direction: column; padding: 28px; color: var(--ink); background: #fbfcfa; border: 1px solid var(--line); border-radius: 20px; text-decoration: none; }
.features-related-grid a:hover { border-color: var(--plum); box-shadow: 0 16px 40px rgba(23, 68, 53, .1); transform: translateY(-3px); }
.features-related-grid span { margin-bottom: auto; color: rgba(40, 91, 73, .35); font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 800; }
.features-related-grid strong { margin: 22px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 23px; }
.features-related-grid small { color: var(--muted); font-size: 14px; line-height: 1.55; }
.features-final { padding-top: 20px; }

@media (max-width: 1120px) {
    .features-hero-grid { grid-template-columns: 1fr; }
    .features-hero-copy { max-width: 820px; }
    .features-hero-visual { width: min(100%, 900px); justify-self: center; }
    .features-product-frame-hero { transform: none; }
    .features-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
    .features-jump-inner { justify-content: flex-start; padding-block: 12px; }
    .features-jump-inner > span { flex-basis: 100%; }
    .feature-story-grid, .feature-story-grid-reverse, .features-mobile-grid { grid-template-columns: 1fr; gap: 50px; }
    .feature-story-grid-reverse .feature-story-visual { order: 2; }
    .features-mobile-visual { width: min(100%, 720px); margin-inline: auto; }
}

@media (max-width: 680px) {
    .features-hero { padding-top: 28px; }
    .features-breadcrumbs { margin-bottom: 28px; }
    .features-hero-copy h1 { font-size: clamp(43px, 13vw, 60px); letter-spacing: -2px; }
    .features-hero-actions { align-items: stretch; flex-direction: column; }
    .features-hero-actions .button, .features-hero-actions .text-link { width: 100%; justify-content: center; }
    .features-assurances { flex-direction: column; }
    .features-product-frame { padding-top: 20px; border-radius: 15px; }
    .features-frame-bar { height: 20px; }
    .features-frame-bar i { width: 6px; height: 6px; }
    .features-jump { position: static; }
    .features-jump-inner { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-block: 10px; scrollbar-width: thin; }
    .features-jump-inner > span { flex-basis: auto; flex: 0 0 auto; }
    .features-jump a { flex: 0 0 auto; }
    .features-number { margin-bottom: 22px; font-size: 48px; }
    .feature-story-copy h2, .features-mobile-copy h2 { font-size: clamp(37px, 11vw, 50px); }
    .features-detail-grid { grid-template-columns: 1fr; }
    .features-card-grid, .features-related-grid { grid-template-columns: 1fr; }
    .features-card { padding: 25px 22px; }
    .features-related-grid a { min-height: 165px; }
    .features-mobile-copy .button { width: 100%; }
}

@media (forced-colors: active) {
    .features-product-frame, .features-card, .features-related-grid a, .features-detail-grid > div { border: 2px solid ButtonText; }
}

/* About Reunion Portal */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(36px, 5vw, 68px) 0 clamp(78px, 9vw, 126px);
    background: linear-gradient(145deg, #f4f3ed 0%, #edf3ed 52%, #f5e9dc 100%);
}
.about-hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.about-hero-glow-one { width: 500px; height: 500px; top: -340px; right: -80px; background: rgba(212, 103, 65, .12); }
.about-hero-glow-two { width: 430px; height: 430px; bottom: -330px; left: -160px; background: rgba(40, 91, 73, .13); }
.about-hero-shell { position: relative; z-index: 1; }
.about-breadcrumbs { margin-bottom: clamp(36px, 5vw, 62px); }
.about-hero-grid { display: grid; grid-template-columns: minmax(430px, .96fr) minmax(480px, 1.04fr); gap: clamp(42px, 5vw, 80px); align-items: center; }
.about-hero-copy { max-width: 760px; }
.about-hero-copy .eyebrow { margin-bottom: 20px; }
.about-hero-copy h1 { max-width: 740px; margin-bottom: 26px; font-size: clamp(48px, 4.7vw, 68px); }
.about-hero-copy > p { max-width: 680px; margin: 0; color: #46584f; font-size: clamp(18px, 1.8vw, 21px); line-height: 1.74; }
.about-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin-top: 34px; }

.about-week-figure { width: min(100%, 690px); margin: 0; justify-self: end; }
.about-week-card { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 48px); background: rgba(255, 255, 255, .96); border: 1px solid rgba(40, 91, 73, .18); border-radius: 28px; box-shadow: 0 30px 78px rgba(23, 68, 53, .17); transform: rotate(1.2deg); }
.about-week-card::before { content: ""; position: absolute; width: 300px; height: 300px; right: -185px; bottom: -190px; border: 1px solid rgba(40, 91, 73, .12); border-radius: 50%; box-shadow: 0 0 0 42px rgba(40, 91, 73, .035), 0 0 0 84px rgba(40, 91, 73, .025); }
.about-week-topline { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.about-week-topline > span { color: var(--plum); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.about-week-topline strong { display: flex; align-items: baseline; gap: 9px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(20px, 2.2vw, 28px); line-height: 1; white-space: nowrap; }
.about-week-topline b { color: var(--coral-text); font-size: clamp(44px, 5vw, 68px); line-height: .72; }
.about-week-days { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(7, 1fr); gap: clamp(5px, 1vw, 12px); margin: 30px 0 34px; padding: 0; list-style: none; }
.about-week-days li { aspect-ratio: 1; display: grid; place-items: center; color: #526159; background: #edf3ed; border: 1px solid rgba(40, 91, 73, .12); border-radius: 50%; font-size: clamp(11px, 1.3vw, 15px); font-weight: 900; }
.about-week-days li:nth-child(4) { color: var(--white); background: var(--plum); border-color: var(--plum); box-shadow: 0 8px 20px rgba(23, 68, 53, .22); }
.about-week-purpose { position: relative; z-index: 1; display: grid; gap: 11px; width: calc(100% - 34px); }
.about-week-purpose > div { min-height: 56px; display: grid; grid-template-columns: 35px minmax(0, 1fr); gap: 12px; align-items: center; padding: 10px 16px; background: #fbfcfa; border: 1px solid var(--line); border-radius: 14px; }
.about-week-purpose span { color: var(--coral-text); font-size: 11px; font-weight: 900; }
.about-week-purpose strong { color: var(--ink); font-size: 14px; }
.about-week-tree { position: absolute; right: 28px; bottom: 26px; z-index: 2; width: 92px; height: 116px; opacity: .9; }
.about-week-tree::before { content: ""; position: absolute; left: 45px; bottom: 0; width: 4px; height: 75px; background: var(--plum); border-radius: 4px; }
.about-week-tree::after { content: ""; position: absolute; left: 24px; bottom: 52px; width: 46px; height: 34px; border-left: 3px solid var(--plum); border-right: 3px solid var(--plum); border-top: 3px solid var(--plum); border-radius: 50% 50% 0 0; }
.about-week-tree i { position: absolute; width: 27px; height: 27px; background: var(--plum); border-radius: 50% 50% 46% 54%; }
.about-week-tree i:first-child { top: 8px; left: 32px; width: 34px; height: 34px; }
.about-week-tree i:nth-child(2) { top: 27px; left: 9px; background: #6f8f61; }
.about-week-tree i:nth-child(3) { top: 28px; right: 6px; background: #6f8f61; }
.about-week-tree i:nth-child(4) { top: 51px; left: 20px; width: 24px; height: 24px; background: var(--coral); }
.about-week-tree i:last-child { top: 50px; right: 17px; width: 24px; height: 24px; background: #a37a45; }
.about-week-figure figcaption { margin-top: 14px; color: var(--muted); font-size: 12px; font-weight: 700; line-height: 1.5; text-align: center; }

.about-story { background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); gap: clamp(54px, 8vw, 140px); align-items: start; }
.about-story-heading { position: sticky; top: 112px; max-width: 560px; }
.about-story-heading .eyebrow { margin-bottom: 18px; }
.about-story-heading h2 { font-size: clamp(42px, 5vw, 64px); }
.about-story-copy { max-width: 830px; }
.about-story-copy > p { color: #46584f; font-size: 18px; line-height: 1.82; }
.about-story-copy .about-story-lead { margin-top: 0; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 3vw, 36px); font-weight: 700; line-height: 1.42; }
.about-story-copy blockquote { position: relative; margin: 40px 0; padding: clamp(28px, 4vw, 46px); color: var(--white); background: var(--plum-deep); border-radius: 24px; box-shadow: 0 20px 50px rgba(23, 68, 53, .16); }
.about-story-copy blockquote p { position: relative; z-index: 1; max-width: 27ch; margin: 0; color: var(--white); font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 3vw, 36px); font-weight: 700; line-height: 1.4; }

.about-purpose { background: var(--cream); }
.about-section-heading { max-width: 900px; }
.about-purpose-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.about-purpose-card { position: relative; min-width: 0; min-height: 410px; display: flex; flex-direction: column; padding: clamp(28px, 3vw, 40px); overflow: hidden; background: #e8f2ed; border: 1px solid rgba(40, 91, 73, .16); border-radius: 24px; }
.about-purpose-card-warm { background: #f5eee6; }
.about-purpose-card-leaf { background: #eef2e6; }
.about-purpose-number { position: absolute; top: 30px; right: 30px; color: rgba(40, 91, 73, .3); font-family: Georgia, serif; font-size: 14px; font-weight: 900; }
.about-purpose-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 45px; color: var(--plum); background: var(--white); border-radius: 18px; box-shadow: 0 10px 25px rgba(23, 68, 53, .09); }
.about-purpose-icon svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.about-purpose-card h3 { margin-bottom: 14px; font-size: clamp(25px, 2.4vw, 31px); }
.about-purpose-card p { margin: 0 0 26px; color: var(--muted); line-height: 1.72; }
.about-purpose-card a { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--plum); font-size: 14px; font-weight: 900; text-underline-offset: 5px; }
.about-purpose-card a span { transition: transform .2s ease; }
.about-purpose-card a:hover span { transform: translateX(4px); }

.about-welcome { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(140deg, #123a2c 0%, #285b49 68%, #326c57 100%); }
.about-welcome::before { content: ""; position: absolute; width: 600px; height: 600px; top: -390px; right: -160px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018); }
.about-welcome-grid { position: relative; display: grid; grid-template-columns: minmax(340px, .9fr) minmax(440px, 1.1fr); gap: clamp(55px, 8vw, 130px); align-items: center; }
.about-welcome-copy { max-width: 730px; }
.about-welcome-copy .eyebrow { margin-bottom: 18px; }
.about-welcome-copy h2 { color: var(--white); font-size: clamp(41px, 4.8vw, 62px); }
.about-welcome-copy p { margin-bottom: 30px; color: #dce9e2; font-size: 18px; line-height: 1.78; }
.about-values { display: grid; gap: 0; border-top: 1px solid rgba(255, 255, 255, .18); }
.about-values article { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 20px; padding: 25px 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.about-values article > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--plum-deep); background: #fff3dd; border-radius: 50%; font-family: Georgia, serif; font-weight: 900; }
.about-values h3 { margin: 0 0 7px; color: var(--white); font-size: 23px; }
.about-values p { margin: 0; color: #d3e3da; line-height: 1.65; }

.about-related { background: var(--white); }
.about-related-grid a { background: #fbfcfa; }
.about-final { padding-top: 18px; }

@media (max-width: 1040px) {
    .about-hero-grid { grid-template-columns: 1fr; }
    .about-hero-copy { max-width: 860px; }
    .about-week-figure { width: min(100%, 760px); justify-self: center; }
    .about-week-card { transform: none; }
    .about-purpose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-purpose-card:last-child { grid-column: 1 / -1; width: min(100%, calc(50% - 10px)); justify-self: center; }
}

@media (max-width: 820px) {
    .about-story-grid, .about-welcome-grid { grid-template-columns: 1fr; gap: 44px; }
    .about-story-heading { position: static; }
    .about-purpose-card { min-height: 370px; }
}

@media (max-width: 680px) {
    .about-hero { padding-top: 28px; }
    .about-breadcrumbs { margin-bottom: 28px; }
    .about-hero-copy h1 { font-size: clamp(42px, 12.5vw, 58px); letter-spacing: -2px; }
    .about-hero-actions { align-items: stretch; flex-direction: column; }
    .about-hero-actions .button, .about-hero-actions .text-link { width: 100%; justify-content: center; }
    .about-week-card { padding: 25px 20px; border-radius: 20px; }
    .about-week-topline { align-items: flex-start; flex-direction: column; gap: 18px; }
    .about-week-days { gap: 4px; }
    .about-week-purpose { width: 100%; padding-right: 52px; }
    .about-week-purpose > div { grid-template-columns: 27px minmax(0, 1fr); padding-inline: 12px; }
    .about-week-tree { right: 5px; bottom: 28px; transform: scale(.72); transform-origin: right bottom; }
    .about-story-copy > p { font-size: 17px; }
    .about-story-copy blockquote { margin: 30px 0; padding: 28px 22px; }
    .about-purpose-grid { grid-template-columns: 1fr; }
    .about-purpose-card, .about-purpose-card:last-child { grid-column: auto; width: 100%; min-height: 0; }
    .about-purpose-icon { margin-bottom: 34px; }
    .about-welcome-copy .button { width: 100%; }
    .about-values article { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; }
}

@media (forced-colors: active) {
    .about-week-card, .about-week-purpose > div, .about-purpose-card, .about-story-copy blockquote { border: 2px solid ButtonText; }
}

/* Frequently asked questions */
.faq-highlights-intro { max-width: 48ch !important; margin: 0 0 24px !important; font-size: 17px !important; }
.faq-all-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; color: var(--plum); font-size: 14px; font-weight: 900; text-underline-offset: 5px; }
.faq-all-link span { transition: transform .2s ease; }
.faq-all-link:hover span { transform: translateX(4px); }

.faq-page-hero { position: relative; overflow: hidden; padding: clamp(36px, 5vw, 68px) 0 clamp(78px, 9vw, 126px); background: linear-gradient(145deg, #f4f3ed 0%, #edf3ed 54%, #f5e9dc 100%); }
.faq-page-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.faq-page-glow-one { width: 520px; height: 520px; top: -360px; right: -80px; background: rgba(212, 103, 65, .12); }
.faq-page-glow-two { width: 440px; height: 440px; bottom: -330px; left: -170px; background: rgba(40, 91, 73, .13); }
.faq-page-hero-shell { position: relative; z-index: 1; }
.faq-page-hero .breadcrumbs { margin-bottom: clamp(36px, 5vw, 62px); }
.faq-page-hero-grid { display: grid; grid-template-columns: minmax(420px, 1fr) minmax(430px, .82fr); gap: clamp(48px, 7vw, 120px); align-items: center; }
.faq-page-hero-copy { max-width: 780px; }
.faq-page-hero-copy .eyebrow { margin-bottom: 20px; }
.faq-page-hero-copy h1 { max-width: 760px; margin-bottom: 26px; font-size: clamp(48px, 5vw, 70px); }
.faq-page-hero-copy > p { max-width: 690px; margin: 0 0 34px; color: #46584f; font-size: clamp(18px, 1.8vw, 21px); line-height: 1.75; }

.faq-topic-card { position: relative; overflow: hidden; width: min(100%, 620px); justify-self: end; padding: clamp(28px, 4vw, 44px); background: rgba(255, 255, 255, .96); border: 1px solid rgba(40, 91, 73, .17); border-radius: 28px; box-shadow: 0 30px 78px rgba(23, 68, 53, .17); }
.faq-topic-card::after { content: "?"; position: absolute; right: -16px; bottom: -72px; color: rgba(40, 91, 73, .055); font-family: Georgia, "Times New Roman", serif; font-size: 280px; font-weight: 900; line-height: 1; }
.faq-topic-card-heading { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.faq-topic-card-heading span { color: var(--plum); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.faq-topic-card-heading strong { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 22px; }
.faq-topic-card ol { position: relative; z-index: 1; display: grid; gap: 0; margin: 12px 0 0; padding: 0; list-style: none; }
.faq-topic-card li { min-height: 76px; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 14px; align-items: center; border-bottom: 1px solid var(--line); }
.faq-topic-card li:last-child { border-bottom: 0; }
.faq-topic-card li > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--plum-deep); background: var(--plum-soft); border-radius: 50%; font-family: Georgia, serif; font-size: 12px; font-weight: 900; }
.faq-topic-card li:nth-child(2) > span, .faq-topic-card li:nth-child(4) > span { color: var(--coral-text); background: var(--coral-soft); }
.faq-topic-card li div { display: grid; gap: 2px; }
.faq-topic-card li strong { color: var(--ink); font-size: 15px; }
.faq-topic-card li small { color: var(--muted); font-size: 13px; }

.faq-page-jump { position: sticky; top: 78px; z-index: 20; background: rgba(255, 255, 255, .95); border-bottom: 1px solid var(--line); box-shadow: 0 10px 30px rgba(23, 68, 53, .06); backdrop-filter: blur(14px); }
.faq-page-jump .shell { display: flex; justify-content: center; gap: clamp(8px, 2.5vw, 34px); overflow-x: auto; scrollbar-width: thin; }
.faq-page-jump a { min-height: 62px; flex: 0 0 auto; display: inline-flex; align-items: center; padding: 10px 6px; color: #42544b; font-size: 13px; font-weight: 900; text-decoration: none; }
.faq-page-jump a:hover { color: var(--coral-text); }

.faq-page-body { background: var(--white); }
.faq-page-sections { display: grid; gap: clamp(74px, 9vw, 132px); }
.faq-category { scroll-margin-top: 160px; display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(48px, 7vw, 118px); align-items: start; }
.faq-category + .faq-category { padding-top: clamp(74px, 9vw, 132px); border-top: 1px solid var(--line); }
.faq-category-intro { position: sticky; top: 170px; max-width: 520px; }
.faq-category-number { display: block; margin-bottom: 24px; color: rgba(40, 91, 73, .24); font-family: Georgia, "Times New Roman", serif; font-size: clamp(54px, 6vw, 82px); font-weight: 900; line-height: .8; }
.faq-category-intro .eyebrow { margin-bottom: 17px; }
.faq-category-intro h2 { margin-bottom: 18px; font-size: clamp(36px, 4vw, 52px); }
.faq-category-intro > p { max-width: 43ch; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.faq-category-warm .faq-category-number { color: rgba(212, 103, 65, .27); }
.faq-category-leaf .faq-category-number { color: rgba(91, 119, 70, .29); }
.faq-category-cool .faq-category-number { color: rgba(54, 102, 108, .25); }

.faq-page-list { display: grid; gap: 14px; }
.faq-page-list details { overflow: hidden; background: #fbfcfa; border: 1px solid var(--line); border-radius: 18px; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.faq-page-list details[open] { background: var(--white); border-color: rgba(40, 91, 73, .3); box-shadow: 0 16px 38px rgba(23, 68, 53, .09); }
.faq-page-list summary { min-height: 78px; display: grid; grid-template-columns: minmax(0, 1fr) 34px; gap: 20px; align-items: center; padding: 20px 22px 20px 26px; color: var(--ink); cursor: pointer; font-family: Georgia, "Times New Roman", serif; font-size: clamp(19px, 1.8vw, 23px); font-weight: 800; line-height: 1.35; list-style: none; }
.faq-page-list summary::-webkit-details-marker { display: none; }
.faq-page-list summary > span { width: 32px; height: 32px; display: grid; place-items: center; color: var(--plum); background: var(--plum-soft); border-radius: 50%; font-family: "Segoe UI", sans-serif; font-size: 21px; font-weight: 500; transition: transform .2s ease, color .2s ease, background .2s ease; }
.faq-page-list summary > span, .pricing-faq-list summary > span { position: relative; font-size: 0; line-height: 1; }
.faq-page-list summary > span::before, .faq-page-list summary > span::after,
.pricing-faq-list summary > span::before, .pricing-faq-list summary > span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: currentColor; border-radius: 999px; transform: translate(-50%, -50%); }
.faq-page-list summary > span::after, .pricing-faq-list summary > span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-page-list details[open] summary > span { color: var(--white); background: var(--plum); transform: rotate(45deg); }
.faq-page-list p { max-width: 74ch; margin: -2px 64px 28px 26px; color: #4e5f56; font-size: 16px; line-height: 1.78; }
.faq-page-list p a { color: var(--plum); font-weight: 800; text-underline-offset: 4px; }

.faq-page-final { padding-top: 20px; background: var(--white); }
.faq-page-final-card { position: relative; padding: clamp(52px, 7vw, 80px); overflow: hidden; color: var(--white); background: linear-gradient(135deg, var(--plum-deep), var(--plum) 62%, #326c57); border-radius: 32px; box-shadow: 0 24px 60px rgba(23, 68, 53, .2); text-align: center; }
.faq-page-final-card::before, .faq-page-final-card::after { content: ""; position: absolute; border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; pointer-events: none; }
.faq-page-final-card::before { width: 360px; height: 360px; left: -210px; top: -230px; box-shadow: 0 0 0 54px rgba(255, 255, 255, .025); }
.faq-page-final-card::after { width: 310px; height: 310px; right: -170px; bottom: -220px; box-shadow: 0 0 0 58px rgba(255, 255, 255, .02); }
.faq-page-final-card > * { position: relative; z-index: 1; }
.faq-page-final-card .eyebrow { margin-bottom: 18px; }
.faq-page-final-card h2 { max-width: 820px; margin: 0 auto 18px; color: var(--white); }
.faq-page-final-card > div > p { max-width: 650px; margin: 0 auto 30px; color: #dce9e2; font-size: 18px; }
.faq-page-final-note { max-width: 640px; margin: 20px auto 0; color: #dce9e2; font-size: 13px; }

@media (max-width: 1040px) {
    .faq-page-hero-grid { grid-template-columns: 1fr; }
    .faq-topic-card { width: min(100%, 760px); justify-self: center; }
}

@media (max-width: 820px) {
    .faq-category { grid-template-columns: 1fr; gap: 36px; }
    .faq-category-intro { position: static; max-width: 680px; }
}

@media (max-width: 680px) {
    .faq-page-hero { padding-top: 28px; }
    .faq-page-hero .breadcrumbs { margin-bottom: 28px; }
    .faq-page-hero-copy h1 { font-size: clamp(42px, 12.5vw, 58px); letter-spacing: -2px; }
    .faq-page-hero-copy .button { width: 100%; }
    .faq-topic-card { padding: 25px 20px; border-radius: 20px; }
    .faq-topic-card-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
    .faq-topic-card li { grid-template-columns: 38px minmax(0, 1fr); }
    .faq-page-jump .shell { justify-content: flex-start; padding-inline: 18px; }
    .faq-page-jump a { min-height: 56px; }
    .faq-category { scroll-margin-top: 146px; }
    .faq-category-number { margin-bottom: 18px; }
    .faq-page-list summary { min-height: 72px; grid-template-columns: minmax(0, 1fr) 32px; gap: 14px; padding: 18px 16px 18px 18px; }
    .faq-page-list p { margin: -2px 18px 24px; }
    .faq-page-final-card { border-radius: 24px; }
    .faq-page-final-card .button { width: 100%; }
}

@media (forced-colors: active) {
    .faq-topic-card, .faq-page-list details, .faq-page-final-card { border: 2px solid ButtonText; }
}

.footer-privacy-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    appearance: none;
    border: 0;
    padding: 8px 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.footer-privacy-button:hover { color: var(--coral-text); }

.cookie-banner {
    position: fixed;
    z-index: 1200;
    right: clamp(14px, 3vw, 36px);
    bottom: clamp(14px, 3vw, 36px);
    left: clamp(14px, 3vw, 36px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid rgba(40, 91, 73, .24);
    border-radius: 24px;
    background: #fffdf8;
    box-shadow: 0 22px 65px rgba(20, 47, 39, .22);
    color: #173c32;
}

.cookie-banner[hidden],
.cookie-backdrop[hidden],
.cookie-dialog[hidden],
.cookie-gpc-notice[hidden] {
    display: none !important;
}

.cookie-banner h2,
.cookie-dialog h2 {
    margin: 0 0 8px;
}

.cookie-banner p {
    max-width: 760px;
    margin: 0 0 7px;
    line-height: 1.55;
}

.cookie-banner a,
.cookie-text-button {
    color: #1f5b49;
    font-weight: 800;
    text-decoration: underline;
}

.cookie-banner-actions,
.cookie-dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.cookie-banner-actions {
    justify-content: flex-end;
    max-width: 390px;
}

.cookie-text-button {
    min-height: 44px;
    border: 0;
    padding: 8px 10px;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.cookie-backdrop {
    position: fixed;
    z-index: 1240;
    inset: 0;
    background: rgba(12, 34, 28, .56);
    backdrop-filter: blur(3px);
}

.cookie-dialog {
    position: fixed;
    z-index: 1250;
    top: 50%;
    left: 50%;
    width: min(680px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    overflow: auto;
    transform: translate(-50%, -50%);
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(40, 91, 73, .22);
    border-radius: 24px;
    background: #fffdf8;
    box-shadow: 0 28px 80px rgba(12, 34, 28, .34);
    color: #173c32;
}

.cookie-dialog-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.cookie-dialog-close {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(40, 91, 73, .22);
    border-radius: 50%;
    background: #fff;
    color: #173c32;
    font: inherit;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.cookie-choice-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.cookie-choice {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(40, 91, 73, .18);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
}

.cookie-choice-fixed {
    background: #f0f6f2;
    cursor: default;
}

.cookie-choice span,
.cookie-choice small {
    display: block;
}

.cookie-choice strong {
    font-size: 17px;
}

.cookie-choice small {
    margin-top: 4px;
    color: #51665f;
    line-height: 1.45;
}

.cookie-choice input {
    width: 24px;
    height: 24px;
    accent-color: #285b49;
}

.cookie-gpc-notice {
    margin: 0 0 20px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #edf6f1;
    font-weight: 700;
}

.cookie-dialog-actions {
    justify-content: flex-end;
}

.cookie-dialog-open {
    overflow: hidden;
}

.legal-cookie-table {
    width: 100%;
    margin: 18px 0 28px;
    border-collapse: collapse;
    font-size: 15px;
}

.legal-cookie-table th,
.legal-cookie-table td {
    padding: 12px;
    border: 1px solid rgba(40, 91, 73, .2);
    text-align: left;
    vertical-align: top;
}

.legal-cookie-table th {
    background: #edf6f1;
}

@media (max-width: 760px) {
    .cookie-banner {
        grid-template-columns: 1fr;
        gap: 16px;
        border-radius: 18px;
    }

    .cookie-banner-actions,
    .cookie-dialog-actions {
        justify-content: stretch;
    }

    .cookie-banner-actions .button,
    .cookie-dialog-actions .button,
    .cookie-banner-actions .cookie-text-button {
        flex: 1 1 100%;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .legal-cookie-table,
    .legal-cookie-table tbody,
    .legal-cookie-table tr,
    .legal-cookie-table th,
    .legal-cookie-table td {
        display: block;
    }

    .legal-cookie-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .legal-cookie-table tr {
        margin-bottom: 14px;
        border: 1px solid rgba(40, 91, 73, .2);
        border-radius: 14px;
        overflow: hidden;
    }

    .legal-cookie-table th,
    .legal-cookie-table td {
        border: 0;
        border-bottom: 1px solid rgba(40, 91, 73, .14);
    }
}

/* The exact logo orange is reserved for large type and graphical accents. */
h1 em, h2 em, .reassurance-list span, .hero-preview-note span, .family-heart, .faq-list summary span, .about-week-topline b { color: var(--coral); }
