@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
    --forest: #164d2b;
    --forest-dark: #0c321d;
    --leaf: #257636;
    --sage: #dbe8d9;
    --sage-soft: #eef4ef;
    --clay: #c98058;
    --clay-dark: #9b5f40;
    --cream: #f7f4ed;
    --paper: #fffdf8;
    --ink: #102119;
    --muted: #53635a;
    --line: #cddbd0;
    --white: #fff;
    --shadow: 0 16px 40px rgba(12, 50, 29, .12);
    --shadow-small: 0 8px 22px rgba(12, 50, 29, .1);
    --radius: 16px;
    --radius-lg: 28px;
    --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}
body[data-menu-open] { overflow: hidden; }
::selection { color: var(--white); background: var(--clay-dark); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--leaf); border: 3px solid var(--cream); border-radius: 20px; }

img { display: block; max-width: 100%; }
a { color: var(--forest); text-decoration-thickness: .1em; text-underline-offset: .2em; }
a:hover { color: var(--clay-dark); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 4px; }

h1, h2, h3, h4 {
    margin: 0 0 .55em;
    font-family: 'Manrope', Arial, sans-serif;
    line-height: 1.08;
    letter-spacing: -.035em;
    text-wrap: balance;
}
h1 { font-size: clamp(2.65rem, 6.2vw, 5.35rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.65rem); }
p { margin: 0 0 1.2rem; }
ul, ol { padding-left: 1.25rem; }
li + li { margin-top: .45rem; }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.section-tight { padding: clamp(3.5rem, 6vw, 5rem) 0; }
.section-sage { background: var(--sage-soft); }
.section-forest { color: var(--white); background: var(--forest-dark); }
.section-cream { background: var(--cream); }
.section-heading { max-width: 770px; margin-bottom: 2.6rem; }
.section-heading p { max-width: 66ch; color: var(--muted); font-size: 1.1rem; }
.section-forest .section-heading p { color: #dbe8d9; }
.prose { max-width: 74ch; }
.lede { max-width: 64ch; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.muted { color: var(--muted); }
.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; z-index: 999; top: 12px; left: 12px; padding: .7rem 1rem; transform: translateY(-150%); color: var(--white); background: var(--forest-dark); border-radius: 10px; }
.skip-link:focus { transform: none; }

.utility-bar { color: #e9f3e8; background: var(--forest-dark); font-size: .85rem; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.utility-bar a { color: var(--white); }
.site-header { position: sticky; z-index: 80; top: 0; background: rgba(255, 253, 248, .96); border-bottom: 1px solid rgba(22, 77, 43, .08); transition: box-shadow .25s ease; }
.site-header[data-scrolled] { box-shadow: 0 8px 30px rgba(12, 50, 29, .09); }
.header-inner { min-height: 84px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { width: 258px; height: 58px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(.8rem, 1.7vw, 1.5rem); }
.primary-nav a { position: relative; color: var(--ink); font-size: .92rem; font-weight: 700; text-decoration: none; }
.primary-nav a::after { position: absolute; right: 0; bottom: -.55rem; left: 0; height: 2px; content: ''; background: var(--clay); transform: scaleX(0); transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a[aria-current='page']::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; background: var(--sage-soft); border-radius: 12px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--forest); border-radius: 2px; }

.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: .6rem; padding: .78rem 1.25rem; color: var(--white); background: var(--forest); border: 0; border-radius: 999px; font-weight: 800; line-height: 1.2; text-align: center; text-decoration: none; box-shadow: 0 8px 22px rgba(22, 77, 43, .18); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { color: var(--white); background: var(--forest-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(22, 77, 43, .24); }
.button-call img { filter: brightness(0) invert(1); }
.button-secondary { color: var(--forest); background: var(--sage); box-shadow: none; }
.button-secondary:hover { color: var(--forest-dark); background: #c9ddc8; }
.button-light { color: var(--forest-dark); background: var(--white); }
.button-light:hover { color: var(--forest-dark); background: var(--cream); }
.text-link { display: inline-flex; align-items: center; gap: .35rem; font-weight: 800; }
.text-link::after { content: '→'; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--cream), #edf5ec 72%); }
.hero::before { position: absolute; inset: auto -12% -58% 35%; height: 80%; content: ''; background: radial-gradient(circle, rgba(201, 128, 88, .18), transparent 66%); }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(2.8rem, 6vw, 6rem); padding-block: clamp(4.6rem, 8vw, 7rem); }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 820px; font-size: clamp(2.85rem, 5.9vw, 5rem); }
.hero h1 span { color: var(--leaf); }
.hero .lede { margin: 1.4rem 0 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: .75rem 1.4rem; margin-top: 1.5rem; color: var(--muted); font-size: .9rem; }
.hero-note span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-note span::before { width: 8px; height: 8px; content: ''; background: var(--clay); border-radius: 50%; }
.hero-media { position: relative; align-self: stretch; min-height: 540px; }
.hero-photo { position: absolute; inset: 0 0 2rem 0; width: 100%; height: calc(100% - 2rem); object-fit: cover; object-position: center; border-radius: 28px 28px 96px 28px; box-shadow: var(--shadow); }
.hero-ticket { position: absolute; z-index: 2; right: -12px; bottom: 0; width: min(310px, 84%); padding: 1.1rem 1.2rem; color: var(--forest-dark); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(-2deg); }
.hero-ticket strong { display: block; font-family: 'Manrope', sans-serif; font-size: 1.12rem; }
.hero-ticket span { color: var(--muted); font-size: .9rem; }

.proof-strip { position: relative; z-index: 3; margin-top: -34px; }
.proof-inner { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.proof-item { min-height: 104px; display: flex; flex-direction: column; justify-content: center; padding: 1.25rem 1.5rem; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { font-family: 'Manrope', sans-serif; font-size: 1.05rem; }
.proof-item span { color: var(--muted); font-size: .9rem; }
.proof-review { color: var(--white); background: var(--forest); }
.proof-review span { color: #dcebdd; }

.service-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.25rem; }
.service-lead { min-height: 520px; position: relative; overflow: hidden; color: var(--white); background: var(--forest); border-radius: var(--radius-lg); }
.service-lead img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .52; }
.service-lead::after { position: absolute; inset: 0; content: ''; background: linear-gradient(180deg, transparent 20%, rgba(7, 40, 22, .92)); }
.service-lead-copy { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; left: 2rem; }
.service-stack { display: grid; gap: 1.25rem; }
.service-card { position: relative; min-height: 157px; display: grid; grid-template-columns: 1fr 150px; align-items: center; gap: 1rem; overflow: hidden; padding: 1.4rem; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-small); text-decoration: none; }
.service-card img { width: 150px; height: 125px; object-fit: cover; border-radius: 12px; }
.service-card .service-icon { width: 42px; height: 42px; margin-bottom: .75rem; object-fit: contain; border-radius: 0; filter: invert(26%) sepia(14%) saturate(2738%) hue-rotate(91deg) brightness(92%); }
.service-card h3 { margin-bottom: .25rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.service-card:hover { color: var(--ink); transform: translateY(-2px); }
.service-wide { grid-column: 1 / -1; min-height: 230px; grid-template-columns: 1fr 330px; }
.service-wide img { width: 330px; height: 190px; }

.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; counter-reset: step; }
.step { position: relative; padding: 2.2rem 2rem 2.1rem; counter-increment: step; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step:first-child { border-left: 1px solid var(--line); border-radius: var(--radius) 0 0 var(--radius); }
.step:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius) var(--radius) 0; }
.step + .step { border-left: 1px dashed #9db4a2; }
.step::before { display: block; margin-bottom: 1rem; color: var(--clay-dark); content: '0' counter(step); font-family: 'Manrope', sans-serif; font-size: 1.05rem; font-weight: 800; }

.estimate-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.estimate-image { position: relative; }
.estimate-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.estimate-image::after { position: absolute; right: -18px; bottom: 22px; width: 42%; aspect-ratio: 1; content: ''; border: 12px solid var(--clay); border-radius: 50%; mix-blend-mode: multiply; }
.check-list { list-style: none; padding: 0; margin: 1.8rem 0; }
.check-list li { position: relative; padding: .9rem 0 .9rem 2.2rem; border-bottom: 1px solid var(--line); }
.check-list li::before { position: absolute; top: 1.05rem; left: .25rem; width: 18px; height: 18px; content: '✓'; color: var(--white); background: var(--leaf); border-radius: 50%; font-size: .72rem; font-weight: 800; line-height: 18px; text-align: center; }

.quote-band { overflow: hidden; }
.quote-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 1.25rem; }
.quote-card { padding: clamp(2rem, 5vw, 4rem); background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-small); }
.quote-card blockquote { margin: 0 0 1.4rem; font-family: 'Manrope', sans-serif; font-size: clamp(1.35rem, 2.8vw, 2.25rem); font-weight: 700; line-height: 1.35; letter-spacing: -.025em; }
.quote-card cite { color: var(--muted); font-style: normal; font-weight: 700; }
.quote-side { display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; color: var(--white); background: var(--clay-dark); border-radius: var(--radius-lg); }
.quote-side strong { font-family: 'Manrope', sans-serif; font-size: 3rem; line-height: 1; }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.guide-card { overflow: hidden; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.guide-card:nth-child(2) { transform: translateY(1.5rem); }
.guide-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.guide-card-content { padding: 1.45rem; }
.guide-card h3 { margin-bottom: .55rem; }
.guide-card p { color: var(--muted); }
.guide-meta { display: flex; gap: .6rem; margin-bottom: .8rem; color: var(--clay-dark); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.faq-list { display: grid; gap: .75rem; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.faq-list summary { position: relative; padding: 1.25rem 3.5rem 1.25rem 1.35rem; cursor: pointer; font-family: 'Manrope', sans-serif; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 1rem; right: 1.15rem; width: 30px; height: 30px; content: '+'; color: var(--forest); background: var(--sage); border-radius: 50%; font-size: 1.25rem; line-height: 28px; text-align: center; }
.faq-list details[open] summary::after { content: '–'; }
.faq-answer { max-width: 76ch; padding: 0 1.35rem 1.25rem; color: var(--muted); }

.page-hero { position: relative; overflow: hidden; padding: clamp(4.5rem, 9vw, 7.5rem) 0; background: linear-gradient(135deg, var(--cream), var(--sage-soft)); }
.page-hero::after { position: absolute; top: 20%; right: -7vw; width: 32vw; height: 32vw; content: ''; border: 28px solid rgba(201, 128, 88, .14); border-radius: 50%; }
.page-hero .shell { position: relative; z-index: 2; }
.page-hero h1 { max-width: 920px; }
.page-hero .lede { margin-bottom: 0; }
.page-hero-split .shell { display: grid; grid-template-columns: 1fr .7fr; align-items: center; gap: 3rem; }
.page-hero-image { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; border-radius: 30px 18px 30px 18px; box-shadow: var(--shadow); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.sidebar { position: sticky; top: 118px; padding: 1.4rem; background: var(--sage-soft); border-radius: var(--radius); }
.sidebar h2 { font-size: 1.25rem; }
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar a { font-weight: 700; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.contact-card { min-height: 230px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 1.6rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.contact-card img { width: 44px; height: 44px; object-fit: contain; filter: invert(26%) sepia(14%) saturate(2738%) hue-rotate(91deg) brightness(92%); }
.contact-card a { font-size: 1.15rem; font-weight: 800; overflow-wrap: anywhere; }
.hours-table { width: 100%; max-width: 620px; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); text-align: left; }
.hours-table th { color: var(--forest); }

.blog-index-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.blog-feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr .9fr; }
.blog-feature img { aspect-ratio: auto; height: 100%; min-height: 390px; }
.article-hero { padding: clamp(3.5rem, 7vw, 6rem) 0 2.5rem; background: var(--cream); }
.article-head { max-width: 900px; }
.article-head h1 { font-size: clamp(2.55rem, 5.5vw, 4.7rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: .7rem 1.4rem; margin: 1.4rem 0; color: var(--muted); font-size: .92rem; }
.article-figure { margin: 0; }
.article-figure img { width: 100%; max-height: 670px; object-fit: cover; border-radius: var(--radius-lg); }
.article-figure figcaption { margin-top: .65rem; color: var(--muted); font-size: .86rem; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 280px; align-items: start; justify-content: space-between; gap: 4rem; }
.article-body { max-width: 76ch; font-size: 1.04rem; }
.article-body h2 { margin-top: 2.6rem; font-size: clamp(1.7rem, 3vw, 2.45rem); }
.article-body h3 { margin-top: 2rem; }
.article-body a { font-weight: 700; }
.toc { position: sticky; top: 118px; padding: 1.3rem; background: var(--sage-soft); border-radius: var(--radius); }
.toc h2 { font-size: 1.1rem; letter-spacing: -.02em; }
.toc ol { margin: 0; padding-left: 1.1rem; font-size: .9rem; }
.callout { margin: 2rem 0; padding: 1.4rem; background: var(--sage-soft); border-radius: var(--radius); }
.callout h2, .callout h3 { margin-top: 0; }
.decision-table { width: 100%; margin: 1.5rem 0 2rem; border-collapse: collapse; font-size: .94rem; }
.decision-table th { color: var(--white); background: var(--forest); }
.decision-table th, .decision-table td { padding: .85rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.decision-table tr:nth-child(even) td { background: var(--sage-soft); }
.source-list { margin-top: 2.5rem; padding: 1.3rem; color: var(--muted); background: var(--cream); border-radius: var(--radius); font-size: .9rem; }
.source-list h2 { margin-top: 0; font-size: 1.2rem; }
.article-next { margin-top: 3rem; padding: 2rem; color: var(--white); background: var(--forest); border-radius: var(--radius); }
.article-next a { color: var(--white); }

.legal-copy { max-width: 78ch; }
.legal-copy h2 { margin-top: 2.6rem; font-size: 1.8rem; }
.not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; background: var(--cream); }
.not-found .shell { max-width: 760px; }
.not-found-code { display: block; color: var(--clay-dark); font-family: 'Manrope', sans-serif; font-size: clamp(5rem, 18vw, 11rem); font-weight: 800; line-height: .85; }

.closing-cta { color: var(--white); background: var(--forest); }
.closing-grid { min-height: 360px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 3rem; padding-block: 4rem; }
.closing-grid h2 { max-width: 720px; }
.closing-grid p { max-width: 65ch; color: #dcebdd; }
.closing-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.light-link { color: var(--white); }
.site-footer { color: #dcebdd; background: var(--forest-dark); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr 1fr .8fr; gap: 2.5rem; padding-block: 4.2rem 3rem; }
.site-footer h2 { color: var(--white); font-size: 1rem; letter-spacing: .02em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: .5rem; }
.site-footer a { color: #e6f1e6; }
.footer-brand p { max-width: 42ch; }
.brand-footer { margin-bottom: 1.2rem; }
.footer-phone { font-family: 'Manrope', sans-serif; font-size: 1.3rem; font-weight: 800; }
.hours-list { margin: 0 0 1rem; }
.hours-list div { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; }
.hours-list dd { margin: 0; color: var(--white); }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .13); font-size: .88rem; }
.footer-bottom nav { display: flex; gap: 1.2rem; }
.mobile-call { display: none; }

@media (max-width: 1050px) {
    .header-inner { grid-template-columns: auto auto 1fr; gap: 1rem; }
    .menu-toggle { display: block; order: 3; justify-self: end; }
    .header-call { justify-self: end; }
    .primary-nav { position: fixed; z-index: 90; top: 122px; right: 0; bottom: 0; left: 0; display: none; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 1.5rem 20px 6rem; background: var(--paper); }
    .primary-nav[data-open] { display: flex; }
    .primary-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.15rem; }
    .primary-nav a::after { display: none; }
    .hero-grid { min-height: 640px; }
    .proof-inner { grid-template-columns: repeat(2, 1fr); }
    .proof-item:nth-child(2) { border-right: 0; }
    .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .service-grid { grid-template-columns: 1fr; }
    .service-lead { min-height: 480px; }
    .guide-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-card:nth-child(2) { transform: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
    :root { --shell: min(100% - 28px, 680px); }
    .utility-inner { justify-content: center; }
    .utility-hours, .utility-inner > span:first-child { display: none; }
    .header-inner { min-height: 74px; grid-template-columns: 1fr auto; }
    .brand img { width: 220px; height: auto; }
    .header-call { display: none; }
    .primary-nav { top: 112px; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 2.5rem; padding-block: 3.8rem 5.2rem; }
    .hero h1 { font-size: clamp(2.65rem, 12vw, 4.4rem); }
    .hero-media { min-height: 510px; }
    .proof-strip { margin-top: -26px; }
    .steps { grid-template-columns: 1fr; }
    .step, .step:first-child, .step:last-child { border: 1px solid var(--line); border-radius: 0; }
    .step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
    .step:last-child { border-radius: 0 0 var(--radius) var(--radius); }
    .estimate-grid, .quote-grid, .closing-grid, .page-hero-split .shell, .content-grid, .article-layout { grid-template-columns: 1fr; }
    .estimate-image { max-width: 520px; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-card { min-height: 190px; }
    .sidebar, .toc { position: static; }
    .blog-index-grid { grid-template-columns: 1fr; }
    .blog-feature { grid-column: auto; grid-template-columns: 1fr; }
    .blog-feature img { min-height: 0; }
    .closing-grid { min-height: auto; padding-block: 3.8rem; }
    .mobile-call { position: fixed; z-index: 79; right: 14px; bottom: 14px; min-height: 52px; display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.1rem; color: var(--white); background: var(--forest); border-radius: 999px; font-weight: 800; text-decoration: none; box-shadow: 0 12px 30px rgba(12, 50, 29, .32); }
    .mobile-call img { filter: brightness(0) invert(1); }
}

@media (max-width: 560px) {
    .section { padding: 4rem 0; }
    .hero-photo { border-radius: 20px 20px 56px 20px; }
    .hero-media { min-height: 430px; }
    .hero-ticket { right: -4px; }
    .proof-inner { grid-template-columns: 1fr; }
    .proof-item { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
    .proof-item:last-child { border-bottom: 0; }
    .service-card, .service-wide { min-height: auto; grid-template-columns: 1fr; }
    .service-card img, .service-wide img { width: 100%; height: 190px; }
    .service-card .service-icon { width: 42px; height: 42px; }
    .guide-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1.4rem 5.4rem; }
    .decision-table { display: block; overflow-x: auto; }
}

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