:root {
  --ink: #322b2b;
  --muted: #736765;
  --paper: #fbf8f5;
  --surface: #f2e7e0;
  --surface-strong: #e6d0c7;
  --accent: #9b6259;
  --accent-dark: #70433d;
  --line: rgba(50,43,43,.14);
  --display: Georgia, 'Times New Roman', serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(80,52,45,.11);
  --ease: 220ms ease;
}

html[data-theme="modern"] {
  --ink: #182321;
  --muted: #61716e;
  --paper: #f4f7f2;
  --surface: #dfece3;
  --surface-strong: #bad4c4;
  --accent: #14634f;
  --accent-dark: #0e4438;
  --line: rgba(24,35,33,.16);
  --radius: 10px;
  --shadow: 0 18px 50px rgba(20,68,56,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d08f65; outline-offset: 4px; }
.skip-link { position: fixed; top: 10px; left: 12px; z-index: 20; padding: 9px 14px; background: var(--ink); color: var(--paper); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.site-shell { overflow: hidden; }
.site-header, main > section, .site-footer { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.site-header { min-height: 84px; display: flex; align-items: center; gap: 28px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.02rem; letter-spacing: -.03em; margin-right: auto; }
.brand strong { font-weight: 800; }
.brand small { display: block; font-size: .58rem; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); margin-top: 1px; }
.brand-mark { display: grid; place-items: center; width: 33px; height: 33px; border: 1px solid var(--accent); border-radius: 50%; color: var(--accent); font-family: var(--display); font-size: 1.3rem; font-style: italic; }
.site-nav { display: flex; align-items: center; gap: 24px; font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.site-nav a:not(.nav-cta), .text-link { transition: color var(--ease); }
.site-nav a:not(.nav-cta):hover, .text-link:hover, .card-link:hover { color: var(--accent); }
.nav-cta { padding: 10px 15px; border: 1px solid var(--ink); border-radius: 999px; }
.theme-toggle, .menu-toggle { border: 0; font: inherit; cursor: pointer; color: var(--ink); background: transparent; }
.theme-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 7px 0; color: var(--muted); font-size: .72rem; white-space: nowrap; }
.theme-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.menu-toggle { display: none; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.hero { min-height: 650px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 60px; align-items: center; padding: 72px 0 90px; }
.eyebrow { margin: 0 0 15px; color: var(--accent); font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.045em; }
h1, h2 { font-family: var(--display); font-weight: 400; }
h1 { max-width: 720px; font-size: clamp(3.2rem, 6.7vw, 6.1rem); }
h2 { font-size: clamp(2.3rem, 4.4vw, 4.2rem); }
h3 { font-size: 1.32rem; }
.hero-lead { max-width: 575px; color: var(--muted); font-size: 1.14rem; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin: 31px 0 50px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 13px 21px; border-radius: 999px; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; transition: transform var(--ease), background var(--ease), color var(--ease); }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover { background: var(--accent-dark); }
.button-light { border: 1px solid rgba(255,255,255,.5); color: #fff; }
.button-light:hover { background: #fff; color: var(--accent-dark); }
.text-link, .card-link { display: inline-flex; gap: 9px; align-items: center; font-size: .77rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.hero-proof { display: flex; gap: 14px; align-items: flex-start; border-top: 1px solid var(--line); padding-top: 16px; max-width: 270px; }
.hero-proof > span, .number, .offer-index, .process-steps article > span { color: var(--accent); font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.hero-proof p { font-size: .82rem; font-weight: 700; line-height: 1.2; }.hero-proof small { display: block; margin-top: 5px; color: var(--muted); font-size: .76rem; font-weight: 400; }
.hero-visual { position: relative; min-height: 500px; background: var(--surface); border-radius: 44% 44% 8px 8px; overflow: hidden; box-shadow: var(--shadow); }
.sun-orb { position: absolute; top: 14%; right: 17%; width: 170px; height: 170px; border-radius: 50%; background: var(--surface-strong); }
.line-art { position: absolute; border: 1px solid var(--accent); border-radius: 50%; opacity: .48; transform: rotate(-24deg); }
.line-art-one { width: 230px; height: 410px; top: 8%; left: 27%; }.line-art-two { width: 180px; height: 330px; top: 25%; left: 36%; border-color: var(--accent-dark); transform: rotate(27deg); }
.visual-card { position: absolute; bottom: 11%; left: 11%; display: grid; gap: 5px; width: 210px; padding: 18px; background: rgba(255,255,255,.77); color: var(--accent-dark); backdrop-filter: blur(7px); }.visual-card span, .visual-card small { font-size: .74rem; color: var(--muted); }.visual-card strong { font-family: var(--display); font-size: 1.9rem; font-weight: 400; }.visual-note { position: absolute; color: var(--accent-dark); font-family: var(--display); font-size: 1rem; font-style: italic; }.note-one { top: 22%; left: 12%; transform: rotate(-16deg); }.note-two { right: 9%; bottom: 29%; transform: rotate(72deg); }
.section { padding: 108px 0; }.section-intro { max-width: 560px; margin-bottom: 46px; }.section-intro h2 { margin-bottom: 0; }.situation-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }.situation-grid article { min-height: 225px; padding: 25px 29px 20px 0; border-right: 1px solid var(--line); }.situation-grid article + article { padding-left: 29px; }.situation-grid article:last-child { border-right: 0; }.number { display: block; margin-bottom: 40px; }.situation-grid h3 { max-width: 260px; margin-bottom: 11px; }.situation-grid p, .offer-card p, .offer-card li, .process-steps p, .about-copy > p, .contact p { color: var(--muted); font-size: .93rem; }
.offers { border-top: 1px solid var(--line); }.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 46px; }.section-heading h2 { margin-bottom: 0; }.section-aside { max-width: 250px; margin-bottom: 4px; color: var(--muted); font-size: .9rem; }.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }.offer-card { position: relative; display: flex; flex-direction: column; min-height: 405px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.38); transition: transform var(--ease), box-shadow var(--ease); }.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }.offer-featured { background: var(--accent); color: #fff; border-color: var(--accent); }.offer-featured p, .offer-featured li { color: rgba(255,255,255,.77); }.offer-featured .offer-index, .offer-featured .card-link { color: #fff; }.offer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 56px; }.pill { padding: 5px 9px; border: 1px solid currentColor; border-radius: 999px; color: var(--muted); font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.offer-featured .pill { color: rgba(255,255,255,.75); }.offer-card h3 { max-width: 300px; margin-bottom: 11px; font-size: 1.7rem; }.offer-card p { max-width: 390px; }.offer-card ul { margin: 12px 0 25px; padding: 0; list-style: none; }.offer-card li { padding: 5px 0 5px 18px; border-top: 1px solid var(--line); }.offer-featured li { border-color: rgba(255,255,255,.2); }.offer-card li::before { content: '＋'; margin-left: -18px; margin-right: 7px; color: var(--accent); }.offer-featured li::before { color: #fff; }.card-link { margin-top: auto; color: var(--accent-dark); }.card-link span { font-size: 1rem; }
.process { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; background: var(--accent-dark); color: #fff; padding-inline: max(24px, calc((100% - var(--max)) / 2)); width: 100%; }.process .eyebrow { color: var(--surface-strong); }.process h2 { max-width: 450px; }.process-intro > p:not(.eyebrow) { max-width: 360px; color: rgba(255,255,255,.74); }.process-intro .button { margin-top: 18px; }.process-steps { display: grid; gap: 0; align-self: center; }.process-steps article { display: grid; grid-template-columns: 45px 1fr; column-gap: 15px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.22); }.process-steps article > span { color: var(--surface-strong); }.process-steps h3 { margin-bottom: 6px; font-family: var(--body); font-size: 1.15rem; letter-spacing: -.02em; }.process-steps p { grid-column: 2; max-width: 470px; margin-bottom: 0; color: rgba(255,255,255,.68); }
.about { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; }.about-portrait { min-height: 510px; display: grid; place-items: center; border-radius: 48% 48% 8px 8px; background: linear-gradient(145deg, var(--surface-strong), var(--surface)); color: var(--accent-dark); font-family: var(--display); font-size: 1.4rem; font-style: italic; text-align: center; }.about-copy h2 { max-width: 630px; }.about-copy > p { max-width: 590px; font-size: 1.02rem; }.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 36px 0; padding-top: 19px; border-top: 1px solid var(--line); }.trust-list span { display: grid; gap: 4px; color: var(--accent); font-size: .68rem; font-weight: 800; }.trust-list b { color: var(--ink); font-size: .82rem; }.trust-list small { color: var(--muted); font-size: .72rem; font-weight: 400; line-height: 1.25; }
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; border-top: 1px solid var(--line); }.faq-list details { border-top: 1px solid var(--line); padding: 19px 0; }.faq-list details:last-child { border-bottom: 1px solid var(--line); }.faq-list summary { cursor: pointer; list-style: none; font-size: 1rem; font-weight: 750; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::after { content: '+'; float: right; color: var(--accent); font-size: 1.3rem; font-weight: 400; }.faq-list details[open] summary::after { content: '−'; }.faq-list details p { max-width: 620px; margin: 13px 30px 0 0; color: var(--muted); font-size: .9rem; }
.contact { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 80px; padding: 48px; background: var(--surface); border-radius: var(--radius); }.contact h2 { max-width: 650px; margin-bottom: 15px; }.contact p { max-width: 590px; margin-bottom: 0; }.contact-actions { display: grid; justify-items: start; gap: 12px; min-width: 240px; }.contact-detail { color: var(--accent-dark); font-size: .84rem; font-weight: 750; }.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; padding: 26px 0 35px; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }.footer-brand { display: grid; gap: 3px; color: var(--ink); }.footer-brand span { color: var(--muted); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }.footer-links { display: flex; gap: 17px; }.footer-links a:hover { color: var(--accent); }.draft-note { grid-column: 1 / -1; padding-top: 15px; border-top: 1px dashed var(--line); font-size: .68rem; }
html[data-theme="modern"] .hero-visual { border-radius: 8px; }.modern-only { display: none; }
html[data-theme="modern"] .hero { min-height: 610px; }.theme-toggle:hover { color: var(--accent); }
@media (max-width: 840px) { .site-header { position: relative; flex-wrap: wrap; gap: 15px; padding: 15px 0; }.menu-toggle { display: block; order: 2; }.theme-toggle { order: 3; margin-left: auto; }.site-nav { display: none; order: 4; flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 6px; border-top: 1px solid var(--line); }.site-nav.is-open { display: flex; }.site-nav a { padding: 12px 0; }.nav-cta { text-align: center; }.hero { grid-template-columns: 1fr; gap: 42px; padding-top: 58px; }.hero-visual { min-height: 390px; max-width: 600px; }.section { padding: 75px 0; }.process { grid-template-columns: 1fr; gap: 35px; padding-block: 75px; }.about, .faq { grid-template-columns: 1fr; gap: 42px; }.about-portrait { min-height: 390px; max-width: 500px; }.contact { align-items: start; flex-direction: column; padding: 33px; }.site-footer { grid-template-columns: 1fr; }.footer-links { flex-wrap: wrap; }.draft-note { grid-column: auto; } }
@media (max-width: 580px) { .site-header, main > section, .site-footer { width: min(var(--max), calc(100% - 32px)); }.site-header { min-height: 74px; }.brand small { display: none; }.theme-toggle { font-size: 0; }.theme-toggle .theme-dot { width: 12px; height: 12px; }.hero { padding: 42px 0 60px; }.hero h1 { font-size: clamp(2.8rem, 13vw, 4.1rem); }.hero-lead { font-size: 1rem; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-bottom: 38px; }.hero-visual { min-height: 340px; }.situation-grid, .offer-grid { grid-template-columns: 1fr; }.situation-grid article, .situation-grid article + article { min-height: auto; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }.situation-grid article:last-child { border-bottom: 0; }.number { margin-bottom: 22px; }.section-heading { display: block; }.section-aside { margin-top: 20px; }.offer-card { min-height: 390px; }.process { width: 100%; padding-inline: 24px; }.trust-list { grid-template-columns: 1fr; }.contact { width: calc(100% - 32px); }.contact-actions { min-width: 0; width: 100%; }.contact-actions .button { width: 100%; }.about-portrait { min-height: 320px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }

/* Full multi-page layout and local original-image treatment. */
.original-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .2; mix-blend-mode: multiply; }
.offer-card > img { width: calc(100% + 54px); height: 145px; object-fit: cover; margin: -27px -27px 22px; border-radius: var(--radius) var(--radius) 0 0; opacity: .88; }
.about-portrait { overflow: hidden; }
.about-portrait img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }
.site-nav a.is-current { color: var(--accent); }
.inner-hero { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; padding: 90px 0 70px; }
.inner-hero h1 { max-width: 720px; margin-bottom: 20px; }
.inner-hero .hero-lead { max-width: 630px; }
.inner-visual { min-height: 360px; background: var(--surface); border-radius: 44% 44% 8px 8px; overflow: hidden; box-shadow: var(--shadow); }
.inner-visual img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; opacity: .9; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.content-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.4); }
.content-card h2 { margin-bottom: 14px; font-size: 2rem; }
.content-card p, .content-card li { color: var(--muted); font-size: .95rem; }
.content-card ul { padding-left: 20px; }
.detail-section { padding: 70px 0; border-top: 1px solid var(--line); }
.detail-section > h2 { max-width: 680px; margin-bottom: 30px; }
.price-panel { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; border-radius: var(--radius); background: var(--surface); }
.shop-grid { align-items: stretch; }
.shop-card { display: flex; flex-direction: column; gap: 10px; }
.shop-card .number { margin-bottom: 12px; }
.shop-card h3 { margin-bottom: 0; }
.shop-card .small { min-height: 42px; margin-bottom: 10px; }
.shop-card .button { align-self: flex-start; margin-top: auto; }
.shop-card .text-link { margin-top: 6px; }
.price-panel strong { font-family: var(--display); font-size: 2.1rem; font-weight: 400; }
.quote-panel { margin: 25px 0; padding: 25px 30px; border-left: 3px solid var(--accent); background: var(--surface); font-family: var(--display); font-size: 1.35rem; }
.legal-copy { max-width: 800px; padding: 65px 0 100px; }
.legal-copy h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.legal-copy h2 { margin-top: 40px; font-size: 2rem; }
.legal-copy p, .legal-copy li { color: var(--muted); }
html[data-theme="modern"] .inner-visual { border-radius: 8px; }
html[data-theme="modern"] .content-card { background: var(--paper); }
html[data-theme="modern"] .inner-hero { padding-top: 75px; }
@media (max-width: 840px) { .inner-hero { grid-template-columns: 1fr; gap: 35px; padding-top: 55px; }.content-grid { grid-template-columns: 1fr; }.inner-visual { max-width: 600px; } }
@media (max-width: 580px) { .inner-hero { padding-top: 40px; }.inner-hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); }.inner-visual, .inner-visual img { min-height: 290px; }.content-card { padding: 22px; }.price-panel { align-items: flex-start; flex-direction: column; }.about-portrait img { min-height: 320px; } }

