/* DEWAMUDA CENTRAL — shared, responsive styles. No external libraries. */
/* 01. Design tokens and foundations */
:root {
  --paper: #f8f7f3;
  --white: #ffffff;
  --ink: #191a19;
  --muted: #60635f;
  --line: #dddfd8;
  --pink: #f4a9cb;
  --pink-light: #fbe4ee;
  --pink-deep: #9b245c;
  --dark: #1c211d;
  --radius: 24px;
  --container: 1240px;
  --sans: 'Arial', 'Helvetica Neue', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
button:disabled { cursor: default; }
img { display: block; max-width: 100%; }
svg { flex: 0 0 auto; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--pink-deep); outline-offset: 5px; }
::selection { background: var(--pink); color: var(--ink); }
p, h1, h2, h3, h4, figure { margin: 0; }
h1, h2, h3, h4 { line-height: 1.12; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(var(--container), calc(100% - 80px)); margin-inline: auto; }
.icon { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.eyebrow { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .17em; text-transform: uppercase; font-weight: 700; }
.eyebrow::before { content: ''; width: 7px; height: 7px; background: var(--pink-deep); border-radius: 50%; }
.section-number { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 100; background: var(--ink); color: white; padding: 12px 20px; border-radius: 10px; }
.skip-link:focus { top: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 12px 23px; border: 1px solid transparent; border-radius: 10px; font-size: 14px; font-weight: 700; line-height: 1.3; transition: background .18s, transform .18s; }
.button:hover { transform: translateY(-2px); }
.button-pink { background: var(--pink); color: var(--ink); }
.button-pink:hover { background: #f8bad6; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #373b37; }
.button-outline { border-color: #b7bdb5; background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--white); }
.button-small { min-height: 43px; padding: 10px 18px; font-size: 12px; border-radius: 8px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; }
.text-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.pill { display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--line); border-radius: 100px; padding: 6px 12px; font-size: 11px; font-weight: 700; letter-spacing: .03em; }
/* 02. Header and navigation */
.topbar { background: var(--dark); color: #f2f4ed; font-size: 10px; letter-spacing: .12em; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 33px; gap: 16px; }
.topbar a { color: #e9c1d4; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(248,247,243,.97); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; min-height: 86px; gap: 28px; }
.brand { display: flex; align-items: center; flex-shrink: 0; width: 214px; min-height: 44px; }
.brand-image { width: 190px; height: 44px; object-fit: contain; object-position: left center; }
.brand-fallback { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 10px; background: var(--ink); color: var(--pink); font-size: 23px; line-height: 1; font-weight: 900; }
.brand-name { display: block; font-size: 19px; letter-spacing: -.055em; font-weight: 900; line-height: 1.1; }
.brand-edition { display: block; font-size: 8px; letter-spacing: .33em; margin-top: 5px; font-weight: 700; }
.brand.has-image .brand-fallback { display: none; }
.primary-nav { margin-left: auto; }
.primary-nav ul { display: flex; align-items: center; gap: 27px; }
.primary-nav a { display: flex; align-items: center; min-height: 44px; font-size: 12px; font-weight: 700; color: #585d57; position: relative; }
.primary-nav a:hover, .primary-nav a.is-active { color: var(--ink); }
.primary-nav a.is-active::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: var(--pink-deep); border-radius: 2px; }
.header-login { margin-left: 4px; }
.menu-toggle { display: none; align-items: center; justify-content: center; gap: 8px; min-width: 44px; height: 44px; background: transparent; border: 1px solid var(--line); border-radius: 9px; }
/* 03. Home hero */
.hero { padding: 56px 0 54px; }
.hero-grid { display: grid; grid-template-columns: 1.14fr 1fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(52px, 5.8vw, 83px); font-weight: 800; line-height: 1.005; letter-spacing: -.07em; margin: 28px 0 24px; }
.hero h1 span { display: block; }
.hero h1 .accent-line { color: var(--pink-deep); }
.hero-copy { font-size: 15px; max-width: 475px; color: var(--muted); line-height: 1.85; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 25px; }
.hero-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 17px; }
.hero-tags a { font-size: 11px; font-weight: 700; display: inline-flex; gap: 6px; align-items: center; }
.hero-tags .icon { width: 14px; height: 14px; }
.hero-art { min-width: 0; }
.banner-frame { border-radius: 25px; padding: 13px; background: var(--dark); color: white; box-shadow: 0 17px 37px -30px #101b0e; }
.banner-top { display: flex; justify-content: space-between; align-items: center; padding: 5px 8px 14px; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.banner-top .pill { padding: 3px 8px; font-size: 8px; border-color: #4b554c; color: #ecd5e0; }
.banner-visual { position: relative; isolation: isolate; width: 100%; aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; background: #efb0cd; }
.banner-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; z-index: 2; }
.banner-fallback { position: absolute; inset: 0; display: flex; align-items: flex-start; justify-content: space-between; flex-direction: column; padding: 34px; color: var(--ink); background: radial-gradient(ellipse at 80% 20%, #fce4ee 0, transparent 52%), linear-gradient(140deg, #e397b9, #f7c7db); }
.banner-fallback::before, .banner-fallback::after { content: ''; position: absolute; width: 125%; height: 90%; border: 1px solid rgba(34,31,32,.22); border-radius: 50%; transform: rotate(-35deg); left: 15%; top: 18%; z-index: -1; }
.banner-fallback::after { left: -43%; top: -30%; }
.banner-fallback > .eyebrow { font-size: 9px; }
.fallback-star { font-size: 105px; line-height: 1; font-weight: 400; align-self: flex-end; margin-top: -10px; }
.fallback-title { font-size: clamp(38px,4vw,60px); letter-spacing: -.065em; line-height: .98; font-weight: 800; }
.fallback-small { font-size: 9px; letter-spacing: .16em; font-weight: 700; margin-top: 18px; }
.banner-visual.has-image .banner-fallback { display: none; }
.banner-bottom { display: flex; align-items: center; justify-content: space-between; padding: 17px 8px 7px; gap: 20px; }
.banner-bottom strong { display: block; font-size: 13px; }
.banner-bottom small { display: block; color: #bdc5bb; font-size: 10px; margin-top: 2px; }
.banner-bottom .icon { color: var(--pink); width: 25px; height: 25px; }
.hero-art-note { display: flex; justify-content: space-between; font-size: 9px; color: var(--muted); padding: 13px 4px 0; letter-spacing: .08em; }
.hero-divider { border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; margin-top: 45px; padding-top: 19px; gap: 22px; }
.hero-divider p { color: var(--muted); font-size: 12px; }
.hero-divider strong { color: var(--ink); }
.hero-divider .scroll-label { display: flex; align-items: center; gap: 10px; white-space: nowrap; font-size: 10px; font-weight: 700; letter-spacing: .09em; }
/* 04. Shared sections and cards */
.section { padding: 68px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 29px; }
.section-heading h2 { font-size: clamp(30px,3.6vw,44px); letter-spacing: -.055em; margin-top: 13px; }
.section-heading p { max-width: 370px; color: var(--muted); font-size: 14px; }
.quick-section { padding-top: 8px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.quick-card { display: flex; flex-direction: column; padding: 24px; min-height: 258px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); transition: transform .2s, border-color .2s; }
.quick-card:hover, .route-card:hover { transform: translateY(-4px); border-color: #a28b97; }
.quick-card:first-child { background: var(--pink-light); border-color: #e3b4ca; }
.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 27px; }
.icon-box { width: 43px; height: 43px; border-radius: 12px; display: grid; place-items: center; border: 1px solid #d3d9d0; background: transparent; }
.quick-card:first-child .icon-box { background: var(--pink); border-color: var(--pink); }
.card-number { color: var(--muted); font-size: 10px; letter-spacing: .1em; }
.quick-card h3 { font-size: 20px; letter-spacing: -.035em; margin-bottom: 9px; }
.quick-card p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 11px; font-weight: 700; margin-top: auto; padding-top: 25px; }
.card-footer .icon { width: 17px; height: 17px; }
.dark-section { background: var(--dark); color: var(--paper); padding: 73px 0; position: relative; overflow: hidden; }
.journey-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; }
.dark-section .section-number { color: #aeb8ab; }
.dark-section h2 { font-size: clamp(36px,4.4vw,58px); font-weight: 700; letter-spacing: -.055em; line-height: 1.08; margin: 20px 0 22px; }
.dark-section h2 em { font-style: normal; color: var(--pink); }
.dark-section p { color: #bec6ba; font-size: 14px; max-width: 390px; margin-bottom: 28px; }
.journey-list { border-top: 1px solid #414c41; }
.journey-item { display: grid; grid-template-columns: 33px 1fr 24px; align-items: center; gap: 17px; padding: 26px 0; border-bottom: 1px solid #414c41; }
.journey-item .step-number { color: var(--pink); font-size: 11px; }
.journey-item strong { font-size: 17px; letter-spacing: -.025em; display: block; }
.journey-item small { display: block; color: #bec6ba; font-size: 12px; margin-top: 6px; }
.journey-item:hover strong { color: var(--pink); }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.route-card { display: flex; flex-direction: column; min-height: 254px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 26px; transition: transform .2s, border-color .2s; }
.route-card h3 { font-size: 22px; letter-spacing: -.045em; margin: 28px 0 12px; }
.route-card p { font-size: 13px; color: var(--muted); line-height: 1.75; }
.route-card .pill { align-self: flex-start; padding: 4px 10px; background: var(--paper); border: 0; }
.route-card .card-footer { padding-top: 24px; }
.faq-section { border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 83px; }
.faq-intro h2 { font-size: 43px; letter-spacing: -.05em; margin: 17px 0; }
.faq-intro p { color: var(--muted); max-width: 295px; font-size: 14px; margin-bottom: 23px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 23px 0; cursor: pointer; font-size: 15px; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; display: grid; place-items: center; width: 25px; height: 25px; flex: 0 0 auto; font-size: 23px; font-weight: 400; border-radius: 50%; background: var(--pink-light); }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { font-size: 14px; color: var(--muted); padding: 0 31px 24px 0; }
.faq-answer a { color: var(--pink-deep); text-decoration: underline; text-underline-offset: 3px; }
.cta-wrap { padding-bottom: 75px; }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 33px 38px; background: var(--pink); border-radius: 18px; }
.cta-band h2 { font-size: 29px; letter-spacing: -.045em; margin-bottom: 9px; }
.cta-band p { font-size: 13px; }
/* 05. Interior pages */
.breadcrumbs { padding: 26px 0 0; font-size: 11px; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 7px 10px; padding: 0; margin: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 10px; color: #858d80; }
.breadcrumbs a:hover { color: var(--pink-deep); text-decoration: underline; }
.page-hero { padding: 45px 0 48px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr 140px; align-items: center; gap: 50px; }
.page-hero h1 { font-size: clamp(37px,4.7vw,63px); line-height: 1.05; letter-spacing: -.06em; max-width: 900px; margin: 19px 0; }
.page-intro { max-width: 690px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.hero-glyph { display: grid; place-items: center; width: 132px; height: 132px; border: 1px solid #e2bace; background: var(--pink-light); color: var(--pink-deep); border-radius: 31px; transform: rotate(-7deg); }
.hero-glyph .icon { width: 61px; height: 61px; stroke-width: 1.2; transform: rotate(7deg); }
.content-section { padding-bottom: 64px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 60px; align-items: start; }
.article-body { min-width: 0; }
.prose-section { margin-top: 38px; padding-top: 31px; border-top: 1px solid var(--line); scroll-margin-top: 110px; }
.prose-section:first-child { margin-top: 0; }
.prose-section h2 { font-size: 25px; letter-spacing: -.035em; margin-bottom: 19px; }
.prose-section p { font-size: 15px; line-height: 1.95; color: #535b50; margin-top: 13px; }
.prose-section p:first-of-type { margin-top: 0; }
.prose-section a { color: var(--pink-deep); text-decoration: underline; text-underline-offset: 4px; }
.prose-section ol, .prose-section ul { padding-left: 24px; margin: 17px 0; list-style: decimal; color: #535b50; }
.prose-section li { padding: 5px 0 5px 5px; font-size: 15px; }
.article-aside { position: sticky; top: 112px; }
.toc-box { background: var(--white); border: 1px solid var(--line); padding: 24px; border-radius: 17px; }
.toc-box h2 { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.toc-box li + li { border-top: 1px solid #ebede6; }
.toc-box a { font-size: 12px; display: block; padding: 10px 0; line-height: 1.6; color: #5b6456; }
.toc-box a:hover { color: var(--pink-deep); }
.aside-note { background: var(--pink-light); padding: 22px; border-radius: 17px; margin-top: 16px; }
.aside-note h3 { font-size: 16px; margin: 12px 0; }
.aside-note p { font-size: 12px; color: #65545d; margin-bottom: 16px; }
.aside-note .text-link { font-size: 12px; }
.action-panel { background: var(--dark); color: var(--paper); padding: 29px; border-radius: 18px; margin-bottom: 33px; }
.action-panel h2 { font-size: 23px; letter-spacing: -.035em; margin-bottom: 10px; }
.action-panel p { font-size: 13px; color: #c6cfc1; line-height: 1.8; }
.action-panel .action-status { margin-top: 17px; color: #f1c2d8; font-size: 12px; }
.action-panel .button { margin-top: 20px; }
.action-panel .support-fallback { color: var(--pink); font-size: 12px; display: inline-block; margin-top: 17px; text-decoration: underline; text-underline-offset: 4px; }
.action-panel .action-host { display: block; margin-top: 13px; word-break: break-word; }
.action-panel code { color: var(--paper); font: inherit; font-weight: 700; }
.action-panel noscript p { margin-top: 17px; }
.hub-grid { margin-bottom: 44px; }
.hub-article { max-width: 880px; }
.related-section { background: #efefe9; border-top: 1px solid var(--line); }
.related-section .route-card { min-height: 235px; }
.search-box { position: relative; margin: 0 0 24px; }
.search-box label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 9px; }
.search-box input { width: 100%; padding: 17px 18px 17px 48px; border: 1px solid #bfc6ba; border-radius: 11px; background: var(--white); color: var(--ink); outline-offset: 3px; }
.search-box > .icon { position: absolute; left: 16px; bottom: 19px; width: 20px; height: 20px; color: #747d70; }
.search-result-status { font-size: 13px; color: var(--muted); margin: 0 0 20px; }
.sitemap-group + .sitemap-group { margin-top: 38px; }
.sitemap-group h2 { font-size: 25px; letter-spacing: -.03em; margin-bottom: 16px; }
.sitemap-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sitemap-link { display: flex; flex-direction: column; padding: 20px; border-radius: 12px; border: 1px solid var(--line); background: var(--white); }
.sitemap-link strong { font-size: 13px; }
.sitemap-link small { font-size: 10px; color: var(--muted); margin-top: 6px; word-break: break-all; }
.sitemap-link:hover { border-color: #b28fa1; background: var(--pink-light); }
.faq-page .faq-list { max-width: 900px; }
.error-page { text-align: center; padding: 90px 0; }
.error-code { font-size: clamp(90px,15vw,180px); color: var(--pink-deep); line-height: 1; font-weight: 800; letter-spacing: -.09em; }
.error-page h1 { font-size: 40px; letter-spacing: -.05em; margin: 25px 0 18px; }
.error-page p { max-width: 540px; margin: 0 auto 25px; color: var(--muted); }
.error-page .hero-buttons { justify-content: center; }
/* 06. Footer and mobile navigation */
.site-footer { border-top: 1px solid var(--line); padding: 50px 0 0; background: #f1f0eb; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 39px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: 12px; color: var(--muted); max-width: 245px; line-height: 1.85; }
.footer-brand .footer-domain { display: inline-block; font-size: 11px; color: var(--pink-deep); margin-top: 17px; font-weight: 700; word-break: break-word; }
.footer-column h2 { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin: 9px 0 20px; }
.footer-column li { margin-top: 10px; }
.footer-column a { font-size: 12px; color: var(--muted); line-height: 1.5; }
.footer-column a:hover { color: var(--pink-deep); text-decoration: underline; text-underline-offset: 4px; }
.footer-note { padding: 20px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.9; }
.footer-bottom { border-top: 1px solid var(--line); min-height: 59px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 10px; color: var(--muted); }
.footer-bottom a { font-weight: 700; }
.mobile-dock { display: none; }
/* 07. Responsive layouts */
@media (min-width: 1450px) { .hero h1 { font-size: 85px; } }
@media (max-width: 1140px) {
  .container { width: calc(100% - 56px); }
  .header-inner { gap: 17px; }
  .brand { width: 188px; }
  .brand-image { width: 178px; }
  .primary-nav ul { gap: 20px; }
  .hero-grid { gap: 35px; }
  .hero h1 { font-size: clamp(51px,5.8vw,72px); }
  .quick-card { padding: 20px; }
  .quick-card h3 { font-size: 18px; }
  .journey-grid { gap: 60px; }
  .article-layout { gap: 35px; grid-template-columns: minmax(0,1fr) 250px; }
  .footer-grid { gap: 30px; }
}
@media (max-width: 950px) {
  .header-inner { flex-wrap: wrap; min-height: 76px; gap: 0; }
  .header-login { margin-left: auto; margin-right: 13px; }
  .menu-toggle { display: flex; }
  .primary-nav { width: 100%; margin: 0; order: 5; display: none; }
  .site-header.menu-open .primary-nav { display: block; }
  .primary-nav ul { align-items: stretch; flex-direction: column; gap: 0; padding: 9px 0 20px; }
  .primary-nav a { min-height: 48px; padding: 7px 10px; }
  .primary-nav a.is-active { background: var(--pink-light); border-radius: 7px; }
  .primary-nav a.is-active::after { display: none; }
  .no-js .primary-nav { display: block; }
  .no-js .primary-nav ul { flex-direction: row; flex-wrap: wrap; gap: 9px; padding-bottom: 12px; }
  .no-js .menu-toggle { display: none; }
  .hero h1 { font-size: 55px; }
  .hero-grid { gap: 28px; }
  .hero-copy { font-size: 14px; }
  .hero-buttons { gap: 9px; }
  .hero-buttons .button { font-size: 12px; padding: 12px 16px; }
  .banner-fallback { padding: 25px; }
  .fallback-title { font-size: 42px; }
  .fallback-star { font-size: 72px; }
  .hero-tags { gap: 11px; }
  .hero-tags a { font-size: 10px; }
  .quick-grid { grid-template-columns: repeat(2,1fr); }
  .quick-card { min-height: 230px; }
  .journey-grid { gap: 34px; }
  .route-card { padding: 22px; }
  .route-card h3 { font-size: 20px; }
  .faq-layout { gap: 40px; }
  .faq-intro h2 { font-size: 36px; }
  .article-layout { grid-template-columns: minmax(0,1fr); }
  .article-aside { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .aside-note { margin-top: 0; }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .footer-brand { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
  .footer-brand .brand { margin-bottom: 0; }
  .footer-brand p { max-width: none; grid-column: 2; grid-row: 1 / 3; }
  .footer-brand .footer-domain { margin-top: 12px; }
}
@media (max-width: 700px) {
  html { scroll-padding-top: 88px; }
  body { padding-bottom: calc(71px + env(safe-area-inset-bottom)); }
  .container { width: calc(100% - 36px); }
  .topbar-inner { min-height: 30px; font-size: 8px; letter-spacing: .09em; }
  .topbar .topbar-note { display: none; }
  .header-inner { min-height: 71px; }
  .brand { width: auto; }
  .brand-image { width: 150px; height: 38px; }
  .brand-mark { width: 33px; height: 33px; font-size: 20px; }
  .brand-fallback { gap: 7px; }
  .brand-name { font-size: 17px; }
  .brand-edition { font-size: 7px; }
  .header-login { padding: 9px 12px; min-height: 39px; font-size: 11px; gap: 7px; margin-right: 9px; }
  .header-login .icon { width: 15px; height: 15px; }
  .menu-toggle { min-width: 39px; height: 39px; }
  .hero { padding: 36px 0 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero .eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(45px,11.8vw,72px); letter-spacing: -.065em; line-height: 1.015; margin: 23px 0 20px; }
  .hero-copy { font-size: 14px; max-width: 500px; }
  .hero-buttons { margin: 24px 0 21px; gap: 10px; }
  .hero-buttons .button { font-size: 12px; flex: 1; min-height: 50px; }
  .hero-tags { gap: 14px; }
  .hero-tags a { font-size: 10px; }
  .hero-art { width: 100%; max-width: 490px; margin-inline: auto; }
  .banner-frame { padding: 11px; border-radius: 20px; }
  .banner-visual { border-radius: 12px; }
  .banner-fallback { padding: 30px; }
  .fallback-title { font-size: clamp(42px,12vw,64px); }
  .fallback-star { font-size: 93px; }
  .hero-divider { margin-top: 27px; padding-top: 16px; gap: 13px; }
  .hero-divider p { font-size: 10px; }
  .hero-divider .scroll-label { font-size: 8px; gap: 5px; }
  .hero-divider .icon { width: 14px; height: 14px; }
  .section { padding: 43px 0; }
  .quick-section { padding-top: 13px; }
  .section-heading { display: block; margin-bottom: 23px; }
  .section-heading h2 { font-size: 32px; margin-top: 12px; }
  .section-heading p { margin-top: 15px; font-size: 13px; }
  .section-heading .text-link { margin-top: 16px; }
  .section-number { font-size: 10px; }
  .quick-grid { gap: 12px; }
  .quick-card { min-height: 250px; padding: 18px 15px; border-radius: 14px; }
  .icon-box { width: 37px; height: 37px; border-radius: 10px; }
  .card-top { margin-bottom: 24px; }
  .quick-card h3 { font-size: 18px; line-height: 1.16; }
  .quick-card p { font-size: 11px; line-height: 1.75; }
  .card-footer { font-size: 10px; padding-top: 19px; }
  .journey-grid { grid-template-columns: 1fr; gap: 31px; }
  .dark-section { padding: 47px 0; }
  .dark-section h2 { font-size: 42px; }
  .dark-section p { font-size: 13px; }
  .journey-item { padding: 23px 0; gap: 12px; }
  .journey-item strong { font-size: 16px; }
  .journey-item small { font-size: 11px; }
  .route-grid { grid-template-columns: 1fr; gap: 14px; }
  .route-card { min-height: 215px; padding: 24px; }
  .route-card h3 { font-size: 24px; margin-top: 21px; }
  .route-card p { font-size: 13px; }
  .route-card .card-footer { font-size: 12px; padding-top: 18px; }
  .faq-layout { grid-template-columns: 1fr; gap: 27px; }
  .faq-intro h2 { font-size: 34px; }
  .faq-intro p { max-width: 390px; }
  .faq-item summary { font-size: 14px; line-height: 1.6; padding: 20px 0; }
  .faq-answer { font-size: 13px; padding-right: 16px; }
  .cta-wrap { padding-bottom: 46px; }
  .cta-band { flex-direction: column; align-items: flex-start; gap: 22px; padding: 27px; }
  .cta-band h2 { font-size: 28px; }
  .cta-band p { font-size: 12px; }
  .cta-band .button { width: 100%; }
  .breadcrumbs { padding-top: 21px; font-size: 10px; }
  .page-hero { padding: 33px 0; }
  .page-hero-grid { grid-template-columns: minmax(0,1fr); gap: 0; }
  .page-hero h1 { font-size: clamp(36px,9.7vw,54px); margin: 18px 0; }
  .page-intro { font-size: 14px; line-height: 1.85; }
  .hero-glyph { display: none; }
  .content-section { padding-bottom: 45px; }
  .article-layout { gap: 31px; }
  .prose-section { margin-top: 28px; padding-top: 26px; }
  .prose-section h2 { font-size: 23px; line-height: 1.2; }
  .prose-section p, .prose-section li { font-size: 14px; line-height: 1.9; }
  .article-aside { grid-template-columns: 1fr; gap: 15px; }
  .action-panel { padding: 25px; border-radius: 15px; }
  .action-panel h2 { font-size: 22px; }
  .action-panel .button { width: 100%; font-size: 13px; }
  .sitemap-links { grid-template-columns: 1fr; gap: 10px; }
  .sitemap-group h2 { font-size: 23px; }
  .sitemap-link { padding: 19px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 25px; padding-bottom: 30px; }
  .footer-brand { display: block; grid-column: 1 / -1; }
  .footer-brand .brand { margin-bottom: 17px; }
  .footer-brand p { max-width: 360px; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .footer-column:last-child ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 25px; }
  .footer-column h2 { font-size: 10px; margin-bottom: 16px; }
  .footer-column a { font-size: 11px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; padding: 18px 0; font-size: 9px; }
  .footer-note { font-size: 9px; }
  .mobile-dock { display: grid; grid-template-columns: repeat(4,1fr); position: fixed; bottom: 0; left: 0; right: 0; z-index: 40; background: var(--dark); border-top: 1px solid #444d40; padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); box-shadow: 0 -7px 20px rgba(10,20,9,.07); }
  .mobile-dock a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; min-height: 48px; color: #d0d8cc; font-size: 9px; font-weight: 700; border-radius: 8px; }
  .mobile-dock .icon { width: 19px; height: 19px; }
  .mobile-dock a.is-active { color: var(--ink); background: var(--pink); }
  .mobile-dock a:hover { color: var(--pink); }
  .mobile-dock a.is-active:hover { color: var(--ink); }
  .error-page { padding: 57px 0; }
  .error-page h1 { font-size: 31px; }
  .error-page p { font-size: 14px; }
}
@media (max-width: 370px) {
  .container { width: calc(100% - 28px); }
  .brand-name { font-size: 15px; }
  .brand-mark { width: 28px; height: 31px; font-size: 18px; }
  .brand-image { width: 130px; }
  .header-login { font-size: 10px; padding-inline: 10px; }
  .hero h1 { font-size: 43px; }
  .hero-buttons { flex-direction: column; }
  .hero-tags { gap: 11px; }
  .quick-card { padding: 17px 13px; }
  .quick-card h3 { font-size: 16px; }
  .card-number { font-size: 8px; }
  .card-footer { font-size: 9px; }
  .hero-divider { align-items: flex-start; }
}
/* 08. Accessibility and printing */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
@media print {
  .topbar, .site-header, .mobile-dock, .article-aside, .cta-wrap, .site-footer { display: none !important; }
  body { background: white; color: black; padding: 0; }
  .container { width: 100%; }
  .article-layout, .hero-grid { display: block; }
  .action-panel { background: #f0f0f0; color: black; border: 1px solid #ddd; }
  .action-panel p { color: black; }
}
