@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --ink: #22231f;
  --muted: #696b64;
  --paper: #f7f6f2;
  --white: #fff;
  --soft: #eeece5;
  --line: #d9d8d0;
  --red: #a63e34;
  --red-dark: #792e28;
  --green: #6f5a4d;
  --gold: #a77b55;
  --dark: #6a5143;
  --hero-paper: #e7d9cb;
  --hero-ink: #3d3029;
  --cta-coffee: #a98268;
  --shadow: 0 16px 42px rgba(30, 32, 28, .08);
  --serif: 'Noto Serif SC', 'Songti SC', serif;
  --sans: 'Plus Jakarta Sans', 'Microsoft YaHei', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 15px/1.8 var(--sans); letter-spacing: 0; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
p { color: var(--muted); }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 48px)); }
.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: 200; left: 16px; top: -60px; padding: 10px 14px; background: var(--white); color: var(--ink); border: 2px solid var(--red); }
.skip-link:focus { top: 12px; }

.site-header { height: 80px; position: sticky; top: 0; z-index: 100; background: rgba(247, 246, 242, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; font: 700 20px/1.2 var(--serif); }
.brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 4px; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font: 500 10px/1.2 var(--sans); }
.site-nav { display: flex; align-items: stretch; height: 100%; margin-left: auto; }
.site-nav a { display: grid; place-items: center; min-width: 70px; padding-inline: 9px; border-bottom: 2px solid transparent; color: #555850; font-size: 13px; }
.site-nav a:hover, .site-nav a.is-current { color: var(--red); border-bottom-color: var(--red); }
.phone-chip { display: flex; align-items: center; gap: 8px; padding-left: 20px; border-left: 1px solid var(--line); color: var(--red); white-space: nowrap; }
.phone-chip span { padding: 2px 5px; color: var(--white); background: var(--red); border-radius: 2px; font-size: 10px; }
.phone-chip b { font-size: 13px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; padding: 11px; }
.nav-toggle span { display: block; height: 2px; margin: 4px 0; background: var(--ink); }

.breadcrumbs { min-height: 48px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; }
.breadcrumbs a:hover { color: var(--red); }
.page-hero { position: relative; min-height: 510px; display: flex; align-items: flex-end; overflow: hidden; background-color: var(--hero-paper); background-image: var(--hero-image); background-size: cover; background-position: center; color: var(--hero-ink); }
.page-hero:not(.has-image)::before { content: ''; position: absolute; inset: 0; opacity: .5; background: linear-gradient(90deg, rgba(255,255,255,.22), transparent 60%), linear-gradient(135deg, transparent 0 49.7%, rgba(255,255,255,.3) 49.8% 50%, transparent 50.1%), linear-gradient(transparent 0 74.7%, rgba(126,91,67,.12) 74.8% 75%, transparent 75.1%); background-size: auto, 180px 180px, 180px 180px; }
.page-hero.has-image .hero-shade { background: linear-gradient(90deg, rgba(48, 35, 27, .68), rgba(48, 35, 27, .34) 58%, rgba(48, 35, 27, .12)); }
.hero-content { position: relative; z-index: 1; padding-top: 86px; padding-bottom: 76px; }
.page-hero:not(.has-image) .hero-lead { color: #5d4b40; }
.page-hero:not(.has-image) .hero-note { color: #6b5749; }
.kicker { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.page-hero h1 { max-width: 870px; margin: 17px 0 18px; font: 600 60px/1.2 var(--serif); letter-spacing: 0; }
.home-hero h1 { font-size: 68px; }
.hero-lead { max-width: 690px; margin: 0; color: #e2e1db; font-size: 19px; }
.hero-note { max-width: 680px; color: #c6c8c0; font-size: 14px; }
.hero-note p { color: inherit; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.page-hero:not(.has-image) .hero-actions .btn-quiet { border-color: rgba(75, 54, 42, .35); color: var(--hero-ink); }
.page-hero:not(.has-image) .hero-actions .btn-quiet:hover { border-color: var(--hero-ink); background: rgba(255,255,255,.28); }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 3px; font-size: 13px; font-weight: 700; transition: background .2s, color .2s, border-color .2s, transform .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-quiet { color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-quiet:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline { color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }
.text-link { display: inline-flex; gap: 8px; margin-top: 12px; color: var(--red); font-size: 13px; font-weight: 700; }

.section-band { padding: 82px 0; border-bottom: 1px solid var(--line); }
.band-soft { background: var(--soft); }
.band-dark { background: #8d6c57; color: var(--white); }
.band-dark p { color: #f1e8e0; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading h2, .section-cta h2 { margin: 10px 0 13px; font: 600 38px/1.32 var(--serif); letter-spacing: 0; }
.section-heading p { margin: 0; font-size: 17px; }
.section-action { margin-top: 28px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-item { min-height: 240px; padding: 30px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.38); }
.feature-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 26px; border: 1px solid var(--gold); color: var(--gold); font-family: var(--serif); font-size: 18px; }
.item-label { color: var(--red); font-size: 11px; font-weight: 700; }
.feature-item h3 { margin: 9px 0 12px; font: 600 21px/1.4 var(--serif); }
.feature-item p { margin: 0; font-size: 14px; }

.steps-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.steps-list li { min-height: 195px; padding: 25px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-number { color: var(--gold); font-size: 12px; font-weight: 700; }
.steps-list h3 { margin: 30px 0 9px; font: 600 19px/1.4 var(--serif); }
.steps-list p { margin: 0; font-size: 13px; }
.band-dark .steps-list { border-color: rgba(255,255,255,.35); }
.band-dark .steps-list li { border-color: rgba(255,255,255,.35); }

.package-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.package-card { min-width: 0; padding: 28px 23px; background: var(--white); border-top: 3px solid var(--red); box-shadow: var(--shadow); }
.package-top { display: flex; justify-content: space-between; gap: 12px; color: var(--gold); font-size: 11px; }
.package-top small { color: var(--muted); }
.package-card h3 { margin: 24px 0 10px; font: 600 20px/1.45 var(--serif); }
.package-price { color: var(--red); font-size: 18px; font-weight: 700; }
.package-card p { min-height: 51px; font-size: 13px; line-height: 1.65; }
.package-blessing { padding-top: 14px; border-top: 1px solid var(--line); color: var(--green); font: 600 14px var(--serif); }
.package-card details { margin-top: 17px; border-top: 1px solid var(--line); padding-top: 13px; }
.package-card summary { cursor: pointer; color: var(--red); font-size: 12px; font-weight: 700; }
.package-card details div { margin-top: 12px; color: var(--muted); font-size: 12px; }

.table-scroll { overflow-x: auto; border: 1px solid var(--line); background: var(--white); }
.comparison-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 13px; }
.comparison-table tr:last-child > * { border-bottom: 0; }
.comparison-table tr > *:last-child { border-right: 0; }
.comparison-table thead th { background: var(--dark); color: var(--white); font-size: 12px; }
.comparison-table tbody th { color: var(--ink); font-weight: 700; }
.table-note { margin-top: 15px; color: var(--muted); font-size: 12px; }
.table-note p { margin: 0; }

.image-text-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); align-items: center; gap: 70px; }
.section-image-text.is-reverse .image-text-media { order: 2; }
.image-text-media img, .media-placeholder { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-placeholder { display: grid; place-content: center; text-align: center; background: var(--dark); color: var(--white); }
.media-placeholder span { font: 600 34px var(--serif); }
.media-placeholder small { margin-top: 8px; color: #b5b9b1; }
.image-text-copy .section-heading { margin-bottom: 24px; }
.rich-content { color: var(--muted); font-size: 15px; }
.rich-content h2, .rich-content h3, .rich-content h4 { margin: 30px 0 12px; color: var(--ink); font-family: var(--serif); line-height: 1.4; }
.rich-content h2 { font-size: 30px; }
.rich-content h3 { font-size: 24px; }
.rich-content h4 { font-size: 19px; }
.rich-content p { margin: 10px 0; }
.rich-content li { margin: 6px 0; }
.rich-content blockquote { margin: 24px 0; padding: 16px 20px; border-left: 3px solid var(--gold); background: var(--soft); }
.section-image { width: 100%; max-height: 520px; margin: 25px 0 35px; object-fit: cover; }

.section-quote { padding: 74px 0; }
.quote-wrap { max-width: 920px; }
.quote-wrap > span { display: block; height: 36px; color: var(--gold); font: 700 62px/1 var(--serif); }
.quote-wrap blockquote { margin: 12px 0 20px; font: 500 29px/1.65 var(--serif); }
.quote-wrap blockquote p { color: var(--white); }
.quote-wrap cite { color: #aeb3ac; font-size: 12px; font-style: normal; }

.faq-tools { display: grid; grid-template-columns: minmax(240px, .7fr) 1.3fr; align-items: end; gap: 24px; margin-bottom: 25px; }
.faq-search span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11px; font-weight: 700; }
.faq-search input { width: 100%; min-height: 46px; padding: 0 14px; border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.faq-categories { display: flex; flex-wrap: wrap; gap: 7px; }
.faq-categories button { min-height: 38px; padding: 0 14px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; }
.faq-categories button:hover, .faq-categories button.is-active { border-color: var(--red); background: var(--red); color: var(--white); }
.faq-list { max-width: 940px; border-top: 1px solid var(--line); }
.faq-list details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font: 600 18px/1.5 var(--serif); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; flex: 0 0 28px; color: var(--red); font: 400 24px/1 var(--sans); text-align: center; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list summary small { display: block; margin-bottom: 5px; color: var(--red); font: 700 10px var(--sans); }
.faq-answer { max-width: 790px; padding: 14px 45px 0 0; color: var(--muted); }
.faq-answer p { margin: 0; }
.faq-empty { padding: 25px 0; }

.notice-box { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 27px 30px; border-left: 4px solid var(--red); background: #f0e4df; }
.notice-mark { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--red); color: var(--red); font-weight: 700; }
.notice-box h2 { margin: 0 0 7px; font: 600 24px/1.4 var(--serif); }
.notice-box .lead { margin: 0; color: var(--ink); }
.notice-box .rich-content p:last-child { margin-bottom: 0; }

.section-cta { position: relative; overflow: hidden; padding: 60px 0; background: var(--cta-coffee); background-image: var(--cta-image); background-size: cover; background-position: center; color: var(--white); }
.section-cta.has-image::before { content: ''; position: absolute; inset: 0; background: rgba(117, 79, 57, .68); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 38px; }
.section-cta h2 { margin-bottom: 5px; font-size: 34px; }
.section-cta p { margin: 0; color: #f1e5dc; }

.site-footer { padding: 58px 0 95px; background: #795d4c; color: #fffaf5; }
.footer-grid { display: grid; grid-template-columns: 1.8fr .8fr 1.2fr 1.1fr; gap: 48px; }
.footer-brand { font: 600 30px var(--serif); }
.footer-about p { max-width: 320px; }
.site-footer p { color: #eadfd6; font-size: 12px; }
.site-footer strong { display: block; margin-bottom: 13px; color: #fffaf5; }
.site-footer a:not(.footer-brand):not(.footer-phone) { display: block; margin: 5px 0; color: #f0e4da; font-size: 12px; }
.site-footer a:hover { color: #fff; }
.footer-phone { color: #ffe0aa; font-size: 20px; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 43px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.25); color: #ead8cc; font-size: 10px; }
.mobile-call { display: none; }
.empty-state { grid-column: 1 / -1; }

.article-page { padding: 75px 0 110px; max-width: 850px; }
.article-page h1 { margin: 16px 0; font: 600 46px/1.35 var(--serif); }
.article-meta { font-size: 12px; }
.article-cover { width: 100%; max-height: 480px; margin: 25px 0; object-fit: cover; }
.article-page .rich-content { margin-top: 35px; }

.news-hero { padding: 78px 0 72px; background: var(--hero-paper); border-bottom: 1px solid var(--line); }
.news-hero h1 { margin: 12px 0 10px; font: 600 52px/1.25 var(--serif); }
.news-hero p { max-width: 650px; margin: 0; color: var(--hero-ink); font-size: 17px; }
.news-toolbar { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; }
.toolbar-label { display: block; margin-bottom: 10px; color: var(--muted); font-size: 11px; font-weight: 700; }
.news-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.news-filter { display: inline-flex; align-items: center; min-height: 38px; padding: 0 15px; border: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.news-filter:hover, .news-filter.is-active { border-color: var(--red); background: var(--red); color: var(--white); }
.news-count { margin: 0; color: var(--muted); font-size: 12px; white-space: nowrap; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.news-card { min-width: 0; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.news-card-media { display: grid; place-items: center; aspect-ratio: 16 / 9; overflow: hidden; background: var(--soft); color: var(--gold); }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; }
.news-card:hover .news-card-media img { transform: scale(1.03); }
.news-card-media.is-placeholder span { font: 600 24px var(--serif); }
.news-card-body { padding: 23px 24px 25px; }
.news-card-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--red); font-size: 11px; }
.news-card-meta time { color: var(--muted); }
.news-card h2 { margin: 12px 0 9px; font: 600 21px/1.45 var(--serif); }
.news-card h2 a:hover { color: var(--red); }
.news-card p { display: -webkit-box; overflow: hidden; min-height: 50px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.news-card .text-link { margin-top: 17px; }
.news-empty { padding: 65px 20px; text-align: center; background: rgba(255,255,255,.45); border: 1px solid var(--line); }
.news-empty h2 { margin: 0 0 8px; font: 600 24px var(--serif); }
.news-empty p { margin: 0 0 20px; }
.news-pagination { display: flex; justify-content: center; align-items: center; gap: 7px; margin-top: 42px; }
.news-pagination a, .news-pagination span { display: grid; place-items: center; min-width: 36px; height: 36px; padding: 0 8px; border: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.news-pagination a:hover, .news-pagination a.is-current { border-color: var(--red); background: var(--red); color: var(--white); }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.article-back { margin-top: 45px; padding-top: 25px; border-top: 1px solid var(--line); }
.home-overview-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.home-overview-grid h2,.home-news-overview h2,.home-products-overview h2 { margin:10px 0 0; font:600 34px/1.3 var(--serif); }
.home-overview-grid p { color:var(--muted); line-height:1.9; }
.home-overview-lead { margin-top:0; color:var(--ink)!important; font-size:18px; }
.section-heading-inline { display:flex; justify-content:space-between; align-items:end; gap:25px; }
.home-overview-list { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); }
.home-overview-list article { padding:22px 20px 8px 0; border-right:1px solid var(--line); margin-right:20px; }
.home-overview-list article:last-child { border-right:0; }
.home-overview-list span,.home-product-grid span { color:var(--red); font-size:11px; }
.home-overview-list h3,.home-product-grid h3 { margin:10px 0 7px; font:600 19px/1.5 var(--serif); }
.home-overview-list time,.home-product-grid p { color:var(--muted); font-size:12px; }
.home-product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.home-product-grid article { display:grid; grid-template-columns:120px 1fr; gap:18px; padding:14px; background:var(--white); border:1px solid var(--line); }
.home-product-grid img,.home-product-placeholder { width:120px; height:100px; object-fit:cover; background:var(--soft); }
.home-product-placeholder { display:grid; place-items:center; color:var(--gold); font:600 17px var(--serif); }
.home-product-grid h3 { margin:7px 0 2px; font-size:17px; }
.home-product-grid p { margin:0; }
@media (max-width:820px) { .home-overview-grid { grid-template-columns:1fr; gap:20px; } .home-overview-list,.home-product-grid { grid-template-columns:1fr; } .home-overview-list article { border-right:0; border-bottom:1px solid var(--line); margin-right:0; } }
@media (max-width:560px) { .section-heading-inline { display:block; } .section-heading-inline .text-link { display:inline-block; margin-top:16px; } }
.products-hero { padding: 78px 0 70px; background: var(--hero-paper); }
.products-hero h1 { margin: 12px 0 10px; font: 600 54px/1.15 var(--serif); color: var(--hero-ink); }
.products-hero p { margin: 0; color: var(--muted); font-size: 16px; }
.product-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.product-filter { padding: 10px 16px; border: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.product-filter:hover, .product-filter.is-active { border-color: var(--red); background: var(--red); color: var(--white); }
.product-center-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product-center-card { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.product-center-media { display: grid; place-items: center; aspect-ratio: 4 / 3; overflow: hidden; background: var(--soft); color: var(--gold); }
.product-center-media img { width: 100%; height: 100%; object-fit: cover; }
.product-center-media.is-placeholder span { font: 600 24px var(--serif); }
.product-center-body { padding: 22px 24px 25px; }
.product-center-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--red); font-size: 11px; }
.product-center-meta span:last-child { color: var(--muted); }
.product-center-body h2 { margin: 12px 0 8px; font: 600 21px/1.45 var(--serif); }
.product-center-body h2 a:hover { color: var(--red); }
.product-center-body p { min-height: 48px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.product-center-body .text-link { display: inline-block; margin-top: 17px; }
@media (max-width: 820px) { .product-center-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .products-hero { padding: 55px 0 48px; } .products-hero h1 { font-size: 40px; } .product-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; } .product-filter { flex: 0 0 auto; } .product-center-grid { grid-template-columns: 1fr; gap: 18px; } }

@media (max-width: 820px) {
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-toolbar { display: block; }
  .news-count { margin-top: 15px; }
}

@media (max-width: 560px) {
  .news-hero { padding: 55px 0 48px; }
  .news-hero h1 { font-size: 40px; }
  .news-hero p { font-size: 15px; }
  .news-grid { grid-template-columns: 1fr; gap: 18px; }
  .news-filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .news-filter { flex: 0 0 auto; }
  .news-pagination { gap: 4px; }
  .news-pagination a, .news-pagination span { min-width: 32px; }
}

@media (max-width: 1040px) {
  .site-nav a { min-width: auto; padding-inline: 7px; }
  .phone-chip b { display: none; }
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid.cols-4, .steps-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr .8fr 1fr; }
  .footer-grid > :last-child { grid-column: 3; }
}

@media (max-width: 820px) {
  .site-header { height: 70px; }
  .nav-wrap { gap: 12px; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { position: fixed; inset: 70px 0 auto; height: auto; display: none; max-height: calc(100vh - 70px); overflow-y: auto; margin: 0; padding: 12px 24px 24px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.is-open { display: block; }
  .site-nav a { display: flex; min-height: 49px; padding: 0; border-bottom: 1px solid var(--line); }
  .phone-chip { padding-left: 0; border: 0; }
  .phone-chip b { display: block; }
  .page-hero.home-hero { min-height: 610px; }
  .page-hero h1, .home-hero h1 { font-size: 48px; }
  .feature-grid, .feature-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .image-text-grid { grid-template-columns: 1fr; gap: 38px; }
  .section-image-text.is-reverse .image-text-media { order: 0; }
  .faq-tools { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  body { padding-bottom: 62px; }
  .shell, .narrow { width: min(100% - 32px, 1180px); }
  .brand { font-size: 18px; }
  .brand img { width: 38px; height: 38px; }
  .brand small { display: none; }
  .phone-chip { display: none; }
  .breadcrumbs { min-height: 42px; }
  .page-hero, .page-hero.home-hero { min-height: 520px; }
  .hero-content { padding-top: 64px; padding-bottom: 56px; }
  .page-hero h1, .home-hero h1 { font-size: 39px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section-band { padding: 58px 0; }
  .section-heading { margin-bottom: 27px; }
  .section-heading h2, .section-cta h2 { font-size: 30px; }
  .section-heading p { font-size: 15px; }
  .feature-grid, .feature-grid.cols-2, .feature-grid.cols-4, .steps-list, .package-grid { grid-template-columns: 1fr; }
  .feature-item { min-height: 0; }
  .steps-list li { min-height: 155px; }
  .package-card p { min-height: 0; }
  .image-text-grid { gap: 30px; }
  .quote-wrap blockquote { font-size: 23px; }
  .notice-box { grid-template-columns: 1fr; padding: 23px 20px; }
  .faq-categories { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
  .faq-categories button { flex: 0 0 auto; }
  .faq-list summary { font-size: 16px; }
  .cta-inner { display: block; }
  .cta-inner .btn { width: 100%; margin-top: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 27px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin: 7px 0; }
  .mobile-call { position: fixed; z-index: 90; inset: auto 0 0; height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; background: var(--red); color: var(--white); box-shadow: 0 -8px 25px rgba(30, 20, 20, .17); }
  .mobile-call span { font-size: 12px; }
  .mobile-call b { font-size: 16px; }
  .article-page h1 { font-size: 34px; }
}

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