:root {
  --ink: #17191a;
  --ink-2: #222526;
  --ink-3: #2d3031;
  --paper: #f4f1ea;
  --white: #fbfaf6;
  --concrete: #d8d8d4;
  --muted: #666966;
  --line: rgba(23, 25, 26, .18);
  --line-light: rgba(255, 255, 255, .2);
  --copper: #a85b3d;
  --copper-light: #c88161;
  --silver: #aab0b2;
  --shell: 1360px;
  --sans: "Noto Sans JP", "Zen Kaku Gothic New", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --latin: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; text-underline-offset: .22em; }
button { color: inherit; font: inherit; }
::selection { background: var(--copper); color: #fff; }

.shell { width: min(calc(100% - 80px), var(--shell)); margin-inline: auto; }
.shell-wide { width: min(calc(100% - 40px), 1560px); margin-inline: auto; }
.section { padding: clamp(100px, 10vw, 170px) 0; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; transform: translateY(-180%); padding: 10px 16px; background: #fff; color: #111; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.eyebrow { margin: 0 0 26px; color: var(--copper); font-family: var(--latin); font-size: 11px; font-weight: 800; letter-spacing: .24em; line-height: 1.5; text-transform: uppercase; }
.eyebrow span { color: inherit; }
.section-heading h2,
.editorial-heading h2,
.symptom-copy h2,
.area-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.45;
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Header */
.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; color: #fff; transition: color .35s ease, background .35s ease, box-shadow .35s ease, transform .35s ease; }
.site-header.is-scrolled { background: rgba(248, 247, 242, .95); color: var(--ink); box-shadow: 0 16px 50px rgba(0, 0, 0, .09); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.header-inner { display: flex; min-height: 100px; align-items: center; gap: 34px; transition: min-height .35s ease; }
.is-scrolled .header-inner { min-height: 72px; }
.brand { display: inline-flex; align-items: stretch; gap: 15px; color: inherit; text-decoration: none; }
.brand-rule { width: 4px; background: var(--copper); transform: skew(-9deg); }
.brand-copy { display: grid; gap: 3px; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: .14em; }
.brand-copy small { font-family: var(--latin); font-size: 8px; font-weight: 700; letter-spacing: .16em; opacity: .72; }
.global-nav { display: flex; align-items: center; gap: clamp(15px, 1.55vw, 28px); margin-left: auto; }
.global-nav a { position: relative; padding: 12px 0; font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.global-nav a::after { position: absolute; right: 0; bottom: 6px; left: 0; height: 1px; background: var(--copper); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.global-nav a:hover::after, .global-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-phone { display: grid; min-width: 170px; padding-left: 20px; border-left: 1px solid currentColor; color: inherit; line-height: 1.2; text-decoration: none; }
.header-phone span { font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.header-phone strong { margin-top: 5px; font-family: var(--latin); font-size: 17px; letter-spacing: .03em; }
.nav-toggle { display: none; }

/* Hero */
.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--ink); color: #fff; }
.hero-media, .hero-overlay, .hero-grid { position: absolute; inset: 0; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; animation: heroScale 18s ease-out both; }
.hero-overlay { background: linear-gradient(90deg, rgba(11,13,14,.95) 0%, rgba(11,13,14,.80) 37%, rgba(11,13,14,.25) 69%, rgba(11,13,14,.10) 100%), linear-gradient(0deg, rgba(11,13,14,.72), transparent 42%); }
.hero-grid { opacity: .26; background-image: linear-gradient(90deg, transparent calc(25% - .5px), rgba(255,255,255,.22) 25%, transparent calc(25% + .5px)), linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.16) 50%, transparent calc(50% + .5px)), linear-gradient(90deg, transparent calc(75% - .5px), rgba(255,255,255,.12) 75%, transparent calc(75% + .5px)); }
.hero-inner { position: relative; display: flex; min-height: 100svh; align-items: center; padding-top: 124px; padding-bottom: 138px; }
.hero-copy { width: min(880px, 70%); }
.hero-eyebrow { color: rgba(255,255,255,.72); }
.hero-eyebrow span { color: var(--copper-light); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(54px, 5.6vw, 88px); font-weight: 500; letter-spacing: -.025em; line-height: 1.25; }
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { font-weight: 600; }
.hero-lead { margin: 32px 0 0; font-size: clamp(16px, 1.45vw, 21px); line-height: 1.9; }
.hero-actions { display: flex; gap: 18px; align-items: stretch; margin-top: 42px; }
.button { display: inline-flex; min-height: 60px; align-items: center; justify-content: center; gap: 25px; padding: 13px 25px; border: 1px solid transparent; font-size: 13px; font-weight: 800; line-height: 1.35; text-decoration: none; transition: color .25s ease, background .25s ease, border .25s ease, transform .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-copper { min-width: 238px; background: var(--copper); color: #fff; }
.button-copper:hover { background: #bd6846; }
.button-copper { display: grid; gap: 1px; }
.button-copper strong { font-family: var(--latin); font-size: 18px; letter-spacing: .04em; }
.button-line { border-color: rgba(255,255,255,.45); background: rgba(0,0,0,.06); color: #fff; }
.button-line:hover { background: #fff; color: var(--ink); }
.hero-tags { position: absolute; right: 0; bottom: 46px; display: flex; gap: 0; margin: 0; padding: 0; list-style: none; }
.hero-tags li { padding: 9px 18px; border-left: 1px solid rgba(255,255,255,.35); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.image-label { position: absolute; right: 18px; bottom: 16px; margin: 0; padding: 4px 8px; background: rgba(17,19,20,.76); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.hero .image-label { right: 0; bottom: 108px; }
.scroll-cue { position: absolute; bottom: 36px; left: 0; display: flex; align-items: center; gap: 14px; color: #fff; font-family: var(--latin); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-decoration: none; }
.scroll-cue i { position: relative; width: 52px; height: 1px; overflow: hidden; background: rgba(255,255,255,.35); }
.scroll-cue i::after { position: absolute; inset: 0; background: #fff; content: ""; animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes heroScale { from { transform: scale(1.055); } to { transform: scale(1); } }
@keyframes scrollLine { from { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }

/* Statement */
.statement { background: var(--white); }
.statement-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr); gap: clamp(70px, 11vw, 170px); align-items: start; }
.statement-copy { padding-top: 70px; }
.statement-copy p { margin: 0 0 26px; color: var(--muted); }
.statement-copy .lead-copy { color: var(--ink); font-family: var(--serif); font-size: clamp(21px, 2.2vw, 31px); line-height: 1.78; }
.signature { display: flex; gap: 25px; align-items: baseline; margin-top: 46px; padding-top: 18px; border-top: 1px solid var(--line); }
.signature span { color: var(--muted); font-size: 11px; }
.signature strong { font-family: var(--serif); font-size: 22px; letter-spacing: .18em; }
.statement-visual { position: relative; margin-top: clamp(80px, 9vw, 140px); }
.statement-visual picture { width: 82%; margin-left: auto; overflow: hidden; }
.statement-visual img { width: 100%; aspect-ratio: 16/8.8; object-fit: cover; object-position: 55% 45%; }
.visual-caption { position: absolute; bottom: 0; left: 0; width: min(500px, 34vw); margin: 0; padding: 35px 42px; background: var(--paper); font-family: var(--serif); font-size: clamp(19px, 2vw, 27px); line-height: 1.65; }

/* Editorial services */
.section-ink { background: var(--ink); color: #fff; }
.editorial-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .55fr); gap: 100px; align-items: end; margin-bottom: 82px; }
.editorial-heading > p { margin: 0 0 10px; color: rgba(255,255,255,.62); }
.quality .editorial-heading > p { color: var(--muted); }
.service-list { border-top: 1px solid var(--line-light); }
.service-row { display: grid; grid-template-columns: 80px minmax(210px, .65fr) 1.55fr; gap: 35px; padding: 42px 0; border-bottom: 1px solid var(--line-light); }
.service-no { color: var(--copper-light); font-family: var(--latin); font-size: 12px; letter-spacing: .12em; }
.service-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(22px, 2.2vw, 31px); font-weight: 600; line-height: 1.5; }
.service-row dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; }
.service-row dt { color: var(--copper-light); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.service-row dd { margin: 6px 0 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.78; }

/* Process */
.quality { background: var(--paper); }
.process-story { display: grid; grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr); column-gap: clamp(70px, 10vw, 150px); align-items: start; }
.process-photo { position: sticky; top: 105px; grid-column: 1; margin: 0; }
.process-photo picture { overflow: hidden; }
.process-photo img { width: 100%; aspect-ratio: 4/4.8; object-fit: cover; }
.process-photo figcaption, .symptom-photo figcaption, .area-photo figcaption { display: flex; gap: 18px; margin-top: 12px; color: var(--muted); font-size: 11px; }
.process-photo figcaption span { color: var(--copper); font-weight: 800; }
.process-list { grid-column: 2; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { display: grid; grid-template-columns: 78px 1fr; gap: 25px; padding: 31px 0 34px; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--copper); font-family: var(--latin); font-size: 14px; letter-spacing: .1em; }
.process-list h3 { margin: 0; font-family: var(--serif); font-size: 25px; font-weight: 600; }
.process-list p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }
.process-photo-b { position: sticky; top: 105px; grid-row: 2; margin-top: 80px; }
.process-photo-b img { object-position: 63% center; }
.process-list-second { grid-row: 2; margin-top: 80px; }

/* Symptoms */
.section-rust { background: #8f4b35; color: #fff; }
.symptom-grid { display: grid; grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr); gap: clamp(60px, 9vw, 135px); align-items: center; }
.symptom-copy .eyebrow { color: rgba(255,255,255,.62); }
.symptom-copy > p:not(.eyebrow) { max-width: 630px; color: rgba(255,255,255,.74); }
.symptom-list { display: grid; grid-template-columns: 1fr 1fr; margin: 42px 0 40px; padding: 0; border-top: 1px solid rgba(255,255,255,.32); list-style: none; }
.symptom-list li { display: grid; gap: 3px; padding: 18px 12px 18px 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.symptom-list li:nth-child(odd) { margin-right: 24px; }
.symptom-list strong { font-family: var(--serif); font-size: 19px; }
.symptom-list span { color: rgba(255,255,255,.62); font-size: 11px; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding: 8px 0; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; text-decoration: none; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.symptom-photo { margin: 0 -10vw 0 0; }
.symptom-photo picture { overflow: hidden; }
.symptom-photo img { width: 100%; min-height: 680px; object-fit: cover; }
.symptom-photo figcaption { color: rgba(255,255,255,.65); }

/* Works */
.works .editorial-heading { margin-bottom: 55px; }
.case-list { border-top: 1px solid var(--line-light); }
.case-empty { display: grid; grid-template-columns: .65fr 1.35fr; gap: 50px; margin: 0; padding: 50px 0 0; }
.case-empty-intro { margin: 0; font-family: var(--serif); font-size: clamp(24px, 2.7vw, 38px); line-height: 1.65; }
.case-empty-detail { color: rgba(255,255,255,.64); }
.case-fields { display: grid; grid-template-columns: repeat(3, 1fr); margin: 36px 0 0; padding: 0; border-top: 1px solid var(--line-light); list-style: none; }
.case-fields li { padding: 14px 8px 14px 0; border-bottom: 1px solid var(--line-light); font-size: 11px; }
.case-card { padding: 55px 0; border-bottom: 1px solid var(--line-light); }
.case-card h3 { font-family: var(--serif); font-size: 30px; }
.case-media { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.case-media figure { position: relative; margin: 0; }
.case-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.case-media figcaption { position: absolute; top: 10px; left: 10px; padding: 3px 8px; background: rgba(0,0,0,.7); font-size: 10px; }
.case-meta { display: grid; grid-template-columns: repeat(4,1fr); margin: 28px 0; }
.case-meta div { padding: 10px 18px; border-left: 1px solid var(--line-light); }
.case-meta dt { color: var(--copper-light); font-size: 10px; }
.case-meta dd { margin: 3px 0 0; font-size: 13px; }

/* Area */
.area { background: var(--white); }
.area-grid { display: grid; grid-template-columns: 1.1fr .7fr; gap: clamp(65px, 10vw, 150px); align-items: center; }
.area-photo { margin: 0 0 0 -8vw; }
.area-photo img { width: 100%; min-height: 650px; object-fit: cover; }
.area-copy > p:not(.eyebrow) { margin-top: 32px; color: var(--muted); }
.area-copy dl { margin: 40px 0 0; border-top: 1px solid var(--line); }
.area-copy dl div { display: grid; grid-template-columns: 100px 1fr; gap: 22px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.area-copy dt { color: var(--copper); font-size: 11px; font-weight: 800; }
.area-copy dd { margin: 0; font-size: 13px; }

/* FAQ */
.section-paper { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(65px, 10vw, 150px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: grid; grid-template-columns: 55px 1fr 32px; gap: 15px; align-items: center; padding: 26px 0; cursor: pointer; font-family: var(--serif); font-size: clamp(17px, 1.6vw, 22px); font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--copper); font-family: var(--latin); font-size: 11px; }
.faq-list summary::after { content: "+"; font-family: var(--latin); font-size: 25px; font-weight: 300; text-align: center; transition: transform .25s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > div { padding: 0 45px 28px 70px; }
.faq-list details p { margin: 0; color: var(--muted); font-size: 14px; }

/* Contact */
.contact { position: relative; min-height: 820px; overflow: hidden; color: #fff; }
.contact-media, .contact-overlay { position: absolute; inset: 0; }
.contact-media picture, .contact-media img { width: 100%; height: 100%; }
.contact-media img { object-fit: cover; object-position: center; }
.contact-overlay { background: linear-gradient(90deg, rgba(17,19,20,.95), rgba(17,19,20,.81) 50%, rgba(17,19,20,.35)); }
.contact-inner { position: relative; display: flex; min-height: 820px; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 100px; padding-bottom: 100px; }
.contact .eyebrow { color: var(--copper-light); }
.contact h2 { font-size: clamp(43px, 5.5vw, 78px); }
.contact-inner > p:not(.eyebrow,.contact-fax,.contact-note) { max-width: 680px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: 17px; }
.contact-phone { display: grid; grid-template-columns: auto auto 40px; gap: 24px; align-items: baseline; margin-top: 52px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.45); border-bottom: 1px solid rgba(255,255,255,.45); text-decoration: none; }
.contact-phone span { font-size: 13px; font-weight: 800; }
.contact-phone strong { font-family: var(--latin); font-size: clamp(32px, 5vw, 64px); letter-spacing: .035em; line-height: 1; }
.contact-phone i { font-size: 24px; font-style: normal; transition: transform .25s ease; }
.contact-phone:hover i { transform: translate(4px,-4px); }
.contact-fax { margin: 22px 0 0; font-family: var(--latin); font-size: 16px; letter-spacing: .08em; }
.contact-note { max-width: 700px; margin: 12px 0 0; color: rgba(255,255,255,.55); font-size: 11px; }

/* Company + Footer */
.company { background: var(--white); }
.company-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(65px, 10vw, 150px); }
.company-list { margin: 0; border-top: 1px solid var(--line); }
.company-list div { display: grid; grid-template-columns: 230px 1fr; gap: 25px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.company-list dt { color: var(--muted); font-size: 12px; }
.company-list dd { margin: 0; }
.company-list a { font-family: var(--latin); font-weight: 700; }
.site-footer { padding: 78px 0 calc(30px + env(safe-area-inset-bottom)); background: #101213; color: #fff; }
.footer-main { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 70px; padding-bottom: 62px; }
.footer-brand { display: grid; align-content: start; gap: 13px; }
.footer-brand strong { font-family: var(--serif); font-size: 36px; letter-spacing: .14em; }
.footer-brand span { color: rgba(255,255,255,.58); font-family: var(--serif); font-size: 13px; }
.footer-info p { margin: 0 0 8px; color: rgba(255,255,255,.65); font-size: 12px; }
.footer-info a { color: #fff; text-decoration: none; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; }
.footer-nav a { color: rgba(255,255,255,.7); font-size: 11px; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.crea-banner-wrap { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.crea-banner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 8px 0; text-decoration: none; }
.crea-banner span { display: grid; gap: 4px; }
.crea-banner small { color: var(--copper-light); font-family: var(--latin); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.crea-banner strong { font-family: var(--serif); font-size: 19px; font-weight: 600; }
.crea-banner i { font-family: var(--latin); font-size: 11px; font-style: normal; letter-spacing: .12em; transition: transform .25s ease; }
.crea-banner:hover i { transform: translate(4px,-4px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 25px; color: rgba(255,255,255,.42); font-size: 10px; }

/* Fixed call surfaces */
.desktop-call { position: fixed; z-index: 800; right: 22px; bottom: 22px; transform: translateY(140%); opacity: 0; transition: transform .35s ease, opacity .35s ease; }
.desktop-call.is-visible { transform: translateY(0); opacity: 1; }
.desktop-call a { display: grid; min-width: 190px; padding: 12px 17px; background: var(--copper); color: #fff; box-shadow: 0 12px 35px rgba(0,0,0,.2); line-height: 1.2; text-decoration: none; }
.desktop-call span { font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.desktop-call strong { margin-top: 4px; font-family: var(--latin); font-size: 17px; }
.mobile-call { display: none; }

/* Sub pages */
.subpage { background: var(--paper); }
.sub-header { position: relative; background: var(--ink); color: #fff; }
.sub-header .header-inner { min-height: 76px; }
.sub-main { min-height: 70vh; padding: 150px 0 120px; }
.sub-main h1 { margin: 0 0 55px; font-family: var(--serif); font-size: clamp(40px,5vw,70px); font-weight: 600; line-height: 1.35; }
.legal-content { width: min(100%, 900px); }
.legal-content section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 12px; font-family: var(--serif); font-size: 23px; font-weight: 600; }
.legal-content p, .legal-content li { color: var(--muted); font-size: 14px; }
.legal-content ul { padding-left: 1.3em; }
.sitemap-list { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.sitemap-list a { display: block; padding: 24px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 20px; text-decoration: none; }
.sitemap-list li:nth-child(odd) a { margin-right: 35px; }
.not-found { display: grid; place-items: center; min-height: 76vh; padding: 130px 30px 70px; background: var(--ink); color: #fff; text-align: center; }
.not-found strong { color: var(--copper-light); font-family: var(--latin); font-size: clamp(70px,12vw,170px); line-height: 1; }
.not-found h1 { margin: 10px 0 0; font-family: var(--serif); font-size: clamp(30px,4vw,52px); }
.not-found p { color: rgba(255,255,255,.65); }
.not-found .button { margin-top: 20px; }

@media (max-width: 1180px) {
  .global-nav { gap: 14px; }
  .global-nav a:nth-child(4), .global-nav a:nth-child(5) { display: none; }
  .service-row { grid-template-columns: 55px .55fr 1.45fr; gap: 20px; }
  .symptom-photo { margin-right: -5vw; }
  .footer-main { grid-template-columns: .8fr 1.2fr; }
  .footer-nav { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .shell { width: min(calc(100% - 44px), var(--shell)); }
  .header-inner { min-height: 76px; }
  .header-phone { display: none; }
  .nav-toggle { z-index: 2; display: flex; align-items: center; gap: 12px; margin-left: auto; padding: 10px 0; border: 0; background: transparent; cursor: pointer; font-family: var(--latin); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
  .nav-toggle i, .nav-toggle i::before { display: block; width: 28px; height: 1px; background: currentColor; content: ""; transition: transform .25s ease; }
  .nav-toggle i::before { transform: translateY(7px); }
  .nav-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i::before { transform: rotate(-90deg); }
  .global-nav { position: fixed; inset: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: center; align-items: flex-start; gap: 4px; padding: 110px 40px 90px; background: rgba(16,18,19,.98); color: #fff; opacity: 0; pointer-events: none; transition: opacity .3s ease, visibility .3s ease; }
  .global-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
  .global-nav a, .global-nav a:nth-child(4), .global-nav a:nth-child(5) { display: block; width: 100%; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-family: var(--serif); font-size: 21px; }
  .hero-copy { width: 86%; }
  .hero-actions { flex-wrap: wrap; }
  .hero-tags { right: auto; left: 0; max-width: 90%; flex-wrap: wrap; }
  .hero-tags li { padding: 5px 12px; }
  .statement-grid, .editorial-heading, .symptom-grid, .area-grid, .faq-grid, .company-grid { grid-template-columns: 1fr; gap: 45px; }
  .statement-copy { padding-top: 0; }
  .statement-visual picture { width: 92%; }
  .visual-caption { width: 50vw; }
  .editorial-heading { margin-bottom: 55px; }
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row dl { grid-column: 2; }
  .process-story { grid-template-columns: 1fr; }
  .process-photo, .process-list, .process-photo-b, .process-list-second { position: static; grid-column: 1; grid-row: auto; }
  .process-photo { margin-bottom: 45px; }
  .process-photo img { aspect-ratio: 16/10; }
  .process-photo-b, .process-list-second { margin-top: 65px; }
  .symptom-photo { order: -1; margin: 0 -22px; }
  .symptom-photo img { min-height: 520px; }
  .case-empty { grid-template-columns: 1fr; }
  .area-photo { margin: 0 -22px; }
  .area-photo img { min-height: 520px; }
  .faq-grid .section-heading { position: static; }
  .company-list div { grid-template-columns: 180px 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); font-size: 15px; line-height: 1.85; }
  .shell { width: calc(100% - 36px); }
  .shell-wide { width: calc(100% - 18px); }
  .section { padding: 88px 0; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { font-size: 7px; }
  .hero { min-height: max(760px, 100svh); }
  .hero-media img { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(12,14,15,.96) 0%, rgba(12,14,15,.75) 53%, rgba(12,14,15,.25) 100%); }
  .hero-grid { background-image: linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.14) 50%, transparent calc(50% + .5px)); }
  .hero-inner { min-height: max(760px, 100svh); align-items: flex-end; padding-top: 110px; padding-bottom: 165px; }
  .hero-copy { width: 100%; }
  .hero-eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: .14em; }
  .hero h1 { font-size: clamp(40px, 11.4vw, 48px); line-height: 1.27; }
  .hero h1 strong { white-space: nowrap; }
  .hero-lead { margin-top: 20px; font-size: 14px; line-height: 1.75; }
  .desktop-only { display: none; }
  .hero-actions { gap: 10px; margin-top: 27px; }
  .button { width: 100%; min-height: 54px; padding: 11px 16px; }
  .button-copper { display: none; }
  .hero-tags { bottom: 83px; max-width: 100%; }
  .hero-tags li { padding: 4px 8px; border-left-color: rgba(255,255,255,.22); font-size: 8px; }
  .hero .image-label { right: 0; bottom: 56px; font-size: 8px; }
  .scroll-cue { display: none; }
  .section-heading h2, .editorial-heading h2, .symptom-copy h2, .area-copy h2, .contact h2 { font-size: clamp(34px, 10vw, 47px); line-height: 1.42; }
  .statement-grid { gap: 35px; }
  .statement-copy .lead-copy { font-size: 20px; }
  .statement-visual { margin-top: 65px; }
  .statement-visual picture { width: 100%; }
  .statement-visual img { aspect-ratio: 3/4; object-position: 57% center; }
  .visual-caption { position: relative; width: calc(100% - 36px); margin: -18px 18px 0 0; padding: 24px; font-size: 18px; }
  .service-row { grid-template-columns: 38px 1fr; gap: 12px; padding: 31px 0; }
  .service-row h3 { font-size: 21px; }
  .service-row dl { grid-template-columns: 1fr; gap: 14px; }
  .service-row dl div { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.2); }
  .process-photo img { aspect-ratio: 4/4.2; }
  .process-list li { grid-template-columns: 48px 1fr; gap: 12px; padding: 25px 0; }
  .process-list h3 { font-size: 21px; }
  .symptom-photo { margin: 0 -18px; }
  .symptom-photo img { min-height: 430px; }
  .symptom-list { grid-template-columns: 1fr; }
  .symptom-list li:nth-child(odd) { margin-right: 0; }
  .case-empty { gap: 18px; padding-top: 35px; }
  .case-fields { grid-template-columns: 1fr 1fr; }
  .case-media { grid-template-columns: 1fr; }
  .case-meta { grid-template-columns: 1fr 1fr; }
  .area-photo { margin: 0 -18px; }
  .area-photo img { min-height: 450px; }
  .area-copy dl div { grid-template-columns: 76px 1fr; }
  .faq-list summary { grid-template-columns: 35px 1fr 25px; gap: 8px; padding: 22px 0; font-size: 17px; }
  .faq-list details > div { padding: 0 20px 23px 43px; }
  .contact, .contact-inner { min-height: 720px; }
  .contact-inner { padding-top: 85px; padding-bottom: 85px; }
  .contact-phone { grid-template-columns: 1fr 25px; gap: 5px 12px; width: 100%; }
  .contact-phone span { grid-column: 1; }
  .contact-phone strong { grid-column: 1; font-size: clamp(32px, 11vw, 48px); }
  .contact-phone i { grid-row: 1 / 3; grid-column: 2; align-self: center; }
  .company-list div { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .site-footer { padding-top: 62px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-nav { grid-column: auto; }
  .crea-banner { align-items: flex-end; }
  .crea-banner i { font-size: 9px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .desktop-call { display: none; }
  .mobile-call { position: fixed; z-index: 900; right: 0; bottom: 0; left: 0; display: block; padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); background: rgba(16,18,19,.97); border-top: 1px solid rgba(255,255,255,.12); }
  .mobile-call a { display: flex; min-height: 52px; align-items: center; justify-content: space-between; padding: 8px 16px; background: var(--copper); color: #fff; text-decoration: none; }
  .mobile-call span { font-size: 12px; font-weight: 800; }
  .mobile-call strong { font-family: var(--latin); font-size: 18px; }
  .sub-main { padding: 120px 0 85px; }
  .sitemap-list { grid-template-columns: 1fr; }
  .sitemap-list li:nth-child(odd) a { margin-right: 0; }
}

@media (min-width: 701px) {
  .hero h1 span,
  .hero h1 strong { white-space: nowrap; }
}

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