/* Multi-page presentation and original-image treatment. */
.original-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .2; mix-blend-mode: multiply; }
.offer-card > img { width: calc(100% + 54px); height: 145px; object-fit: cover; margin: -27px -27px 22px; border-radius: var(--radius) var(--radius) 0 0; opacity: .88; }
.about-portrait { overflow: hidden; }
.about-portrait img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; }
.inner-hero { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; padding: 90px 0 70px; }
.inner-hero h1 { max-width: 720px; margin-bottom: 20px; }
.inner-hero .hero-lead { max-width: 630px; }
.inner-visual { min-height: 360px; background: var(--surface); border-radius: 44% 44% 8px 8px; overflow: hidden; box-shadow: var(--shadow); }
.inner-visual img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; opacity: .9; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.content-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.4); }
.content-card h2 { margin-bottom: 14px; font-size: 2rem; }
.content-card p, .content-card li { color: var(--muted); font-size: .95rem; }
.content-card ul { padding-left: 20px; }
.detail-section { padding: 70px 0; border-top: 1px solid var(--line); }
.detail-section > h2 { max-width: 680px; margin-bottom: 30px; }
.price-panel { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; border-radius: var(--radius); background: var(--surface); }
.price-panel strong { font-family: var(--display); font-size: 2.1rem; font-weight: 400; }
.quote-panel { margin: 25px 0; padding: 25px 30px; border-left: 3px solid var(--accent); background: var(--surface); font-family: var(--display); font-size: 1.35rem; }
.legal-copy { max-width: 800px; padding: 65px 0 100px; }
.legal-copy h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.legal-copy h2 { margin-top: 40px; font-size: 2rem; }
.legal-copy p, .legal-copy li { color: var(--muted); }
html[data-theme="modern"] .inner-visual { border-radius: 8px; }
html[data-theme="modern"] .content-card { background: var(--paper); }
html[data-theme="modern"] .inner-hero { padding-top: 75px; }
@media (max-width: 840px) { .inner-hero { grid-template-columns: 1fr; gap: 35px; padding-top: 55px; }.content-grid { grid-template-columns: 1fr; }.inner-visual { max-width: 600px; } }
@media (max-width: 580px) { .inner-hero { padding-top: 40px; }.inner-hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); }.inner-visual, .inner-visual img { min-height: 290px; }.content-card { padding: 22px; }.price-panel { align-items: flex-start; flex-direction: column; }.about-portrait img { min-height: 320px; } }
.article-meta { color: var(--muted); }
.article-sources { padding-left: 20px; color: var(--muted); }
