:root {
  --navy: #12232f;
  --navy-deep: #0a1821;
  --ink: #172126;
  --muted: #667078;
  --ivory: #f8f5ef;
  --sand: #eee8de;
  --paper: #fffdf9;
  --wood: #9b7659;
  --accent: #a64f32;
  --accent-dark: #813a25;
  --line: rgba(20, 34, 43, 0.14);
  --shadow: 0 20px 60px rgba(16, 28, 35, 0.12);
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --header-height: 92px;
  --wrap: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.85; overflow-wrap: anywhere; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d9805e; outline-offset: 4px; }
[hidden] { display: none !important; }

.wrap { width: min(calc(100% - 64px), var(--wrap)); margin-inline: auto; }
.content-narrow { width: min(calc(100% - 64px), 820px); margin-inline: auto; }
.section { padding: clamp(88px, 9vw, 150px) 0; }
.section-sand { background: var(--ivory); }
.section-ink { color: #fff; background: var(--ink); }
.section-navy { color: #fff; background: var(--navy); }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 12px 18px; color: #fff; background: var(--accent); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: var(--header-height); color: #fff; border-bottom: 1px solid rgba(255,255,255,.18); transition: color .32s ease, background-color .32s ease, box-shadow .32s ease, height .32s ease; }
.site-header.is-scrolled, body:not(.is-front-page) .site-header { color: var(--ink); background: rgba(255,253,249,.96); box-shadow: 0 8px 30px rgba(12,24,32,.08); backdrop-filter: blur(12px); }
.admin-bar .site-header { top: 32px; }
.header-inner { display: flex; align-items: stretch; width: min(calc(100% - 48px), 1500px); height: 100%; margin: auto; }
.site-branding { display: flex; align-items: center; flex: 0 0 auto; padding-right: clamp(24px, 3vw, 50px); }
.custom-logo { width: auto; max-width: 220px; max-height: 62px; }
.wordmark { display: flex; align-items: center; gap: 13px; font-family: var(--serif); font-size: 17px; font-weight: 700; line-height: 1.25; letter-spacing: .08em; }
.wordmark small { display: block; margin-bottom: 3px; font-family: var(--sans); font-size: 9px; font-weight: 700; letter-spacing: .2em; opacity: .72; }
.wordmark-logo-frame { position: relative; display: block; width: 52px; height: 52px; flex: 0 0 52px; overflow: hidden; }
.wordmark-logo { position: absolute; top: 50%; left: 50%; width: 80px; height: 80px; max-width: none; object-fit: contain; transform: translate(-50%,-50%); transition: filter .32s ease; }
.site-header:not(.is-scrolled) .wordmark-logo { filter: invert(1); }
body:not(.is-front-page) .site-header .wordmark-logo,
.site-header.is-scrolled .wordmark-logo { filter: none; }
.primary-nav { display: flex; align-items: center; flex: 1; }
.primary-menu { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); height: 100%; margin: 0; padding: 0; list-style: none; }
.primary-menu > li { display: flex; align-items: center; height: 100%; }
.primary-menu a { position: relative; display: flex; align-items: center; min-height: 44px; font-size: 13px; font-weight: 700; letter-spacing: .06em; white-space: nowrap; }
.primary-menu a::after { position: absolute; right: 0; bottom: 5px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.primary-menu a:hover::after, .primary-menu a:focus-visible::after, .primary-menu .current-menu-item > a::after, .primary-menu a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: stretch; margin-left: auto; }
.header-phone { display: flex; flex-direction: column; justify-content: center; padding: 0 22px; }
.header-phone small { font-size: 10px; letter-spacing: .08em; opacity: .72; }
.header-phone strong { font-size: 17px; letter-spacing: .06em; }
.header-contact { display: flex; align-items: center; gap: 18px; padding: 0 24px; color: #fff; background: var(--accent); font-size: 13px; font-weight: 700; transition: background .3s ease; }
.header-contact span { transition: transform .3s ease; }
.header-contact:hover { background: var(--accent-dark); }
.header-contact:hover span { transform: translateX(4px); }
.menu-toggle { display: none; align-items: center; justify-content: center; min-width: 60px; min-height: 60px; border: 0; color: inherit; background: transparent; cursor: pointer; }
.menu-toggle-lines { display: grid; gap: 5px; }
.menu-toggle-lines i { display: block; width: 25px; height: 1px; background: currentColor; transition: transform .3s ease, opacity .3s ease; }
.menu-toggle-label { font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.nav-backdrop { position: fixed; z-index: 998; inset: 0; background: rgba(4,13,19,.48); }

.hero-home { position: relative; display: flex; min-height: min(920px, 100svh); align-items: flex-end; color: #fff; overflow: hidden; background: var(--navy-deep); }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; animation: heroReveal 1.2s ease both; }
.hero-overlay { background: linear-gradient(90deg, rgba(5,17,24,.86) 0%, rgba(5,17,24,.48) 52%, rgba(5,17,24,.15) 100%), linear-gradient(0deg, rgba(5,17,24,.48), transparent 45%); }
.hero-content { position: relative; z-index: 1; padding-bottom: clamp(90px, 12vh, 140px); }
.hero-kicker { margin: 0 0 24px; font-size: 11px; font-weight: 700; letter-spacing: .24em; }
.hero-home h1 { max-width: 780px; margin: 0; font-family: var(--serif); font-size: clamp(45px, 6vw, 88px); font-weight: 600; line-height: 1.35; letter-spacing: .04em; }
.hero-craft-copy { margin: 20px 0 12px; font-family: var(--serif); font-size: clamp(20px, 2.2vw, 31px); font-weight: 600; line-height: 1.55; letter-spacing: .06em; }
.hero-description { max-width: 880px; margin: 0 0 30px; color: rgba(255,255,255,.82); font-size: clamp(12px, 1.12vw, 15px); line-height: 1.9; letter-spacing: .035em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; min-height: 58px; align-items: center; justify-content: center; gap: 28px; padding: 14px 24px; border: 1px solid transparent; font-size: 14px; font-weight: 700; letter-spacing: .06em; transition: transform .3s ease, color .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.button span { transition: transform .3s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(9,20,27,.16); }
.button:hover span { transform: translateX(5px); }
.button-light { color: var(--ink); background: #fff; }
.button-light:hover { color: #fff; background: var(--accent); }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(10,24,33,.18); }
.button-outline-light:hover { color: var(--ink); background: #fff; border-color: #fff; }
.button-dark { color: #fff; background: var(--navy); }
.button-dark:hover { background: var(--accent); }
.button-accent { color: #fff; background: var(--accent); }
.button-accent:hover { background: #fff; color: var(--navy); }
.scroll-cue { position: absolute; z-index: 2; right: clamp(24px, 4vw, 70px); bottom: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; color: #fff; font-size: 9px; letter-spacing: .2em; writing-mode: vertical-rl; }
.scroll-cue i { display: block; width: 1px; height: 70px; background: rgba(255,255,255,.35); overflow: hidden; }
.scroll-cue i::after { display: block; width: 100%; height: 40%; background: #fff; content: ""; animation: scrollLine 2s ease infinite; }

.eyebrow { display: flex; align-items: center; gap: 15px; margin: 0 0 22px; color: var(--wood); font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.eyebrow::before { width: 38px; height: 1px; background: currentColor; content: ""; transform-origin: left; }
.eyebrow-light { color: #d7bfaa; }
.section-heading { margin-bottom: 48px; }
.section-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 58px); font-weight: 600; line-height: 1.48; letter-spacing: .04em; }
.section-heading h2 small { display: block; margin-top: 12px; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.section-heading-light { color: #fff; }
.section-lead { max-width: 640px; margin: 24px 0 0; color: var(--muted); }
.section-ink .section-lead, .section-navy .section-lead { color: rgba(255,255,255,.68); }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.section-heading-row .section-heading { margin-bottom: 0; }
.text-link { position: relative; display: inline-flex; align-items: center; gap: 32px; padding: 8px 0; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.text-link span { transition: transform .3s ease; }
.text-link:hover span { transform: translateX(5px); }
.text-link-light { border-color: #fff; }
.rich-copy, .prose { font-size: 16px; line-height: 2.05; }
.rich-copy p, .prose p { margin: 0 0 1.5em; }
.prose h2 { margin: 2.2em 0 .8em; font-family: var(--serif); font-size: clamp(25px, 3vw, 34px); line-height: 1.5; }
.prose h3 { margin: 1.8em 0 .7em; font-size: 21px; }
.prose ul, .prose ol { padding-left: 1.5em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }

.concept-grid { display: grid; grid-template-columns: minmax(320px, .85fr) minmax(430px, 1fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.concept-media { position: relative; padding: 0 0 44px 44px; }
.concept-media::before { position: absolute; right: 44px; bottom: 0; left: 0; height: 86%; background: var(--sand); content: ""; }
.concept-media img { position: relative; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.vertical-caption { position: absolute; right: -20px; bottom: 70px; color: var(--wood); font-size: 9px; font-weight: 700; letter-spacing: .24em; writing-mode: vertical-rl; }
.concept-copy .rich-copy { max-width: 620px; margin-bottom: 28px; }

.services .section-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; }
.services .section-heading .section-lead { justify-self: end; }
.service-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { min-width: 0; }
.service-card a { display: block; height: 100%; color: #fff; background: #223039; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.service-card a:hover { transform: translateY(-4px); box-shadow: 0 24px 55px rgba(0,0,0,.28); }
.service-image { aspect-ratio: 4 / 3; overflow: hidden; background: #34434b; }
.service-image img { width: 100%; height: 100%; object-fit: cover; opacity: .86; transition: transform .5s ease, opacity .4s ease; }
.service-card a:hover img { transform: scale(1.045); opacity: 1; }
.service-content { position: relative; min-height: 250px; padding: 34px; }
.service-no { color: #c8ab92; font-size: 11px; letter-spacing: .16em; }
.service-card h3 { margin: 16px 0 12px; font-family: var(--serif); font-size: clamp(23px, 2.2vw, 31px); }
.service-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; }
.card-arrow { position: absolute; right: 30px; bottom: 26px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transition: transform .3s ease, color .3s ease, background .3s ease; }
.service-card a:hover .card-arrow, .work-card a:hover .card-arrow { color: var(--ink); background: #fff; transform: translateX(4px); }

.strengths-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 150px); }
.strength-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.strength-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.strength-list > li > span { color: var(--wood); font-size: 11px; letter-spacing: .16em; }
.strength-list h3 { margin: -4px 0 7px; font-family: var(--serif); font-size: 25px; }
.strength-list p { margin: 0; color: var(--muted); font-size: 14px; }

.menu-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.menu-item-card { position: relative; min-height: 310px; padding: 34px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.35); transition: color .3s ease, background .3s ease, transform .3s ease; }
.menu-item-card:hover { z-index: 1; color: #fff; background: var(--navy); transform: translateY(-3px); }
.menu-icon { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: var(--serif); font-size: 23px; }
.menu-item-card h3 { margin: 36px 0 14px; font-family: var(--serif); font-size: 22px; }
.menu-item-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.menu-item-card:hover p { color: rgba(255,255,255,.68); }
.menu-item-card i { position: absolute; right: 24px; bottom: 22px; font-style: normal; transition: transform .3s ease; }
.menu-item-card:hover i { transform: translateX(5px); }

.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work-card { min-width: 0; }
.work-card a { display: block; height: 100%; background: #fff; transition: transform .35s ease, box-shadow .35s ease; }
.work-card a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.work-card-image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ivory); }
.work-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-card a:hover .work-card-image img { transform: scale(1.045); }
.work-card-content { position: relative; min-height: 200px; padding: 28px 70px 28px 28px; }
.work-type { margin: 0 0 10px; color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.work-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 23px; line-height: 1.5; }
.work-card p:not(.work-type) { margin: 0; color: var(--muted); font-size: 13px; }
.work-card .card-arrow { color: var(--ink); border-color: var(--line); }
.work-card a:hover .card-arrow { color: #fff; background: var(--navy); }
.empty-state { display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 44px; padding: clamp(38px, 6vw, 70px); border: 1px solid var(--line); background: var(--ivory); }
.empty-state > span { display: grid; width: 100px; height: 100px; place-items: center; border: 1px solid var(--wood); color: var(--wood); font-family: var(--serif); font-size: 42px; }
.empty-state h2, .empty-state h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(22px, 3vw, 31px); }
.empty-state p { margin: 0 0 16px; color: var(--muted); }

.structure-feature-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.structure-detail { min-height: 520px; background: linear-gradient(135deg, #263a46, #0c1d27); position: relative; overflow: hidden; }
.structure-detail::before, .structure-detail::after { position: absolute; content: ""; inset: 12% 18%; border: 1px solid rgba(255,255,255,.18); transform: rotate(8deg); }
.structure-detail::after { inset: 24% 8%; transform: rotate(-11deg); }
.structure-detail > span { position: absolute; z-index: 2; right: 8%; bottom: 8%; color: rgba(255,255,255,.82); font-size: clamp(26px, 4vw, 48px); font-weight: 800; line-height: 1.12; letter-spacing: .08em; text-align: right; }
.structure-detail img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; opacity: .88; }
.structure-feature h2 { margin: 0 0 26px; font-family: var(--serif); font-size: clamp(36px, 4.2vw, 60px); font-weight: 600; line-height: 1.45; }
.structure-feature p:not(.eyebrow) { margin: 0 0 34px; color: rgba(255,255,255,.72); }

.consultation-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 150px); }
.consultation-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.consultation-list li { display: flex; align-items: center; gap: 34px; min-height: 84px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(19px, 2vw, 25px); }
.consultation-list span { color: var(--wood); font-family: var(--sans); font-size: 10px; letter-spacing: .14em; }

.news-grid-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 10vw, 140px); }
.news-list article { border-top: 1px solid var(--line); }
.news-list article:last-child { border-bottom: 1px solid var(--line); }
.news-list article a { position: relative; display: grid; grid-template-columns: 100px 110px 1fr 30px; align-items: center; gap: 20px; min-height: 100px; transition: color .3s ease, background .3s ease; }
.news-list article a:hover { color: var(--accent); }
.news-list time { font-size: 12px; letter-spacing: .08em; }
.news-category { display: inline-flex; justify-content: center; padding: 4px 8px; color: var(--muted); background: rgba(18,35,47,.06); font-size: 10px; }
.news-list h2, .news-list h3 { margin: 0; font-size: 15px; line-height: 1.7; }
.news-list i { font-style: normal; transition: transform .3s ease; }
.news-list a:hover i { transform: translateX(5px); }
.empty-news { padding: 30px 0; border-block: 1px solid var(--line); color: var(--muted); }

.access-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(55px, 10vw, 145px); }
.company-mini { margin: 0 0 30px; border-top: 1px solid var(--line); }
.company-mini div { display: grid; grid-template-columns: 110px 1fr; padding: 15px 0; border-bottom: 1px solid var(--line); }
.company-mini dt { color: var(--muted); font-size: 12px; }
.company-mini dd { margin: 0; font-size: 14px; }
.map-frame { position: relative; min-height: 460px; background: var(--sand); overflow: hidden; }
.map-frame iframe { display: block; width: 100%; min-height: 460px; border: 0; }
.map-open-link { position: absolute; right: 16px; bottom: 16px; z-index: 2; padding: 11px 15px; color: #fff; background: var(--navy); font-size: 12px; font-weight: 700; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.map-address { display: grid; min-height: 460px; place-content: center; padding: 40px; text-align: center; background-image: linear-gradient(rgba(18,35,47,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(18,35,47,.07) 1px, transparent 1px); background-size: 42px 42px; }
.map-address > span { color: var(--wood); font-size: 11px; font-weight: 800; letter-spacing: .22em; }
.map-address p { font-weight: 700; }
.map-address small { color: var(--accent); }

.contact-cta { padding: clamp(74px, 8vw, 115px) 0; color: #fff; background: var(--navy-deep); }
.contact-cta-grid { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 60px; }
.contact-cta h2 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(34px, 4vw, 54px); line-height: 1.5; }
.contact-cta p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.64); }
.contact-cta-actions { display: grid; gap: 12px; }
.contact-phone { display: flex; min-height: 88px; flex-direction: column; justify-content: center; padding: 14px 26px; border: 1px solid rgba(255,255,255,.35); transition: background .3s ease, transform .3s ease; }
.contact-phone:hover { color: var(--ink); background: #fff; transform: translateY(-2px); }
.contact-phone small { font-size: 11px; }
.contact-phone strong { font-size: clamp(23px, 3vw, 32px); letter-spacing: .07em; }

.site-footer { color: rgba(255,255,255,.74); background: #071118; }
.footer-main { display: grid; grid-template-columns: 1.15fr .85fr 1fr; gap: clamp(45px, 8vw, 110px); padding-top: 80px; padding-bottom: 70px; }
.wordmark-light { color: #fff; }
.wordmark-light .wordmark-logo { filter: invert(1); }
.footer-brand p { margin: 28px 0 0; font-family: var(--serif); line-height: 2; }
.footer-info h2 { margin: 0 0 18px; color: #bba58f; font-size: 10px; letter-spacing: .2em; }
.footer-info address { display: grid; font-style: normal; font-size: 13px; line-height: 1.9; }
.footer-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; margin: 0; padding: 0; list-style: none; }
.footer-menu a { font-size: 12px; transition: color .3s ease; }
.footer-menu a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 23px; padding-bottom: 23px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; letter-spacing: .05em; }
.footer-bottom p { margin: 0; }

.page-hero { position: relative; display: flex; min-height: 470px; align-items: flex-end; padding: calc(var(--header-height) + 75px) 0 70px; color: #fff; background: linear-gradient(115deg, var(--navy-deep), var(--navy)); overflow: hidden; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 6vw, 72px); font-weight: 600; letter-spacing: .04em; }
.page-hero-inner > p:last-child:not(.eyebrow) { margin: 18px 0 0; color: rgba(255,255,255,.68); }
.page-hero-grid { position: absolute; top: 0; right: -7%; width: 48%; height: 100%; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 70px 70px; transform: skewX(-12deg); }
.breadcrumbs { padding-top: 16px; padding-bottom: 16px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 11px; }
.breadcrumbs li + li::before { margin-right: 8px; content: "/"; opacity: .45; }
.breadcrumbs a:hover { color: var(--accent); }
.split-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 10vw, 140px); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-card { min-height: 330px; padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-card > span, .dark-feature-grid > article > span, .structure-columns > article > span { color: var(--wood); font-size: 11px; letter-spacing: .14em; }
.value-card h2 { margin: 60px 0 15px; font-family: var(--serif); font-size: 32px; }
.value-card p { margin: 0; color: var(--muted); font-size: 14px; }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 10vw, 140px); }
.craftspeople-section { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.craftspeople-section::after { position: absolute; top: -25%; right: -7%; width: 48vw; height: 48vw; border: 1px solid rgba(255,255,255,.1); content: ""; transform: rotate(35deg); }
.craftspeople-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 10vw, 140px); }
.craftspeople-copy { max-width: 680px; }
.craftspeople-copy p { color: rgba(255,255,255,.76); }
.dark-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.12); }
.dark-feature-grid article { min-height: 310px; padding: 38px; background: var(--ink); }
.dark-feature-grid h3 { margin: 55px 0 14px; font-family: var(--serif); font-size: 27px; }
.dark-feature-grid p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }
.section-note { max-width: 420px; margin: 0; color: var(--muted); font-size: 13px; }
.flow-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.flow-list li { min-height: 300px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.flow-list > li > span { color: var(--wood); font-size: 11px; }
.flow-list h3 { margin: 65px 0 12px; font-family: var(--serif); font-size: 23px; }
.flow-list p { margin: 0; color: var(--muted); font-size: 13px; }
.reform-detail-list { border-top: 1px solid var(--line); }
.reform-detail { display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.reform-detail > span { color: var(--wood); font-size: 11px; }
.reform-detail h2 { margin: -8px 0 10px; font-family: var(--serif); font-size: 29px; }
.reform-detail p { margin: 0; color: var(--muted); }
.structure-info-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 10vw, 140px); }
.structure-info-grid h2 { margin: 0; font-family: var(--serif); font-size: clamp(35px, 4vw, 53px); line-height: 1.5; }
.structure-info-card { padding: 42px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.structure-info-card p { margin-top: 0; }
.structure-info-card small { display: block; margin-top: 30px; color: rgba(255,255,255,.5); }
.structure-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
.structure-columns article { border-top: 1px solid var(--line); padding-top: 28px; }
.structure-columns h2 { margin: 38px 0 12px; font-family: var(--serif); font-size: 28px; }
.structure-columns p { margin: 0; color: var(--muted); }
.company-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 10vw, 140px); }
.company-table { margin: 0; border-top: 1px solid var(--line); }
.company-table > div { display: grid; grid-template-columns: 150px 1fr; padding: 21px 0; border-bottom: 1px solid var(--line); }
.company-table dt { color: var(--muted); font-size: 12px; }
.company-table dd { margin: 0; }
.company-address { display: grid; margin-top: 26px; font-style: normal; }
.company-address strong { margin-bottom: 12px; font-family: var(--serif); font-size: 23px; }
.faq-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(50px, 9vw, 120px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: grid; grid-template-columns: 46px 1fr 26px; align-items: center; gap: 18px; min-height: 104px; padding: 20px 0; cursor: pointer; font-family: var(--serif); font-size: 20px; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-mark { color: var(--accent); font-family: var(--serif); font-size: 25px; }
.faq-item summary i { position: relative; width: 20px; height: 20px; }
.faq-item summary i::before, .faq-item summary i::after { position: absolute; top: 50%; left: 0; width: 20px; height: 1px; background: var(--ink); content: ""; transition: transform .3s ease; }
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 0 46px 32px 0; color: var(--muted); }
.faq-answer p:first-child { margin-top: 0; }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 9vw, 120px); }
.contact-method { margin-top: 38px; padding: 30px; color: #fff; background: var(--navy); }
.contact-method p { margin: 0; font-size: 11px; }
.contact-method a { display: block; font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: .06em; }
.contact-method small { display: block; color: rgba(255,255,255,.65); }
.contact-form-shell { padding: clamp(32px, 5vw, 58px); border: 1px solid var(--line); background: var(--ivory); }
.contact-form-shell h2 { margin: 0 0 32px; font-family: var(--serif); font-size: 30px; }
.takumi-contact-form { display: grid; gap: 26px; }
.takumi-form-row { display: grid; gap: 9px; }
.takumi-form-row > label { display: grid; gap: 9px; font-size: 14px; font-weight: 700; }
.takumi-form-row fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.takumi-form-row legend { margin-bottom: 10px; font-size: 14px; font-weight: 700; }
.required, .optional { display: inline-flex; min-height: 22px; align-items: center; margin-left: 8px; padding: 1px 7px; font-size: 10px; font-weight: 700; line-height: 1.4; vertical-align: middle; }
.required { color: #fff; background: var(--accent); }
.optional { color: #fff; background: #737d83; }
.contact-form-shell input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), .contact-form-shell textarea, .contact-form-shell select { width: 100%; min-height: 56px; padding: 12px 14px; border: 1px solid #929da3; border-radius: 0; color: var(--ink); background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form-shell textarea { min-height: 210px; resize: vertical; }
.contact-form-shell input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):focus, .contact-form-shell textarea:focus, .contact-form-shell select:focus { border-color: var(--accent); outline: 3px solid rgba(166,79,50,.2); outline-offset: 1px; box-shadow: 0 0 0 1px var(--accent); }
.contact-form-shell input[type="checkbox"], .contact-form-shell input[type="radio"] { width: 20px; height: 20px; flex: 0 0 20px; accent-color: var(--accent); }
.contact-form-shell .wpcf7-radio { display: grid; gap: 10px; }
.contact-form-shell .wpcf7-list-item { margin: 0; }
.contact-form-shell .wpcf7-list-item label { display: inline-flex; align-items: flex-start; gap: 9px; cursor: pointer; font-weight: 400; }
.takumi-form-consent .wpcf7-list-item label { line-height: 1.75; }
.takumi-form-consent a { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.takumi-form-note { margin: 0; padding: 13px 16px; border-left: 3px solid var(--wood); color: var(--muted); background: #fff; font-size: 12px; }
.takumi-form-submit { display: grid; gap: 12px; }
.contact-form-shell input[type="submit"] { width: 100%; min-height: 64px; padding: 15px 30px; border: 1px solid var(--accent); border-radius: 0; color: #fff; background: var(--accent); font-weight: 700; letter-spacing: .06em; cursor: pointer; transition: color .25s ease, background .25s ease, transform .25s ease; }
.contact-form-shell input[type="submit"]:hover { color: var(--accent); background: #fff; transform: translateY(-2px); }
.contact-form-shell input[type="submit"]:focus-visible { outline: 3px solid rgba(166,79,50,.35); outline-offset: 3px; }
.contact-form-shell .wpcf7-not-valid { border-color: #a22929 !important; box-shadow: 0 0 0 1px #a22929; }
.contact-form-shell .wpcf7-not-valid-tip { display: block; margin-top: 6px; color: #8b1f1f; font-size: 12px; font-weight: 700; }
.contact-form-shell .wpcf7-response-output { margin: 24px 0 0 !important; padding: 16px 18px !important; border-width: 2px !important; font-size: 13px; }
.contact-form-shell .wpcf7-spinner { margin: 10px auto 0; }
.takumi-native-options { display: grid; gap: 10px; }
.takumi-native-options label, .takumi-native-consent { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; line-height: 1.75; }
.takumi-native-consent a { color: var(--accent); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.takumi-native-submit { width: 100%; min-height: 64px; padding: 15px 30px; border: 1px solid var(--accent); color: #fff; background: var(--accent); font-weight: 700; letter-spacing: .06em; cursor: pointer; }
.takumi-native-submit:hover { color: var(--accent); background: #fff; }
.takumi-form-status { padding: 15px 18px; border-left: 4px solid var(--wood); background: #fff; }
.takumi-form-status.is-success { border-color: #3f7654; }
.takumi-form-status.is-error { border-color: #a22929; }
.takumi-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-unavailable { padding: clamp(24px, 4vw, 36px); border-left: 4px solid var(--accent); background: #fff; }
.form-unavailable > p { margin: 0 0 16px; }
.form-unavailable > p strong { font-family: var(--serif); font-size: clamp(21px, 3vw, 27px); }
.fallback-phone { display: grid; margin-top: 24px; padding: 18px 22px; color: #fff; background: var(--navy); transition: background .25s ease, transform .25s ease; }
.fallback-phone:hover { background: var(--accent); transform: translateY(-2px); }
.fallback-phone small { font-size: 11px; }
.fallback-phone span { font-size: clamp(24px, 3vw, 31px); font-weight: 700; letter-spacing: .06em; }
.fallback-hours { margin: 10px 0 0 !important; color: var(--muted); font-size: 12px; }
.admin-form-guide { margin-top: 28px; padding: 16px 18px; border: 1px dashed var(--accent); color: var(--ink); background: #fff8f4; font-size: 12px; }
.admin-form-guide p { margin: 5px 0 0; }
.contact-notes { display: grid; grid-template-columns: .6fr 1.4fr; gap: 60px; }
.contact-notes h2 { margin: 0; font-family: var(--serif); font-size: 30px; }
.contact-notes ul { margin: 0; padding-left: 1.4em; }
.policy-note { margin-bottom: 50px; padding: 20px 24px; border-left: 4px solid var(--accent); background: var(--ivory); font-size: 13px; }
.policy-note p { margin: 0; }
.policy-date { margin-top: 55px; color: var(--muted); font-size: 12px; }
.works-intro { margin-bottom: 60px; }
.works-grid-list { margin-bottom: 60px; }
.navigation.pagination { margin-top: 50px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.page-numbers { display: grid; min-width: 44px; min-height: 44px; place-items: center; border: 1px solid var(--line); }
.page-numbers.current, .page-numbers:hover { color: #fff; background: var(--navy); }

.work-single-hero, .post-hero { padding: calc(var(--header-height) + 90px) 0 70px; background: var(--ivory); }
.work-single-hero h1, .post-hero h1 { max-width: 950px; margin: 12px 0 0; font-family: var(--serif); font-size: clamp(36px, 5vw, 60px); line-height: 1.45; }
.post-meta { display: flex; gap: 20px; color: var(--muted); font-size: 12px; }
.work-main-image, .post-thumbnail { margin: 0 0 60px; }
.work-main-image img, .post-thumbnail img { width: 100%; }
.work-summary-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(50px, 9vw, 110px); }
.work-summary-lead { font-family: var(--serif); font-size: 24px; font-weight: 700; }
.work-data { margin: 0; border-top: 1px solid var(--line); }
.work-data div { display: grid; grid-template-columns: 95px 1fr; padding: 16px 0; border-bottom: 1px solid var(--line); }
.work-data dt { color: var(--muted); font-size: 12px; }
.work-data dd { margin: 0; }
.before-after, .work-gallery { margin-top: 100px; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison-grid figure, .gallery-grid figure { position: relative; margin: 0; overflow: hidden; }
.comparison-grid figure > span { position: absolute; z-index: 1; top: 0; left: 0; padding: 7px 14px; color: #fff; background: var(--navy); font-size: 10px; letter-spacing: .12em; }
.comparison-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.back-link { margin-top: 70px; }
.news-list-archive article a { grid-template-columns: 110px 120px 1fr 30px; }
.news-list-archive h2 { font-size: 17px; }
.empty-links, .error-links { display: flex; flex-wrap: wrap; gap: 16px 28px; }
.error-page { min-height: 80vh; padding: calc(var(--header-height) + 90px) 0 100px; background: var(--ivory); }
.error-inner { position: relative; }
.error-code { position: absolute; z-index: 0; top: -110px; right: 0; margin: 0; color: rgba(18,35,47,.05); font-family: var(--serif); font-size: clamp(180px, 30vw, 420px); line-height: 1; }
.error-inner > *:not(.error-code) { position: relative; z-index: 1; }
.error-inner h1 { margin: 0 0 26px; font-family: var(--serif); font-size: clamp(38px, 6vw, 70px); line-height: 1.45; }
.error-inner > p:not(.error-code):not(.eyebrow) { max-width: 650px; margin-bottom: 40px; }
.admin-image-placeholder { display: grid; width: 100%; height: 100%; min-height: 240px; place-items: center; color: var(--accent); background: repeating-linear-gradient(-45deg, #f1ece4, #f1ece4 10px, #f8f5ef 10px, #f8f5ef 20px); font-size: 12px; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease var(--reveal-delay, 0ms), transform .7s ease var(--reveal-delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@keyframes heroReveal { from { opacity: .65; transform: scale(1.035); } to { opacity: 1; transform: scale(1); } }
@keyframes scrollLine { 0% { transform: translateY(-120%); } 100% { transform: translateY(280%); } }

@media (max-width: 1270px) {
  .header-phone { display: none; }
  .primary-menu { gap: 18px; }
  .primary-menu a { font-size: 12px; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1099px) {
  :root { --header-height: 76px; }
  .header-inner { width: min(calc(100% - 32px), 1500px); }
  .header-actions { margin-left: auto; }
  .header-contact { display: none; }
  .menu-toggle { display: flex; flex-direction: column; gap: 6px; }
  .primary-nav { position: fixed; z-index: 999; top: 0; right: 0; display: block; width: min(88vw, 430px); height: 100svh; padding: 110px 42px 42px; color: #fff; background: var(--navy-deep); overflow-y: auto; transform: translateX(105%); visibility: hidden; transition: transform .35s ease, visibility .35s ease; }
  .admin-bar .primary-nav { top: 32px; height: calc(100svh - 32px); }
  .primary-nav.is-open { transform: none; visibility: visible; }
  .primary-menu { display: block; height: auto; }
  .primary-menu > li { height: auto; border-bottom: 1px solid rgba(255,255,255,.14); }
  .primary-menu a { min-height: 62px; font-size: 15px; }
  .primary-menu a::after { bottom: -1px; }
  .menu-toggle[aria-expanded="true"] { position: relative; z-index: 1001; color: #fff; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-lines i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .service-list { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: span 2; }
  .service-card:last-child a { display: grid; grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .flow-list { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .primary-nav { top: 46px; height: calc(100svh - 46px); }
}

@media (max-width: 767px) {
  .wrap, .content-narrow { width: min(calc(100% - 40px), var(--wrap)); }
  .section { padding: 78px 0; }
  .wordmark { font-size: 14px; }
  .wordmark-logo-frame { width: 44px; height: 44px; flex-basis: 44px; }
  .wordmark-logo { width: 69px; height: 69px; }
  .hero-home { min-height: 760px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(5,17,24,.85) 0%, rgba(5,17,24,.36) 100%); }
  .hero-content { padding-bottom: 90px; }
  .hero-home h1 { font-size: clamp(39px, 11vw, 56px); }
  .hero-actions { display: grid; max-width: 360px; }
  .button { width: 100%; }
  .scroll-cue { display: none; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2 { font-size: clamp(31px, 9vw, 43px); }
  .section-heading-row { display: block; }
  .section-heading-row .text-link { margin-top: 24px; }
  .concept-grid, .strengths-grid, .consultation-grid, .news-grid-layout, .access-grid, .contact-cta-grid, .split-intro, .process-grid, .craftspeople-grid, .structure-info-grid, .company-grid, .faq-layout, .contact-layout, .contact-notes, .work-summary-grid { grid-template-columns: 1fr; gap: 48px; }
  .concept-media { padding: 0 0 28px 26px; }
  .vertical-caption { right: -10px; }
  .services .section-heading { display: block; }
  .services .section-heading .section-lead { margin-top: 20px; }
  .service-list, .works-grid, .values-grid, .dark-feature-grid, .structure-columns, .gallery-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; }
  .service-card:last-child a { display: block; }
  .service-content { min-height: 220px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item-card { min-height: 250px; }
  .empty-state { grid-template-columns: 1fr; gap: 26px; }
  .empty-state > span { width: 72px; height: 72px; font-size: 32px; }
  .structure-feature-grid { grid-template-columns: 1fr; }
  .structure-detail, .structure-detail img { min-height: 330px; }
  .news-list article a, .news-list-archive article a { grid-template-columns: 90px 1fr 28px; gap: 12px; padding: 18px 0; }
  .news-category { grid-column: 2; grid-row: 1; justify-self: start; }
  .news-list h2, .news-list h3 { grid-column: 1 / 3; }
  .news-list i { grid-column: 3; grid-row: 1 / 3; }
  .map-frame, .map-address, .map-frame iframe { min-height: 360px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { grid-column: auto; }
  .footer-menu { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { min-height: 380px; padding-bottom: 54px; }
  .page-hero-grid { width: 70%; }
  .value-card { min-height: auto; }
  .value-card h2 { margin-top: 30px; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li { min-height: auto; }
  .flow-list h3 { margin-top: 30px; }
  .reform-detail { grid-template-columns: 60px 1fr; }
  .company-table > div { grid-template-columns: 105px 1fr; gap: 14px; }
  .faq-item summary { grid-template-columns: 36px 1fr 22px; font-size: 18px; }
  .faq-answer { grid-template-columns: 36px 1fr; padding-right: 0; }
  .comparison-grid { grid-template-columns: 1fr; }
  .work-main-image { margin-bottom: 42px; }
  .error-code { top: -70px; }
}

@media (max-width: 480px) {
  .header-inner { width: calc(100% - 20px); }
  .site-branding { padding-right: 8px; }
  .wordmark small { display: none; }
  .primary-nav { width: 92vw; padding: 95px 28px 36px; }
  .hero-kicker { font-size: 9px; }
  .hero-home h1 { letter-spacing: .01em; }
  .company-mini div { grid-template-columns: 84px 1fr; }
  .footer-menu { grid-template-columns: 1fr; }
  .contact-form-shell { padding: 28px 20px; }
  .company-table > div { display: block; }
  .company-table dt { margin-bottom: 6px; }
  .reform-detail { grid-template-columns: 42px 1fr; gap: 12px; }
}

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

/* Reform page renewal */
.reform-scroll-target { scroll-margin-top: calc(var(--header-height) + 78px); }
.reform-anchor-nav { position: sticky; z-index: 90; top: var(--header-height); border-bottom: 1px solid var(--line); background: rgba(255,253,249,.97); box-shadow: 0 8px 28px rgba(12,24,32,.06); backdrop-filter: blur(12px); }
.admin-bar .reform-anchor-nav { top: calc(var(--header-height) + 32px); }
.reform-anchor-nav-inner { display: grid; grid-template-columns: repeat(6, 1fr); }
.reform-anchor-nav a { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 16px; border-left: 1px solid var(--line); font-size: 11px; font-weight: 700; line-height: 1.45; transition: color .25s ease, background .25s ease; }
.reform-anchor-nav a:last-child { border-right: 1px solid var(--line); }
.reform-anchor-nav a span { color: var(--wood); transition: transform .25s ease; }
.reform-anchor-nav a:hover { color: var(--accent); background: var(--ivory); }
.reform-anchor-nav a:hover span { transform: translateY(4px); }
.reform-intro-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(55px, 10vw, 150px); align-items: start; }
.reform-intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 66px); font-weight: 600; line-height: 1.48; letter-spacing: .04em; }
.reform-intro-copy { position: relative; padding-top: 12px; }
.reform-intro-copy > p:not(.reform-intro-note) { margin-bottom: 1.2em; }
.reform-intro-note { margin-top: 30px !important; padding: 18px 20px; border-left: 3px solid var(--accent); color: var(--muted); background: var(--ivory); font-size: 13px; line-height: 1.8; }
.reform-heading-row { align-items: start; }
.reform-heading-row .section-note { max-width: 400px; margin: 8px 0 0; padding: 18px 20px; border-left: 2px solid var(--wood); color: var(--muted); background: rgba(255,255,255,.52); font-size: 13px; line-height: 1.8; }
.reform-concern-list { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.reform-concern-list li { display: grid; grid-template-columns: 48px 1fr; min-height: 94px; align-items: center; gap: 18px; padding: 20px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.48); font-family: var(--serif); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; transition: background .25s ease; }
.reform-concern-list li:hover { background: #fff; }
.reform-concern-list li > span { color: var(--wood); font-family: var(--sans); font-size: 10px; letter-spacing: .15em; }
.reform-menu-heading { padding-bottom: clamp(55px, 7vw, 90px); }
.reform-editorial-list { border-top: 1px solid var(--line); }
.reform-editorial { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr); min-height: 720px; border-bottom: 1px solid var(--line); }
.reform-editorial:nth-child(even) { grid-template-columns: minmax(430px, .96fr) minmax(0, 1.04fr); }
.reform-editorial:nth-child(even) .reform-editorial-visual { order: 2; }
.reform-editorial-visual { min-width: 0; overflow: hidden; background: var(--sand); }
.reform-photo-wrap { position: relative; width: 100%; height: 100%; min-height: 720px; overflow: hidden; }
.reform-photo { width: 100%; height: 100%; min-height: 720px; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.reform-editorial:hover .reform-photo { transform: scale(1.03); }
.reform-photo-label { position: absolute; right: 24px; bottom: 24px; padding: 10px 14px; color: #fff; background: rgba(9,24,33,.76); font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.reform-editorial-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(54px, 7vw, 105px); background: var(--paper); }
.reform-category-number { display: flex; align-items: center; gap: 20px; margin: 0 0 25px; color: var(--wood); font-size: 11px; letter-spacing: .15em; }
.reform-category-number span { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.reform-editorial-copy h3 { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(32px, 3.7vw, 50px); font-weight: 600; line-height: 1.4; }
.reform-category-description { margin: 0; color: var(--muted); font-size: 15px; line-height: 2; }
.reform-scope { margin-top: 34px; padding: 24px 26px; border: 1px solid var(--line); background: var(--ivory); transition: background .25s ease, border-color .25s ease; }
.reform-editorial:hover .reform-scope { border-color: rgba(155,118,89,.35); background: #f2ece2; }
.reform-scope > p { margin: 0 0 15px; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.reform-scope ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; margin: 0; padding: 0; list-style: none; }
.reform-scope li { position: relative; padding-left: 22px; font-size: 13px; line-height: 1.6; }
.reform-scope li::before { position: absolute; top: .58em; left: 0; width: 10px; height: 5px; border-bottom: 1.5px solid var(--accent); border-left: 1.5px solid var(--accent); content: ""; transform: rotate(-45deg); }
.reform-scope-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.reform-blueprint { position: relative; min-height: 720px; height: 100%; overflow: hidden; color: #3c3834; background-color: #e9dfd0; background-image: linear-gradient(rgba(71,61,51,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(71,61,51,.08) 1px, transparent 1px); background-size: 42px 42px; }
.blueprint-house { position: absolute; inset: 16% 11% 17%; border-right: 3px solid currentColor; border-bottom: 3px solid currentColor; border-left: 3px solid currentColor; }
.blueprint-roof { position: absolute; top: -18%; left: -6%; width: 111%; height: 42%; border-top: 4px solid currentColor; border-left: 4px solid currentColor; transform: skewY(-18deg); transform-origin: left bottom; }
.blueprint-wall { position: absolute; inset: 5% 6% 8%; border: 1px solid rgba(60,56,52,.45); background: repeating-linear-gradient(90deg, transparent 0 58px, rgba(60,56,52,.14) 58px 60px); }
.blueprint-door { position: absolute; right: 11%; bottom: 0; width: 22%; height: 42%; border: 3px solid currentColor; border-bottom: 0; }
.blueprint-window { position: absolute; top: 25%; left: 12%; width: 28%; height: 25%; border: 3px solid currentColor; background: linear-gradient(90deg, transparent 48%, currentColor 49% 51%, transparent 52%), linear-gradient(transparent 48%, currentColor 49% 51%, transparent 52%); }
.blueprint-balcony { position: absolute; right: 5%; top: 16%; width: 42%; height: 23%; border: 3px solid currentColor; background: repeating-linear-gradient(90deg, transparent 0 24px, currentColor 25px 27px); }
.blueprint-roller { position: absolute; left: 16%; bottom: 10%; width: 40%; height: 10px; border: 3px solid currentColor; transform: rotate(-11deg); }
.blueprint-roller::after { position: absolute; right: -12px; top: 6px; width: 3px; height: 95px; background: currentColor; content: ""; transform: rotate(-24deg); transform-origin: top; }
.blueprint-caption { position: absolute; right: 6%; bottom: 6%; font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.reform-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 55px; background: rgba(255,255,255,.14); }
.reform-feature-grid article { min-width: 0; min-height: 0; padding: clamp(38px, 4vw, 58px); border-top: 1px solid rgba(215,191,170,.32); background: var(--ink); }
.reform-feature-grid article > span { display: block; margin-top: 0; color: #d7bfaa; font-size: 10px; letter-spacing: .15em; }
.reform-feature-grid h3 { margin: 17px 0 16px; font-family: var(--serif); font-size: clamp(23px, 2.3vw, 31px); font-weight: 600; line-height: 1.6; }
.reform-feature-grid p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; }
.reform-feature-diagram { position: relative; height: 210px; border: 1px solid rgba(215,191,170,.38); color: #d7bfaa; background: repeating-linear-gradient(0deg, transparent 0 34px, rgba(215,191,170,.07) 34px 35px), repeating-linear-gradient(90deg, transparent 0 34px, rgba(215,191,170,.07) 34px 35px); overflow: hidden; }
.reform-feature-diagram--local i { position: absolute; left: 20%; bottom: 22%; width: 60%; height: 42%; border: 2px solid currentColor; }
.reform-feature-diagram--local i::before { position: absolute; top: -46%; left: -8%; width: 112%; height: 65%; border-top: 2px solid currentColor; border-left: 2px solid currentColor; content: ""; transform: skewY(-23deg); }
.reform-feature-diagram--local span { position: absolute; right: 9%; bottom: 8%; font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.reform-feature-diagram--craft i { position: absolute; top: 18%; left: 18%; width: 36%; height: 65%; border: 2px solid currentColor; transform: rotate(14deg); }
.reform-feature-diagram--craft i::after { position: absolute; right: -55%; bottom: -3px; width: 55%; height: 34%; border: 2px solid currentColor; content: ""; }
.reform-feature-diagram--craft b { position: absolute; top: 16%; right: 21%; width: 3px; height: 70%; background: currentColor; transform: rotate(42deg); }
.reform-feature-diagram--craft b::after { position: absolute; top: -18px; left: -10px; width: 22px; height: 36px; border: 2px solid currentColor; content: ""; }
.reform-feature-diagram--plan i { position: absolute; inset: 17% 15%; border: 2px solid currentColor; }
.reform-feature-diagram--plan i::before { position: absolute; top: 0; bottom: 38%; left: 43%; width: 2px; background: currentColor; content: ""; }
.reform-feature-diagram--plan i::after { position: absolute; right: 0; bottom: 38%; left: 43%; height: 2px; background: currentColor; content: ""; }
.reform-feature-diagram--plan b { position: absolute; right: 16%; bottom: 19%; width: 31%; height: 34%; border: 2px dashed currentColor; }
.reform-feature-diagram--plan em { position: absolute; right: 9%; bottom: 8%; font-size: 9px; font-style: normal; letter-spacing: .15em; }
.reform-flow-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; counter-reset: reform-step; }
.reform-flow-list li { position: relative; display: grid; grid-template-columns: 76px 1fr; min-height: 200px; gap: 22px; padding: 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: background .25s ease; }
.reform-flow-list li:hover { background: var(--ivory); }
.reform-flow-list li > span { display: flex; width: 62px; height: 62px; align-items: center; justify-content: center; border-top: 1px solid var(--wood); border-bottom: 1px solid var(--wood); color: var(--wood); font-size: 11px; letter-spacing: .14em; }
.reform-flow-list h3 { margin: -5px 0 10px; font-family: var(--serif); font-size: 22px; }
.reform-flow-list p { margin: 0; color: var(--muted); font-size: 13px; }
.reform-work-location { margin-bottom: 7px !important; color: var(--wood) !important; font-size: 11px !important; }
.reform-contact { padding: clamp(80px, 9vw, 135px) 0; color: #fff; background: var(--navy-deep); }
.reform-contact-grid { display: grid; grid-template-columns: 1fr .65fr; align-items: center; gap: clamp(50px, 9vw, 130px); }
.reform-contact h2 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(36px, 4.6vw, 62px); font-weight: 600; line-height: 1.5; }
.reform-contact p:not(.eyebrow) { max-width: 720px; margin: 0; color: rgba(255,255,255,.68); }
.reform-contact-button { min-height: 86px; padding-inline: 32px; }
.reform-contact-button span { transition: transform .25s ease; }
.reform-contact-button:hover span { transform: translateX(6px); }

@media (max-width: 1099px) {
  .reform-anchor-nav { top: 76px; }
  .admin-bar .reform-anchor-nav { top: 108px; }
  .reform-anchor-nav-inner { width: 100%; overflow-x: auto; }
  .reform-anchor-nav a { min-width: 155px; }
  .reform-editorial, .reform-editorial:nth-child(even) { grid-template-columns: 1fr 1fr; min-height: 650px; }
  .reform-photo-wrap, .reform-photo, .reform-blueprint { min-height: 650px; }
  .reform-editorial-copy { padding: 52px 42px; }
  .reform-scope ul { grid-template-columns: 1fr; }
  .reform-feature-grid article { padding: 26px; }
}

@media (max-width: 767px) {
  .reform-scroll-target { scroll-margin-top: 136px; }
  .reform-anchor-nav { top: 70px; }
  .admin-bar .reform-anchor-nav { top: 116px; }
  .reform-anchor-nav a { min-width: 145px; min-height: 56px; padding: 8px 13px; font-size: 10px; }
  .reform-intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .reform-intro h2 { font-size: 38px; }
  .reform-heading-row { display: grid; gap: 22px; }
  .reform-heading-row .section-note { max-width: none; margin: 0; }
  .reform-concern-list { grid-template-columns: 1fr; }
  .reform-concern-list li { grid-template-columns: 38px 1fr; min-height: 82px; padding: 17px 18px; }
  .reform-menu-heading { padding-bottom: 48px; }
  .reform-editorial, .reform-editorial:nth-child(even) { display: flex; min-height: 0; flex-direction: column; }
  .reform-editorial:nth-child(even) .reform-editorial-visual { order: 0; }
  .reform-editorial-visual { order: 0; }
  .reform-editorial-copy { order: 1; padding: 42px 24px 56px; }
  .reform-photo-wrap, .reform-photo, .reform-blueprint { min-height: 390px; height: 390px; }
  .reform-editorial-copy h3 { font-size: 34px; }
  .reform-scope { padding: 20px; }
  .reform-feature-grid { grid-template-columns: 1fr; }
  .reform-feature-grid article { min-height: auto; padding: 28px; }
  .reform-feature-diagram { height: 190px; }
  .reform-flow-list { grid-template-columns: 1fr; }
  .reform-flow-list li { grid-template-columns: 56px 1fr; min-height: 0; gap: 16px; padding: 26px 20px; }
  .reform-flow-list li > span { width: 50px; height: 50px; }
  .reform-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .reform-contact h2 { font-size: 38px; }
  .reform-contact-button { width: 100%; min-height: 70px; }
}

@media (max-width: 374px) {
  .reform-editorial-copy { padding-inline: 18px; }
  .reform-scope { padding-inline: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .reform-photo, .reform-anchor-nav a span, .reform-contact-button span { transition: none; }
  .reform-editorial:hover .reform-photo { transform: none; }
}
