/* WonderCMS Enterprise 3 — shared storefront foundation.
   Typography is controlled by the six public variables below. Theme CSS never resets them. */
:root {
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Arial, sans-serif;
  --font-heading: var(--font-body);
  --font-size-body: 18px;
  --font-size-nav: 16px;
  --font-size-heading: 44px;
  --font-size-card: 22px;
  --font-line-height: 1.65;
  --type-small: max(15px, calc(var(--font-size-body) * .89));
  --type-meta: max(14px, calc(var(--font-size-body) * .8));
  --ink: #242623;
  --muted: #555a54;
  --paper: #fff;
  --soft: #f3f4f1;
  --soft-dark: #e9ece6;
  --line: #d8ddd5;
  --accent: #344537;
  --accent-text: #fff;
  --radius: 3px;
  --container: 1280px;
  --header-height: 92px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 115px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); font-size: var(--font-size-body); line-height: var(--font-line-height); -webkit-font-smoothing: antialiased; overflow-wrap: break-word; }
body.menu-is-open, body.dialog-is-open { overflow: hidden; }
button, input, select, textarea { font: inherit; color: inherit; }
button, a, input, select, textarea, summary { -webkit-tap-highlight-color: transparent; }
button, summary { cursor: pointer; }
button:disabled { cursor: wait; opacity: .65; }
a { color: inherit; text-decoration: none; text-underline-offset: .2em; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { border-radius: var(--radius); }
:is(button, a, input, select, textarea, summary):focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; letter-spacing: -.018em; }
h1 { font-size: var(--font-size-heading); }
h2 { font-size: calc(var(--font-size-heading) * .8); }
h3 { font-size: var(--font-size-card); }
h4 { font-size: var(--font-size-body); }
svg { flex-shrink: 0; }
[hidden] { display: none !important; }
.container { width: min(var(--container), calc(100% - 80px)); margin-inline: auto; }
.narrow-container { max-width: 1000px; }
.section { padding-block: 72px; }
.icon { width: 22px; height: 22px; vertical-align: middle; }
.icon-button { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; background: transparent; border-radius: var(--radius); }
.icon-button:hover { background: var(--soft-dark); }
.btn { display: inline-flex; gap: 20px; align-items: center; justify-content: center; min-height: 50px; padding: 12px 22px; border: 1px solid transparent; border-radius: var(--radius); font-size: var(--font-size-nav); font-weight: 600; line-height: 1.5; transition: background .16s, border-color .16s; }
.btn-dark, .btn-primary { background: var(--accent); border-color: var(--accent); color: var(--accent-text); }
.btn-dark:hover, .btn-primary:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--soft-dark); border-color: var(--soft-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { background: var(--soft-dark); }
.text-link { display: inline-flex; gap: 12px; align-items: center; width: fit-content; font-size: var(--font-size-nav); font-weight: 600; line-height: 1.5; }
.text-link:hover { text-decoration: underline; }
.text-link .icon { width: 20px; height: 20px; }
.eyebrow { display: block; color: var(--muted); font-size: var(--type-small); font-weight: 500; line-height: 1.5; letter-spacing: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; clip-path: inset(50%); border: 0; }
.skip-link { position: fixed; top: 10px; inset-inline-start: 16px; z-index: 200; padding: 10px 20px; background: var(--ink); color: #fff; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
#main-content:focus { outline: none; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); background: var(--paper); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-height); gap: 28px; }
.brand { display: inline-flex; min-width: 0; align-items: center; max-width: 250px; font-family: var(--font-heading); font-size: calc(var(--font-size-card) * 1.14); font-weight: 650; letter-spacing: -.02em; line-height: 1.2; }
.desktop-nav { display: flex; flex-wrap: nowrap; align-self: stretch; gap: 24px; margin-inline-start: auto; }
.desktop-nav > a { display: flex; align-items: center; border-bottom: 2px solid transparent; padding-top: 2px; color: var(--muted); font-size: var(--font-size-nav); line-height: 1.4; white-space: nowrap; }
.desktop-nav > a:hover, .desktop-nav > a.is-current { color: var(--ink); border-bottom-color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-contact { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 10px 16px; border: 1px solid var(--accent); border-radius: var(--radius); background: var(--accent); color: var(--accent-text); font-size: var(--font-size-nav); font-weight: 600; line-height: 1.4; }
.header-contact .icon { width: 18px; height: 18px; }
.header-contact:hover { filter: brightness(.9); }
.header-search { display: none; }
.menu-toggle { display: none; }
.language-switch { position: relative; z-index: 2; max-width: 190px; font-size: var(--font-size-nav); }
.language-switch summary { list-style: none; display: flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 10px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); user-select: none; }
.language-switch summary::-webkit-details-marker { display: none; }
.language-switch summary > .icon { width: 18px; height: 18px; }
.language-switch summary > .icon:last-child { width: 15px; height: 15px; margin-inline-start: auto; transition: transform .16s; }
.language-switch[open] summary > .icon:last-child { transform: rotate(180deg); }
.language-current { white-space: nowrap; max-width: 110px; overflow: hidden; text-overflow: ellipsis; }
.language-switch[open] summary, .language-switch summary:hover { border-color: var(--accent); }
.language-menu { position: absolute; top: calc(100% + 8px); inset-inline-end: 0; width: max-content; min-width: 240px; max-width: min(320px, calc(100vw - 32px)); max-height: min(430px, 65dvh); overflow-y: auto; padding: 8px; background: var(--paper); border: 1px solid var(--line); border-radius: max(4px, var(--radius)); box-shadow: 0 8px 28px #17201a24; }
.language-menu > p { padding: 8px 10px; color: var(--muted); font-size: var(--type-meta); }
.language-option { display: flex; align-items: center; gap: 12px; padding: 11px 10px; border-radius: var(--radius); color: var(--ink); line-height: 1.5; }
.language-option:hover, .language-option:focus-visible { background: var(--soft-dark); }
.language-option[aria-current] { background: var(--soft); font-weight: 600; }
.language-option > span:first-child { flex: 1; }
.language-code { font-size: var(--type-meta); color: var(--muted); }
.language-option .icon, .language-check-space { width: 17px; height: 17px; flex-shrink: 0; }
.noscript-nav { display: none; }
.mobile-menu { position: fixed; inset: 0; z-index: 100; }
.menu-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #15211b80; }
.mobile-menu-panel { position: absolute; top: 0; inset-inline-end: 0; bottom: 0; width: min(90vw, 430px); overflow: auto; padding: 22px 26px 36px; background: var(--paper); box-shadow: -12px 0 48px #17211a20; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; font-size: var(--font-size-body); }
.mobile-menu-panel nav { display: grid; }
.mobile-menu-panel nav a { display: flex; align-items: center; justify-content: space-between; padding-block: 16px; border-bottom: 1px solid var(--line); font-size: var(--font-size-body); }
.mobile-menu-panel nav a[aria-current] { font-weight: 600; }
.mobile-search-link { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: var(--font-size-body); }
.mobile-menu-panel .language-switch { margin-top: 24px; max-width: none; }
.mobile-menu-panel .language-switch summary { width: 100%; }
.mobile-menu-panel .language-menu { position: static; width: 100%; max-width: none; min-width: 0; margin-top: 8px; box-shadow: none; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 24px; margin-top: 28px; }
.hero-copy h1 { margin-top: 14px; max-width: 16ch; }
.hero-copy > p { margin-top: 22px; max-width: 49ch; color: var(--muted); }
.home-category-links { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px; padding-block: 22px; border-bottom: 1px solid var(--line); font-size: var(--font-size-nav); }
.home-category-links > span { color: var(--muted); }
.home-category-links > a { display: inline-flex; align-items: center; gap: 14px; padding-block: 6px; }
.home-category-links > a:hover { text-decoration: underline; }
.home-category-links .icon { width: 18px; height: 18px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.section-heading h2 { max-width: 800px; margin-top: 10px; }
.section-heading > .text-link { flex-shrink: 0; padding-bottom: 4px; }
.product-grid, .news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 28px; }
.product-card, .news-card { min-width: 0; display: flex; flex-direction: column; }
.product-image, .news-image { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--soft); border-radius: var(--radius); }
.product-image > img, .product-image > .image-placeholder, .news-image > img, .news-image > .image-placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform .24s; }
.product-card:hover .product-image > img, .news-card:hover .news-image > img { transform: scale(1.025); }
.card-image-action { position: absolute; inset-inline-end: 12px; bottom: 12px; display: grid; place-items: center; width: 34px; height: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.card-image-action .icon { width: 19px; height: 19px; }
.product-card-body, .news-card-body { display: flex; flex-direction: column; flex: 1; padding-top: 18px; }
.card-overline { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: start; gap: 5px 12px; color: var(--muted); font-size: var(--type-meta); line-height: 1.5; }
.card-overline time { white-space: nowrap; }
.product-card h3, .news-card h3 { margin-top: 10px; font-size: var(--font-size-card); line-height: 1.35; }
.product-card h3 a:hover, .news-card h3 a:hover { text-decoration: underline; }
.product-card-body > p, .news-card-body > p { margin-top: 12px; margin-bottom: 20px; color: var(--muted); font-size: var(--font-size-body); line-height: var(--font-line-height); }
.card-link { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-block: 14px 0; border-top: 1px solid var(--line); font-size: var(--font-size-nav); font-weight: 600; line-height: 1.5; }
.card-link:hover { text-decoration: underline; }
.card-link .icon { width: 20px; height: 20px; }
.news-image { aspect-ratio: 16/10; }
.home-journal { border-top: 1px solid var(--line); }
.home-story { background: var(--soft); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.story-image { overflow: hidden; aspect-ratio: 4/3; border-radius: var(--radius); }
.story-image > img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { margin-top: 14px; max-width: 20ch; }
.story-copy p { margin-top: 22px; color: var(--muted); }
.story-copy .text-link { margin-top: 24px; }
.value-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 36px; padding-block: 42px; }
.value-strip > div { border-inline-start: 2px solid var(--line); padding-inline-start: 22px; }
.value-strip h3 { font-size: var(--font-size-card); }
.value-strip p { margin-top: 12px; color: var(--muted); }
.consultation-section { padding-block: 50px; background: var(--accent); color: var(--accent-text); }
.consultation-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.consultation-inner .eyebrow { color: inherit; }
.consultation-inner h2 { margin-top: 12px; max-width: 24ch; }
.consultation-inner p { margin-top: 18px; max-width: 62ch; color: inherit; }
.consultation-inner > .btn { flex-shrink: 0; }
.site-footer { background: var(--paper); border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1.45fr 1fr 1fr 1.1fr; gap: 42px; padding-block: 54px; }
.footer-brand p { max-width: 36ch; margin-top: 20px; color: var(--muted); font-size: var(--type-small); }
.footer-brand .text-link { margin-top: 18px; }
.footer-column h2 { margin: 0 0 18px; font-size: var(--font-size-body); letter-spacing: 0; }
.footer-column > a { display: flex; align-items: center; gap: 8px; width: fit-content; max-width: 100%; margin-top: 10px; color: var(--muted); font-size: var(--type-small); line-height: 1.65; overflow-wrap: anywhere; }
.footer-column > a:hover { color: var(--ink); text-decoration: underline; }
.footer-column > p { margin-top: 12px; color: var(--muted); font-size: var(--type-small); }
.footer-bottom { display: flex; align-items: start; justify-content: space-between; gap: 24px; padding-block: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: var(--type-meta); }
.footer-bottom > div { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-bottom a:hover { text-decoration: underline; }
.page-heading { padding-bottom: 38px; background: var(--soft); }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; padding-block: 22px 28px; color: var(--muted); font-size: var(--type-meta); line-height: 1.5; }
.breadcrumbs > a:hover { text-decoration: underline; }
.breadcrumbs .icon { width: 13px; height: 13px; }
.page-heading-row h1 { margin-top: 10px; }
.page-heading-row p { max-width: 760px; margin-top: 16px; color: var(--muted); }
.listing-section { padding-top: 30px; }
.collection-toolbar { display: flex; align-items: start; justify-content: space-between; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.category-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.category-tabs > a { display: block; padding: 10px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); font-size: var(--font-size-nav); line-height: 1.5; }
.category-tabs > a:hover { background: var(--soft); }
.category-tabs > a.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-text); }
.search-form { display: flex; align-items: center; width: 320px; flex-shrink: 0; border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius); }
.search-form:focus-within { outline: 2px solid var(--accent); outline-offset: 1px; }
.search-form input[type=search] { width: 100%; min-width: 0; padding: 12px 0 12px 14px; border: 0; outline: 0; background: transparent; font-size: var(--font-size-nav); line-height: 1.5; }
.search-form input::placeholder { color: var(--muted); opacity: 1; }
.search-form button { display: grid; place-items: center; width: 48px; height: 48px; flex-shrink: 0; padding: 0; border: 0; background: transparent; }
.search-form button:hover { background: var(--soft); }
.results-meta { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin: 22px 0 28px; color: var(--muted); font-size: var(--type-small); }
.results-meta > span { flex-shrink: 0; }
.listing-section .product-grid, .listing-section .news-grid { row-gap: 42px; }
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 260px; padding: 36px 24px; text-align: center; background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.empty-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 20px; border: 1px solid var(--line); border-radius: 50%; }
.empty-state h2 { font-size: var(--font-size-card); }
.empty-state p { max-width: 50ch; margin-top: 12px; color: var(--muted); }
.empty-state > .text-link { margin-top: 22px; }
.pagination { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 42px; }
.pagination > a, .pagination > span { display: grid; place-items: center; min-width: 44px; min-height: 44px; padding: 4px 10px; border: 1px solid var(--line); border-radius: var(--radius); font-size: var(--font-size-nav); }
.pagination > a:hover { border-color: var(--accent); background: var(--soft); }
.pagination .pagination-current { background: var(--accent); border-color: var(--accent); color: var(--accent-text); }
.pagination .pagination-gap { border: 0; }
.pagination .icon { width: 17px; height: 17px; }
.pagination-prev .icon { transform: rotate(180deg); }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 56px; padding-bottom: 60px; }
.product-gallery { min-width: 0; }
.product-main-image { position: relative; display: block; width: 100%; overflow: hidden; aspect-ratio: 1.1; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.product-main-image > img, .product-main-image > .image-placeholder { width: 100%; height: 100%; object-fit: contain; }
.image-zoom-label { position: absolute; inset-inline-end: 12px; bottom: 12px; display: flex; align-items: center; gap: 7px; padding: 8px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); font-size: var(--type-meta); }
.image-zoom-label .icon { width: 16px; height: 16px; }
.gallery-caption { display: flex; justify-content: space-between; gap: 12px; padding-top: 12px; color: var(--muted); font-size: var(--type-meta); }
.product-introduction { padding-top: 10px; }
.product-introduction h1 { margin-top: 12px; font-size: calc(var(--font-size-heading) * .9); }
.product-model { display: flex; gap: 14px; margin-top: 16px; color: var(--muted); font-size: var(--type-small); }
.product-model > span { color: var(--ink); }
.product-summary { margin-top: 22px; color: var(--muted); }
.product-price { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 24px; }
.product-price > span { color: var(--muted); font-size: var(--type-small); }
.product-price > strong { font-size: var(--font-size-card); font-weight: 600; }
.key-specs { display: grid; gap: 12px; margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: var(--type-small); }
.key-specs > div { display: grid; grid-template-columns: minmax(95px, .42fr) 1fr; gap: 18px; }
.key-specs dt { color: var(--muted); }
.key-specs dd { margin: 0; }
.product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; margin-top: 28px; }
.product-information { background: var(--soft); }
.detail-content-grid { display: grid; grid-template-columns: 230px minmax(0,1fr); gap: 64px; }
.detail-side-heading { position: sticky; top: 120px; align-self: start; }
.detail-side-heading h2 { margin-top: 12px; font-size: calc(var(--font-size-heading) * .7); }
.detail-anchor-nav { display: grid; margin-top: 24px; }
.detail-anchor-nav > a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-block: 13px; border-bottom: 1px solid var(--line); font-size: var(--font-size-nav); }
.detail-anchor-nav > a:hover { text-decoration: underline; }
.detail-anchor-nav .icon { width: 18px; height: 18px; }
.detail-main-content { min-width: 0; }
.content-section-title { margin-bottom: 22px; font-size: calc(var(--font-size-card) * 1.15); }
.specifications-section { margin-top: 38px; }
.specification-table { width: 100%; border-collapse: collapse; text-align: start; font-size: var(--font-size-body); }
.specification-table th, .specification-table td { padding: 15px 18px; border: 1px solid var(--line); }
.specification-table th { width: 34%; font-weight: 600; background: var(--soft-dark); }
.specification-table td { background: var(--paper); }
.rich-content { color: var(--ink); font-size: var(--font-size-body); line-height: var(--font-line-height); overflow-wrap: anywhere; }
.rich-content > :first-child { margin-top: 0; }
.rich-content h1, .rich-content h2, .rich-content h3, .rich-content h4 { margin: 30px 0 16px; }
.rich-content h1 { font-size: calc(var(--font-size-heading) * .85); }
.rich-content h2 { font-size: calc(var(--font-size-heading) * .7); }
.rich-content h3 { font-size: var(--font-size-card); }
.rich-content h4 { font-size: var(--font-size-body); }
.rich-content p { margin-block: 18px; }
.rich-content ul, .rich-content ol { margin-block: 20px; padding-inline-start: 26px; }
.rich-content li { margin-block: 8px; }
.rich-content a { color: var(--accent); text-decoration: underline; }
.rich-content strong { font-weight: 600; }
.rich-content blockquote { margin: 28px 0; padding: 18px 24px; border-inline-start: 3px solid var(--accent); background: var(--soft-dark); }
.rich-content blockquote p { margin: 0; }
.rich-content hr { margin-block: 28px; border: 0; border-top: 1px solid var(--line); }
.rich-content img { max-width: 100%; height: auto; margin-block: 24px; border-radius: var(--radius); }
.rich-content table { display: block; width: 100%; max-width: 100%; overflow-x: auto; margin-block: 24px; border-collapse: collapse; font-size: var(--type-small); }
.rich-content th, .rich-content td { padding: 12px 16px; border: 1px solid var(--line); text-align: start; }
.rich-content th { background: var(--soft-dark); font-weight: 600; }
.rich-content pre { max-width: 100%; overflow: auto; padding: 18px; background: var(--soft-dark); font-size: var(--type-small); }
.rich-content code { padding: 2px 4px; background: var(--soft-dark); }
.product-quote-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 36px; padding: 24px; border: 1px solid var(--line); background: var(--paper); border-radius: var(--radius); }
.product-quote-strip h3 { font-size: var(--font-size-card); }
.product-quote-strip p { margin-top: 10px; color: var(--muted); font-size: var(--type-small); }
.product-quote-strip .btn { flex-shrink: 0; }
.article-header { max-width: 1000px; padding-top: 10px; padding-bottom: 34px; }
.article-header h1 { margin-top: 12px; max-width: 26ch; }
.article-summary { max-width: 70ch; margin-top: 22px; color: var(--muted); }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 24px; color: var(--muted); font-size: var(--type-small); }
.article-cover { max-width: 1100px; overflow: hidden; aspect-ratio: 2.15; background: var(--soft); border-radius: var(--radius); }
.article-cover > img { width: 100%; height: 100%; object-fit: cover; }
.article-body-container { width: min(800px, calc(100% - 80px)); margin-inline: auto; padding-block: 38px 64px; }
.article-end { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; margin-top: 38px; border-top: 1px solid var(--line); color: var(--muted); font-size: var(--type-small); }
.related-news { background: var(--soft); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 72px; }
.contact-information h2 { margin-top: 12px; }
.contact-intro { margin-top: 20px; color: var(--muted); }
.contact-methods { display: grid; gap: 26px; margin-top: 30px; }
.contact-method { display: flex; gap: 16px; }
.contact-method-icon { display: grid; place-items: center; flex-shrink: 0; width: 42px; height: 42px; border: 1px solid var(--line); }
.contact-method h3 { margin-bottom: 7px; font-size: var(--font-size-nav); }
.contact-method p, .contact-method a { color: var(--muted); }
.contact-method a:hover { text-decoration: underline; }
.other-forms { display: grid; gap: 14px; margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line); }
.other-forms h3 { font-size: var(--font-size-card); }
.other-forms a { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.other-forms a:hover { text-decoration: underline; }
.form-panel { min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.inquiry-form h3 { margin-bottom: 12px; font-size: var(--font-size-card); }
.form-description { margin-bottom: 22px; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-block: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field-full, .field:has(textarea) { grid-column: 1 / -1; }
.field label { font-size: var(--font-size-nav); color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: 11px 12px; min-height: 46px; border: 1px solid #a9b1a8; background: var(--paper); font-size: var(--font-size-body); line-height: 1.5; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--accent); }
.field textarea { min-height: 125px; resize: vertical; }
.field small { color: var(--muted); font-size: var(--type-meta); }
.form-consent { display: flex; align-items: start; gap: 10px; margin-top: 20px; color: var(--muted); font-size: var(--type-small); line-height: 1.6; }
.form-consent input { width: 18px; height: 18px; flex-shrink: 0; margin: 4px 0 0; accent-color: var(--accent); }
.form-consent a { text-decoration: underline; }
.inquiry-form > .btn { margin-top: 22px; }
.form-note { margin-top: 14px; color: var(--muted); font-size: var(--type-meta); }
.quote-product { margin-bottom: 18px; color: var(--muted); }
.notice { padding: 20px; border: 1px solid var(--line); background: var(--soft); }
.form-error { margin-block: 12px; color: #9a2723; }
.inquiry-dialog { width: min(620px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); padding: 34px; border: 1px solid var(--line); border-radius: max(4px, var(--radius)); background: var(--paper); color: var(--ink); box-shadow: 0 20px 80px #15211b40; overflow-y: auto; }
.inquiry-dialog::backdrop, .image-dialog::backdrop { background: #15211ba6; }
.inquiry-dialog-close { position: absolute; inset-inline-end: 12px; top: 12px; }
.inquiry-dialog h2 { margin: 12px 36px 16px 0; font-size: calc(var(--font-size-heading) * .7); }
.inquiry-dialog .dialog-description, .inquiry-dialog .quote-product { color: var(--muted); font-size: var(--type-small); }
.inquiry-dialog .inquiry-form h3, .inquiry-dialog .form-description, .inquiry-dialog .form-note { display: none; }
.inquiry-dialog .inquiry-form > .btn { width: 100%; }
.flash-messages { margin-block: 20px; }
.flash-message { display: flex; align-items: start; gap: 12px; padding: 18px; border: 1px solid #a9c5b1; border-radius: var(--radius); background: #edf6ef; color: #254b31; font-size: var(--type-small); }
.flash-message + .flash-message { margin-top: 12px; }
.flash-message .icon { width: 20px; height: 20px; margin-top: 3px; }
.flash-error { border-color: #d5aaa6; background: #fff0ef; color: #842d27; }
.image-dialog { position: fixed; max-width: min(1100px, 94vw); width: fit-content; max-height: 94dvh; padding: 54px 24px 20px; border: 0; border-radius: var(--radius); background: var(--paper); color: var(--ink); }
.image-dialog > img { max-height: calc(94dvh - 135px); max-width: 100%; width: auto; object-fit: contain; }
.image-dialog > p { margin-top: 14px; font-size: var(--type-small); text-align: center; }
.image-dialog-close { position: absolute; inset-inline-end: 8px; top: 7px; }
.search-heading .search-form-large { width: 100%; max-width: 780px; margin-top: 24px; }
.search-result { display: grid; grid-template-columns: 132px minmax(0,1fr) 44px; align-items: center; gap: 24px; padding-block: 26px; border-bottom: 1px solid var(--line); }
.search-result:first-child { border-top: 1px solid var(--line); }
.search-result-image { display: block; aspect-ratio: 1.1; overflow: hidden; background: var(--soft); }
.search-result-image > img, .search-result-image > .image-placeholder { width: 100%; height: 100%; object-fit: cover; }
.search-result h2 { margin-top: 7px; font-size: var(--font-size-card); }
.search-result h2 a:hover { text-decoration: underline; }
.search-result p { margin-top: 12px; color: var(--muted); }
.image-placeholder { display: grid; place-items: center; width: 100%; height: 100%; min-height: 140px; background: var(--soft-dark); }
.placeholder-shape { width: 44%; height: 48%; border: 1px solid var(--line); background: var(--soft); }
.not-found { padding-block: 70px; }
.error-number { display: block; margin: 20px 0 12px; color: var(--muted); font-family: var(--font-heading); font-size: var(--font-size-heading); }
.not-found h1 { font-size: calc(var(--font-size-heading) * .8); }
.not-found p { max-width: 60ch; margin-top: 18px; color: var(--muted); }
@media (max-width: 1390px) {
  .header-inner { gap: 20px; }
  .desktop-nav { gap: 18px; }
  .header-actions { gap: 8px; }
  .header-contact { display: none; }
  .header-search { display: inline-flex; }
}
@media (max-width: 1120px) {
  .container { width: calc(100% - 56px); }
  .desktop-nav { display: none; }
  .js .menu-toggle { display: inline-flex; }
  .noscript-nav { display: flex; flex-wrap: wrap; gap: 12px 24px; padding-bottom: 18px; font-size: var(--font-size-nav); }
  .header-inner { min-height: 78px; }
  .section { padding-block: 58px; }
  .story-grid { gap: 36px; }
  .footer-main { gap: 28px; }
  .collection-toolbar { flex-direction: column; }
  .collection-toolbar .search-form { width: min(480px, 100%); }
  .product-detail { gap: 34px; }
  .detail-content-grid { grid-template-columns: 180px minmax(0,1fr); gap: 34px; }
  .contact-grid { gap: 36px; }
}
@media (max-width: 760px) {
  .container, .article-body-container { width: calc(100% - 36px); }
  .header-inner { min-height: 74px; gap: 12px; }
  .brand { max-width: 46%; font-size: var(--font-size-card); }
  .header-actions { gap: 5px; }
  .header-search { display: none; }
  .language-switch { max-width: 142px; }
  .language-switch summary { gap: 6px; padding-inline: 8px; }
  .language-switch summary > .icon:first-child { display: none; }
  .language-current { max-width: 84px; }
  .menu-toggle { width: 40px; }
  .section { padding-block: 44px; }
  h1 { font-size: calc(var(--font-size-heading) * .82); }
  h2 { font-size: calc(var(--font-size-heading) * .7); }
  .hero-copy h1 { max-width: 22ch; }
  .hero-copy > p { max-width: none; }
  .hero-actions { gap: 18px; margin-top: 24px; }
  .home-category-links { gap: 8px 20px; padding-block: 18px; }
  .home-category-links > span { width: 100%; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; margin-bottom: 26px; }
  .section-heading h2 { margin-top: 8px; }
  .product-grid, .news-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 32px 18px; }
  .product-card-body > p, .news-card-body > p { margin-bottom: 18px; }
  .card-overline { justify-content: start; }
  .story-grid { grid-template-columns: 1fr; gap: 28px; }
  .story-image { aspect-ratio: 1.35; }
  .story-copy h2 { max-width: none; }
  .value-strip { grid-template-columns: 1fr; gap: 28px; padding-block: 34px; }
  .value-strip > div { padding-inline-start: 18px; }
  .value-strip p { margin-top: 9px; }
  .consultation-section { padding-block: 36px; }
  .consultation-inner { display: block; }
  .consultation-inner > .btn { margin-top: 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px 26px; padding-block: 38px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: none; }
  .footer-brand .brand { max-width: 100%; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .breadcrumbs { padding-block: 18px 22px; }
  .page-heading { padding-bottom: 28px; }
  .results-meta { flex-wrap: wrap; gap: 8px; }
  .category-tabs > a { padding: 9px 12px; }
  .product-detail { grid-template-columns: 1fr; gap: 26px; padding-bottom: 40px; }
  .product-main-image { aspect-ratio: 1.15; }
  .product-introduction h1 { font-size: calc(var(--font-size-heading) * .8); }
  .detail-content-grid { grid-template-columns: 1fr; gap: 30px; }
  .detail-side-heading { position: static; }
  .detail-anchor-nav { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 12px; }
  .detail-anchor-nav > a { gap: 12px; }
  .product-quote-strip { display: block; padding: 22px; }
  .product-quote-strip .btn { margin-top: 20px; }
  .specification-table th, .specification-table td { padding: 11px 12px; }
  .article-header h1 { max-width: none; }
  .article-cover { aspect-ratio: 1.5; }
  .article-body-container { padding-top: 28px; padding-bottom: 42px; }
  .article-end { margin-top: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .form-panel { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 17px; }
  .inquiry-dialog { padding: 26px 22px; }
  .inquiry-dialog h2 { margin-top: 12px; font-size: calc(var(--font-size-heading) * .64); }
  .inquiry-dialog .field textarea { min-height: 90px; }
  .search-result { grid-template-columns: 86px minmax(0,1fr); gap: 16px; align-items: start; }
  .search-result > .icon-button { display: none; }
  .search-result p { grid-column: 1 / -1; }
  .image-placeholder { min-height: 80px; }
}
@media (max-width: 540px) {
  .product-grid, .news-grid { grid-template-columns: 1fr; }
  .product-image { aspect-ratio: 1.4; }
  .news-image { aspect-ratio: 1.65; }
  .product-card-body, .news-card-body { padding-top: 17px; }
  .card-overline { justify-content: space-between; }
  .product-card h3, .news-card h3 { font-size: var(--font-size-card); }
  .search-result { grid-template-columns: 1fr; }
  .search-result-image { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
