:root {
  --brand-paper: #f5f1e8;
  --brand-paper-2: #ebe3d4;
  --brand-ink: #162129;
  --brand-muted: #606d75;
  --brand-navy: #183b4f;
  --brand-navy-2: #244f65;
  --brand-copper: #ba704d;
  --brand-copper-soft: #d69a7d;
  --paper: var(--brand-paper);
  --paper-2: #f1ede5;
  --white: #fff;
  --ink: var(--brand-ink);
  --muted: var(--brand-muted);
  --line: rgba(22, 33, 41, .14);
  --line-dark: rgba(24, 59, 79, .48);
  --charcoal: var(--brand-navy);
  --silver: #a9b0ad;
  --accent: var(--brand-navy);
  --accent-soft: #dfe8ec;
  --field: #f6f5f1;
  --max: 1200px;
  --shadow: 0 18px 45px rgba(18, 32, 42, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.16; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: 1.55rem; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 16px; color: var(--white); background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50; height: 80px;
  background: rgba(245, 241, 232, .96); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; width: 40px; height: 40px;
  color: var(--white); background: var(--charcoal); border: 1px solid var(--charcoal);
  font-family: Georgia, serif; font-size: 1rem; letter-spacing: -.08em;
  box-shadow: inset 0 -3px 0 var(--brand-copper);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: .92rem; letter-spacing: .12em; }
.brand-copy small { margin-top: 5px; color: #5F4A67; font-size: .55rem; letter-spacing: .18em; }
.site-nav { display: flex; align-items: center; gap: clamp(15px, 2.2vw, 32px); }
.site-nav a { position: relative; font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-decoration: none; white-space: nowrap; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; background: var(--brand-copper); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.site-nav a[aria-current="page"] { color: var(--accent); }
.site-nav .language-link { padding-left: 18px; border-left: 1px solid var(--line); }
.language-menu { position: relative; padding-left: 18px; border-left: 1px solid var(--line); }
.language-menu summary { min-width: 74px; list-style: none; font-size: .72rem; font-weight: 800; letter-spacing: .04em; cursor: pointer; white-space: nowrap; }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary::after { content: "▾"; margin-left: 8px; color: var(--accent); }
.language-menu[open] summary::after { content: "▴"; }
.language-menu > div { position: absolute; top: calc(100% + 18px); right: 0; display: grid; min-width: 170px; padding: 8px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 16px 30px rgba(20, 23, 21, .12); }
.language-menu > div a { display: block; min-height: 38px; padding: 10px 12px; }
.language-menu > div a[aria-current="true"] { color: var(--accent); background: var(--paper-dark); }
.language-menu > div a::after { display: none; }
.menu-toggle { display: none; min-width: 48px; min-height: 48px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.menu-toggle i, .menu-toggle i::before { display: block; width: 25px; height: 1px; background: var(--ink); transition: transform .2s ease; }
.menu-toggle i { margin-left: auto; }
.menu-toggle i::before { content: ""; transform: translateY(-7px); }

.eyebrow { margin-bottom: 18px; color: var(--accent); font-size: .69rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--light { color: #b8ccda; }
.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 28px;
  min-height: 52px; padding: 13px 20px; border: 1px solid var(--ink);
  font-size: .85rem; font-weight: 750; letter-spacing: .02em; text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.button span { font-size: 1.1rem; }
.button--primary { color: var(--white); background: var(--accent); border-color: var(--accent); }
.button--primary:hover { background: var(--ink); border-color: var(--ink); }
.button--secondary { color: var(--ink); background: transparent; }
.button--secondary:hover { color: var(--white); background: var(--accent); border-color: var(--accent); }
.button--light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button--light:hover { color: var(--white); background: transparent; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 16px; color: var(--accent); font-size: .82rem; font-weight: 800; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.corporate-intro { padding: clamp(42px, 5.5vw, 68px) 0; background: var(--white); border-bottom: 1px solid var(--line); }
.corporate-intro__grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(42px, 9vw, 125px); padding-left: clamp(20px, 3vw, 38px); border-left: 3px solid var(--accent); }
.corporate-intro h1 { margin-bottom: 0; font-size: clamp(1.85rem, 3.2vw, 3.05rem); font-weight: 540; white-space: nowrap; }
.corporate-intro h1:lang(ja) { font-weight: 600; }
.corporate-intro__copy p { max-width: 760px; margin-bottom: 12px; color: #3f4541; font-size: clamp(.98rem, 1.3vw, 1.13rem); }
.corporate-intro__copy small { display: block; color: var(--accent); font-size: .75rem; font-weight: 750; }

.hero { min-height: min(720px, calc(100vh - 80px)); display: grid; align-items: center; padding: clamp(48px, 6vw, 70px) 0; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(400px, .7fr); align-items: center; gap: clamp(46px, 5vw, 70px); }
.hero-copy h1, .hero-copy h2 { max-width: 750px; margin-bottom: 24px; font-size: clamp(2.3rem, 3.8vw, 3.4rem); font-weight: 520; line-height: 1.08; }
.hero-copy h2:lang(ja) { font-weight: 600; }
.hero-lead { max-width: 620px; margin-bottom: 20px; color: #4f5450; font-size: clamp(1rem, 1.5vw, 1.25rem); }
.company-signature { margin-bottom: 36px; font-size: .8rem; font-weight: 750; letter-spacing: .06em; }
.hero-media { position: relative; }
.hero-spec { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: -1px; border: 1px solid var(--line); background: var(--white); }
.hero-spec span { padding: 12px 14px; color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-align: center; }
.hero-spec span + span { border-left: 1px solid var(--line); }
.photo-placeholder {
  position: relative; display: grid; place-content: center; min-height: 310px; overflow: hidden;
  color: #727873; background: #e3e4e0; border: 1px solid #cfd2cd; text-align: center;
}
.photo-placeholder::before, .photo-placeholder::after { content: ""; position: absolute; background: #c9ccc7; }
.photo-placeholder::before { top: 12%; right: 0; left: 0; height: 1px; }
.photo-placeholder::after { top: 0; bottom: 0; left: 13%; width: 1px; }
.photo-placeholder > span { margin-bottom: 10px; font-size: .58rem; font-weight: 800; letter-spacing: .22em; }
.photo-placeholder > strong { font-size: .9rem; letter-spacing: .05em; }
.photo-placeholder > i { display: block; width: 48px; height: 2px; margin: 18px auto 0; background: #aaafaa; }
.photo-placeholder--hero { min-height: min(42vw, 420px); box-shadow: var(--shadow); }
.photo-placeholder--card { min-height: 250px; height: 100%; border: 0; }
.photo-placeholder--detail { min-height: min(46.5vw, 510px); }
.photo-placeholder--workshop { width: 100%; min-height: 480px; }

.section { padding: clamp(85px, 10vw, 145px) 0; }
.section--topless { padding-top: 18px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p:not(.eyebrow) { max-width: 600px; margin-bottom: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.product-card { position: relative; display: grid; grid-template-columns: minmax(0, .42fr) minmax(0, .58fr); min-width: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 14px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.product-card:hover { border-color: rgba(41, 78, 104, .45); transform: translateY(-2px); box-shadow: 0 18px 42px rgba(22, 33, 41, .08); }
.product-card[hidden] { display: none; }
.product-card__link { position: absolute; z-index: 3; inset: 0; border-radius: inherit; }
.product-card__link:focus-visible { outline: 3px solid var(--accent); outline-offset: -5px; }
.product-card__media { position: relative; height: 245px; overflow: hidden; background: var(--paper-2); }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-card__media img { transform: scale(1.025); }
.sample-flag { position: absolute; top: 15px; left: 15px; padding: 7px 10px; color: var(--white); background: var(--ink); font-size: .6rem; font-weight: 800; letter-spacing: .1em; }
.product-card__body { display: flex; min-width: 0; padding: 24px; flex-direction: column; }
.product-card__top { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.product-brand { color: var(--accent); font-size: .68rem; font-weight: 800; letter-spacing: .18em; }
.product-card h3 { margin: 21px 0 7px; font-size: clamp(1.25rem, 2vw, 1.65rem); }
.product-card p { min-height: 0; color: var(--muted); font-size: .78rem; }
.product-card .product-card__category { margin: 0 0 13px; color: var(--ink); font-weight: 750; }
.product-card .product-card__summary { display: -webkit-box; margin: 0 0 22px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-height: 1.7; }
.product-card .product-card__auction-end { margin: -10px 0 14px; color: var(--accent); font-size: .68rem; font-weight: 750; line-height: 1.5; }
.product-card__footer { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); }
.product-card__footer > strong { color: var(--accent); font-size: 1.05rem; line-height: 1.2; white-space: nowrap; }
.product-card__footer .text-link { font-size: .72rem; white-space: nowrap; }
.product-card--featured { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); }
.product-card--featured .product-card__media { height: 300px; }
.product-card--featured .product-card__body { padding: clamp(28px, 4vw, 44px); }
.product-card--featured .product-card__footer > strong { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
.status { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 9px; border: 1px solid var(--line-dark); font-size: .62rem; font-weight: 800; letter-spacing: .06em; white-space: nowrap; }
.status--direct { color: var(--white); background: var(--accent); border-color: var(--accent); }
.status--yahoo_auction { color: var(--accent); background: var(--white); border-color: var(--accent); }
.status--sold { color: var(--muted); border-color: var(--line); }
.status--reserved, .status--in_repair { background: var(--paper-2); border-color: var(--silver); }
.status--large { min-height: 38px; padding: 8px 14px; font-size: .7rem; }

.record-band { padding: clamp(80px, 9vw, 130px) 0; color: var(--white); background: var(--charcoal); }
.record-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(55px, 10vw, 130px); }
.record-grid h2 { max-width: 700px; }
.record-grid h2:lang(ja) { font-size: clamp(2rem, 3.1vw, 2.65rem); }
.record-grid > div:first-child > p:not(.eyebrow) { max-width: 600px; margin: 28px 0 34px; color: #c7cbc7; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line-dark); }
.metric { display: grid; min-width: 0; padding: 38px 24px; }
.metric + .metric { border-left: 1px solid var(--line-dark); }
.metric strong { font-family: Georgia, serif; font-size: clamp(2.9rem, 5vw, 5rem); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.metric strong { color: #b8ccda; }
.metric span { margin-top: 20px; font-size: .8rem; font-weight: 750; }
.metric small { margin-top: 5px; color: #959c97; font-size: .62rem; }

.split-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(55px, 9vw, 120px); }
.section-visual { position: relative; min-height: 500px; background: #dedfdb; border: 1px solid var(--line); }
.section-visual--service { display: grid; place-content: center; overflow: hidden; }
.section-visual--service::before { content: ""; position: absolute; inset: 13%; border: 1px solid #b4b8b3; }
.technical-label { position: absolute; top: 24px; left: 28px; color: var(--accent); font-size: .6rem; font-weight: 800; letter-spacing: .18em; }
.deck-lines { position: relative; width: min(360px, 65vw); height: 210px; padding: 42px; background: #c6c9c4; border: 1px solid #a8ada7; box-shadow: 14px 16px 0 rgba(89, 95, 90, .09); }
.deck-lines::before { content: ""; display: block; width: 46%; height: 76px; margin: 0 auto 27px; background: #b8bcb7; border: 1px solid #9da29d; }
.deck-lines i { display: block; height: 1px; margin-top: 10px; background: #9ea39e; }
.section-copy h2 { margin-bottom: 27px; }
.section-copy > p:not(.eyebrow):not(.notice-line):not(.notice-box) { color: var(--muted); }
.notice-line { margin: 27px 0 32px; padding-left: 18px; border-left: 2px solid var(--accent); font-weight: 750; }
.business-home { padding-top: 0; }
.business-panel { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(45px, 10vw, 135px); padding: clamp(45px, 7vw, 85px); background: var(--white); border: 1px solid var(--line); }
.business-panel h2 { max-width: 620px; }
.business-panel p:not(.eyebrow) { max-width: 620px; color: var(--muted); }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 20px; margin: 0 0 35px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { position: relative; padding: 13px 8px 13px 20px; border-bottom: 1px solid var(--line); font-size: .85rem; font-weight: 700; }
.check-list li::before { content: ""; position: absolute; top: 24px; left: 2px; width: 7px; height: 1px; background: var(--ink); }
.company-home { padding-top: 10px; }
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 10vw, 140px); }
.company-grid > div > p:not(.eyebrow) { max-width: 600px; margin-bottom: 30px; color: var(--muted); }
.company-summary { margin: 0; border-top: 1px solid var(--ink); }
.company-summary div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.company-summary dt { color: var(--muted); font-size: .72rem; font-weight: 800; }
.company-summary dd { margin: 0; font-size: .9rem; }

.page-hero { padding: clamp(80px, 11vw, 155px) 0 70px; }
.page-hero__inner { padding-bottom: 55px; border-bottom: 1px solid var(--ink); }
.page-hero h1 { margin-bottom: 25px; font-weight: 520; }
.page-lead { max-width: 760px; margin-bottom: 0; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
.products-page main .container { width: min(calc(100% - 112px), 1188px); }
.products-page .page-hero { padding: 52px 0 12px; }
.products-page .page-hero .eyebrow { margin-bottom: 35px; }
.products-page .page-hero__inner { padding-bottom: 28px; }
.products-page .page-hero h1 { font-size: clamp(3.7rem, 5.8vw, 4.8rem); font-weight: 700; }
.products-page .page-hero h1 { margin-bottom: 45px; }
.products-page .page-lead { color: #657078; font-weight: 500; }
.products-page .product-card__media { height: 100%; min-height: 245px; background: var(--white); }
.products-page .product-card--featured .product-card__media { height: 370px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter { min-height: 44px; padding: 8px 18px; color: var(--muted); background: transparent; border: 1px solid var(--line); cursor: pointer; font-size: .75rem; font-weight: 750; }
.filter:hover, .filter.is-active { color: var(--white); background: var(--accent); border-color: var(--accent); }
.product-grid--catalog { row-gap: 34px; }
.product-grid--catalog .product-card:not(.product-card--featured) { min-height: 340px; }
.empty-state { padding: 50px 20px; border: 1px solid var(--line); text-align: center; }
.catalog-empty { padding: clamp(34px, 5vw, 58px); background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--accent); }
.catalog-empty .eyebrow { margin-bottom: 14px; }
.catalog-empty h3 { margin-bottom: 14px; font-size: clamp(1.45rem, 2.6vw, 2.15rem); font-weight: 560; }
.catalog-empty > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); }

.product-detail-page { background: var(--paper); }
.product-detail-page .site-header { background: rgba(245, 241, 232, .96); }
.product-detail-page main { background: var(--paper); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; color: var(--muted); font-size: .72rem; }
.product-detail-hero { padding: 34px 0 72px; background: var(--paper); }
.product-detail-hero > .container { width: min(calc(100% - 48px), 1180px); }
.product-detail-hero__grid { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(340px, .72fr); align-items: start; gap: 46px; }
.product-detail-hero__gallery { position: sticky; top: 108px; min-width: 0; }
.gallery-main { position: relative; display: block; width: 100%; padding: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.gallery-zoom-label { position: absolute; right: 13px; bottom: 13px; padding: 7px 10px; color: var(--white); background: rgba(22, 33, 41, .82); font-size: .68rem; font-weight: 750; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-top: 9px; }
.gallery-thumb { padding: 0; aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); cursor: pointer; }
.gallery-thumb.is-active { outline: 3px solid var(--accent); outline-offset: -3px; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-support { display: grid; grid-template-columns: repeat(4, 1fr); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gallery-support span { padding: 9px 12px; color: var(--muted); border-left: 1px solid var(--line); font-size: .62rem; font-weight: 800; letter-spacing: .15em; }
.product-detail-summary { min-width: 0; }
.product-code { margin: 0 0 9px; color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.product-detail-summary h1 { margin: 0 0 12px; font-size: clamp(2.05rem, 3vw, 2.625rem); font-weight: 720; line-height: 1.15; letter-spacing: -.02em; }
.product-title-brand { font-weight: 780; }
.product-title-model { font-weight: 670; }
.product-facts { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 19px; }
.product-facts div { display: inline-flex; align-items: center; min-width: 0; gap: 6px; padding: 7px 10px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; }
.product-facts .product-fact--condition { color: #2f6655; background: #f3faf7; border-color: #b8d5cb; }
.product-facts dt { color: var(--muted); font-size: .55rem; font-weight: 800; letter-spacing: .06em; }
.product-facts dd { margin: 0; font-size: .68rem; font-weight: 800; overflow-wrap: anywhere; }
.product-overview { margin: 0 0 19px; color: #3c4951; font-size: .84rem; line-height: 1.75; }
.product-price { display: grid; gap: 3px; padding: 17px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-price > span { color: var(--muted); font-size: .62rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.product-price > strong { color: var(--ink); font-size: clamp(1.8rem, 2.5vw, 2rem); line-height: 1.2; }
.product-price > small { color: var(--muted); font-size: .68rem; }
.product-price > .product-price__auction-end { color: var(--accent); font-weight: 750; }
.product-highlights { padding: 18px 0 0; }
.product-highlights .eyebrow { margin-bottom: 8px; }
.product-highlights ul { margin: 0; padding-left: 20px; }
.product-highlights li { margin: 4px 0; color: #3c4951; font-size: .79rem; line-height: 1.55; }
.product-sales-panel { margin-top: 18px; padding: 20px; background: var(--white); border: 1px solid rgba(24, 59, 79, .22); border-radius: 8px; }
.product-sales-panel__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.product-sales-panel__head .eyebrow { margin: 0; }
.product-sales-panel .status { min-height: 30px; padding: 6px 10px; border-radius: 999px; font-size: .62rem; }
.product-sales-panel h2 { margin: 10px 0 8px; font-size: 1.15rem; }
.product-sales-copy { margin: 0 0 14px; color: var(--ink); font-size: .8rem; font-weight: 700; line-height: 1.75; }
.product-sales-copy span { display: block; }
.product-sales-channel { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 10px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-sales-channel span { color: var(--muted); font-size: .61rem; font-weight: 800; letter-spacing: .08em; }
.product-sales-channel strong { color: var(--accent); font-size: .75rem; text-align: right; }
.product-sales-panel > small { display: block; margin-top: 10px; padding: 9px 10px; color: var(--muted); background: #f6f8f9; border: 1px solid var(--line); font-size: .64rem; line-height: 1.55; }
.product-sales-notice { margin-top: 12px; padding: 12px 14px; color: #70431f; background: #fff6e7; border: 1px solid #c98243; border-radius: 4px; }
.product-sales-notice strong { display: block; margin-bottom: 3px; color: #875126; font-size: .72rem; letter-spacing: .06em; }
.product-sales-notice p { margin: 0; color: #613a1d; font-size: .76rem; font-weight: 750; line-height: 1.65; }
.product-sales-actions { display: grid; gap: 8px; margin-top: 11px; }
.product-sales-actions--hero.product-sales-actions--yahoo { grid-template-columns: minmax(0, 1fr); }
.product-sales-actions .button { width: 100%; min-height: 44px; padding: 10px 15px; border-radius: 3px; font-size: .72rem; }
.product-detail-section { padding: clamp(64px, 8vw, 92px) 0; background: var(--white); border-top: 1px solid var(--line); }
.product-detail-section h2 { margin-bottom: 13px; font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.product-detail-intro { max-width: 760px; margin-bottom: 29px; color: var(--muted); font-size: .88rem; }
.product-sales-guide { background: var(--paper-2); }
.product-sales-guide__grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(35px, 7vw, 88px); align-items: start; }
.product-sales-guide__grid > div:first-child > p:last-child { color: var(--muted); }
.sales-rules { margin: 0; background: var(--white); border: 1px solid var(--line); }
.sales-rules div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 17px 19px; }
.sales-rules div + div { border-top: 1px solid var(--line); }
.sales-rules dt { color: var(--accent); font-size: .7rem; font-weight: 850; }
.sales-rules dd { margin: 0; color: #46535b; font-size: .79rem; }
.sales-flow { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding-left: 22px; }
.sales-flow li { padding: 7px 10px; background: var(--white); border: 1px solid var(--line); font-size: .7rem; }
.condition-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.condition-grid article { min-width: 0; padding: 26px; background: var(--white); }
.condition-grid h3 { margin-bottom: 9px; font-size: 1rem; }
.condition-grid p { margin: 0; color: #48555d; font-size: .8rem; }
.maintenance-list { margin: 0; padding: 0; list-style-position: inside; list-style-type: decimal-leading-zero; border-top: 1px solid var(--line); }
.maintenance-list li { padding: 16px 4px; color: var(--accent); font-size: .76rem; font-weight: 850; }
.maintenance-list li + li { border-top: 1px solid var(--line); }
.maintenance-list span { margin-left: 28px; color: var(--ink); font-size: .9rem; }
.operation-table-wrap { overflow-x: auto; }
.operation-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--ink); }
.operation-table th, .operation-table td { padding: 15px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.operation-table th { color: var(--muted); font-size: .66rem; letter-spacing: .1em; }
.operation-table td { font-size: .84rem; }
.operation-table td:last-child { color: var(--accent); font-weight: 850; }
.product-photos-section { background: var(--paper); }
.product-photo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.product-photo-grid figure { margin: 0; min-width: 0; background: var(--white); border: 1px solid var(--line); }
.product-photo-grid button { display: block; width: 100%; padding: 0; background: var(--paper-2); border: 0; cursor: zoom-in; }
.product-photo-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.product-photo-grid figcaption { padding: 10px 12px; color: var(--muted); border-top: 1px solid var(--line); font-size: .7rem; }
.included-panel { max-width: 900px; padding: 25px 28px; background: var(--paper-2); border-left: 4px solid var(--accent); }
.included-panel ul { margin: 0; padding-left: 20px; }
.included-panel li { margin: 7px 0; font-size: .82rem; }
.product-track-record { padding: 62px 0; color: var(--white); background: var(--brand-ink); }
.product-track-record__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, .7fr)); gap: 28px; align-items: end; }
.product-track-record .eyebrow { color: var(--brand-copper-soft); }
.product-track-record h2 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.45rem); }
.product-track-record__grid > div:not(:first-child) { padding-left: 20px; border-left: 1px solid rgba(255, 255, 255, .22); }
.product-track-record strong { display: block; font-size: clamp(1.9rem, 3vw, 2.65rem); line-height: 1; }
.product-track-record span { color: #b7c2ca; font-size: .66rem; }
.product-contact { padding-top: 68px; }
.product-contact > .container > p:not(.eyebrow) { max-width: 760px; color: var(--muted); }
.product-contact__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; max-width: 760px; margin-top: 24px; }
.product-contact__actions--single { grid-template-columns: minmax(0, 240px); }
.product-contact__actions .button { width: 100%; min-height: 52px; margin: 0; }
.product-lightbox { position: fixed; z-index: 100; inset: 0; display: grid; padding: 58px 24px 24px; place-items: center; background: rgba(9, 14, 18, .94); }
.product-lightbox[hidden] { display: none; }
.product-lightbox img { max-width: min(94vw, 1400px); max-height: 86vh; object-fit: contain; }
.product-lightbox__close { position: absolute; top: 18px; right: 24px; min-height: 38px; padding: 7px 14px; color: var(--white); background: transparent; border: 1px solid rgba(255, 255, 255, .58); cursor: pointer; }
.sample-notice, .notice-box { padding: 22px 24px; background: var(--paper); border: 1px solid var(--line); }
.sample-notice p, .notice-box p { margin: 8px 0 0; }

.split-grid--page { align-items: start; }
.section-visual--photo { min-height: 0; }
.restoration-page main .container { width: min(calc(100% - 94px), 1280px); }
.restoration-page .page-hero { padding-top: 52px; padding-bottom: 50px; }
.restoration-page .page-hero h1,
.business-page .page-hero h1,
.track-page .page-hero h1,
.about-page .page-hero h1 { font-size: clamp(3.7rem, 5.8vw, 5rem); font-weight: 700; letter-spacing: -.045em; }
.restoration-page .page-lead,
.track-page .page-lead { max-width: none; color: #344b5b; font-size: clamp(1rem, 1.55vw, 1.25rem); font-weight: 500; white-space: nowrap; }
.restoration-page .page-hero .eyebrow { margin-bottom: 39px; }
.restoration-page .page-hero h1 { margin-bottom: 34px; }
.restoration-page .page-hero__inner { padding-bottom: 40px; }
.restoration-page .split-grid--page { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(56px, 5.7vw, 76px); }
.restoration-page .section--topless { padding-top: 15px; }
.restoration-page .section-visual--photo { overflow: hidden; background: var(--white); border-radius: 10px; box-shadow: 0 14px 35px rgba(22, 33, 41, .08); }
.restoration-slideshow { position: relative; background: #dedfdb; }
.restoration-slideshow__frame { position: relative; min-height: 565px; overflow: hidden; }
.restoration-slideshow__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0;
  transition: opacity 1.2s ease;
}
.restoration-slideshow__slide.is-active { z-index: 1; opacity: 1; }
.restoration-slideshow__indicators {
  position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: flex; justify-content: center;
  gap: 9px; padding: 14px; background: rgba(23, 25, 24, .34);
}
.restoration-slideshow__indicator {
  width: 8px; height: 8px; padding: 0; background: rgba(255, 255, 255, .58); border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 50%; cursor: pointer;
}
.restoration-slideshow__indicator.is-active { background: var(--white); }
.restoration-slideshow__indicator:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.visual-caption { display: block; padding: 31px 22px; color: var(--ink); background: var(--white); border-top: 1px solid var(--line); font-size: .83rem; font-weight: 750; letter-spacing: .08em; }
.visual-caption::before { content: "—"; margin-right: 14px; }
.restoration-page .section-copy h2 { margin-bottom: 31px; font-size: clamp(2.25rem, 3.35vw, 2.75rem); font-weight: 700; line-height: 1.35; }
.restoration-page .section-copy > p { margin-bottom: 23px; color: #344b5b; font-size: clamp(.92rem, 1.35vw, 1.05rem); font-weight: 500; line-height: 1.9; }
.restoration-page .section-copy .button { min-width: 185px; min-height: 63px; }
.makers { margin: 31px 0 28px; padding: 25px 0 0; border-top: 1px solid var(--line); border-bottom: 0; }
.makers p { margin-bottom: 14px; color: var(--muted); font-size: .72rem; font-weight: 800; }
.makers strong { display: inline-block; margin-right: 28px; font-size: 1.8rem; letter-spacing: -.03em; }
html:lang(ja) .restoration-page .makers strong { margin-right: 18px; }
.makers small { display: block; margin-top: 15px; color: var(--muted); }
.notice-box--strong { background: var(--white); border-left: 4px solid var(--ink); }

.business-page main .container { width: min(calc(100% - 96px), 1250px); }
.business-page .page-hero { padding-top: 60px; }
.business-page .page-hero .eyebrow { margin-bottom: 45px; }
.business-page .page-hero h1 { margin-bottom: 22px; }
.business-page .page-lead { max-width: 1200px; color: #344b5b; font-size: clamp(1rem, 1.55vw, 1.25rem); font-weight: 500; line-height: 2; }
.business-page-grid { display: grid; grid-template-columns: minmax(0, 1.57fr) minmax(0, 1fr); gap: clamp(72px, 8.5vw, 120px); align-items: start; }
.business-page-grid > div > h2 { font-size: clamp(2.35rem, 3.2vw, 2.85rem); font-weight: 700; }
.business-page-grid > div > p { max-width: 640px; color: #344b5b; font-size: 1rem; font-weight: 500; line-height: 2; }
.service-list { margin: 40px 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.service-list li { display: grid; grid-template-columns: 55px 1fr auto; align-items: center; padding: 19px 0; border-bottom: 1px solid var(--line); }
.service-list span { color: var(--accent); font-family: Georgia, serif; }
.service-list .service-list__icon { width: 18px; height: 18px; color: var(--ink); }
.contact-aside { position: sticky; top: 110px; padding: 35px; color: var(--white); background: var(--charcoal); }
.contact-aside .eyebrow { color: var(--brand-copper-soft); }
.contact-aside p:not(.eyebrow) { color: #c6cbc7; }
.contact-aside .button { width: 100%; margin-top: 18px; color: var(--ink); background: var(--white); border-color: var(--white); }
.track-page main .container { width: min(calc(100% - 108px), 1200px); }
.track-page .page-hero { padding-top: 20px; padding-bottom: 60px; }
.track-page .page-hero .eyebrow { margin-bottom: 31px; }
.track-page .page-hero h1 { margin-bottom: 30px; }
.track-page .page-hero__inner { padding-bottom: 45px; }
.track-record-section { padding-top: 0; }
.track-record-intro { max-width: 900px; margin-bottom: 46px; }
.track-record-intro h2 { max-width: 900px; margin: 45px 0 24px; color: var(--ink); font-size: clamp(3rem, 4.7vw, 3.9rem); font-weight: 700; line-height: 1.25; }
.track-record-intro > p:last-child { max-width: 900px; margin: 0; color: #344b5b; font-weight: 500; line-height: 2; }
.track-record-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.track-record-card { display: flex; min-width: 0; min-height: 330px; padding: clamp(28px, 3vw, 40px); flex-direction: column; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: 24px; }
.track-record-card__icon { width: 38px; height: 38px; margin-bottom: 35px; color: var(--accent); }
.track-record-card strong { display: flex; align-items: baseline; gap: 8px; color: var(--ink); font-size: clamp(2.7rem, 4.6vw, 4.4rem); line-height: 1; white-space: nowrap; }
.track-record-card__unit { font-size: .34em; letter-spacing: .08em; }
.track-record-card small { margin-top: 16px; color: var(--ink); font-size: .76rem; font-weight: 800; }
.track-record-card__divider { width: 100%; height: 1px; margin: 25px 0 20px; background: var(--line); }
.track-record-card p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.7; }
.track-record-intro__title--mobile,
.track-record-intro__body--mobile,
.track-record-card__mobile-text,
.track-record-card--mobile-only,
.track-record-mobile-note { display: none; }
.track-record-action { display: flex; margin-top: 30px; padding-top: 30px; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid var(--line); }
.track-record-action p { display: flex; margin: 0; align-items: center; gap: 14px; color: var(--muted); font-size: .82rem; }
.track-record-action .lp-line-icon { flex: 0 0 auto; width: 28px; height: 28px; color: var(--accent); }
.track-record-action .button { flex: 0 0 auto; }
.customer-reviews__header { max-width: 720px; margin: 0 auto 32px; text-align: center; }
.customer-reviews__header h2 { margin: 0; color: var(--ink); font-size: clamp(2rem, 3vw, 2.75rem); line-height: 1.2; }
.customer-reviews__header h2::after { display: block; width: 46px; height: 2px; margin: 16px auto 0; content: ""; background: var(--accent); }
.customer-reviews__header p { margin: 18px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.8; }
.customer-review-grid { display: grid; align-items: stretch; gap: 18px; }
.customer-review-grid--home { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.customer-review-grid--track { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.customer-review-card { display: flex; min-width: 0; padding: 28px 25px; flex-direction: column; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 14px 34px rgba(22, 33, 41, .055); overflow-wrap: anywhere; }
.customer-review-card--home { min-height: 300px; }
.customer-review-card--track { min-height: 380px; padding: 25px 21px; }
.customer-review__stars { display: flex; gap: 6px; color: #e5a400; }
.customer-review__stars .lp-line-icon { width: 21px; height: 21px; fill: currentColor; stroke-width: 1.45; }
.customer-review__source { margin: 9px 0 0; color: var(--muted); font-size: .78rem; font-weight: 650; }
.customer-review-card blockquote { margin: 20px 0 0; padding: 19px 0 0; border-top: 1px solid var(--line); }
.customer-review-card blockquote p { margin: 0; color: var(--ink); font-size: .94rem; font-weight: 650; line-height: 1.85; }
.customer-review__footer { display: flex; margin-top: auto; padding-top: 28px; align-items: center; justify-content: space-between; gap: 14px; color: var(--muted); font-size: .74rem; }
.customer-review__buyer { display: inline-flex; min-width: 0; align-items: center; gap: 9px; }
.customer-review__buyer .lp-line-icon { flex: 0 0 auto; width: 25px; height: 25px; color: #8d9294; }
.customer-review__footer time { flex: 0 0 auto; }
.customer-review-card--track h3 { margin: 12px 0 0; color: var(--ink); font-size: 1rem; line-height: 1.45; }
.customer-review__meta { display: flex; margin: 14px 0 0; flex-wrap: wrap; gap: 6px 12px; color: var(--muted); font-size: .73rem; }
.customer-review__meta time::before { margin-right: 12px; content: "·"; }
.customer-review__product { min-height: 3.1em; margin: 13px 0 0; color: #276ba5; font-size: .78rem; font-weight: 700; line-height: 1.55; }
.track-customer-reviews { margin-top: 38px; padding-top: 36px; border-top: 1px solid var(--line); }
.customer-reviews__header--track { max-width: none; margin: 0 0 20px; text-align: left; }
.customer-reviews__header--track h2 { font-size: 1.25rem; }
.customer-reviews__header--track h2::after { display: none; }
.customer-reviews__header--track p { margin-top: 7px; }
.about-page main .container { width: min(calc(100% - 76px), 1283px); }
.about-page .page-hero { padding-top: 130px; }
.about-page .page-hero .eyebrow { margin-bottom: 35px; }
.about-page .page-hero h1 { margin-bottom: 43px; }
.about-page .page-lead { max-width: none; color: #536a79; font-size: clamp(1.05rem, 1.55vw, 1.25rem); font-weight: 500; line-height: 2; }
.about-grid { display: block; }
.about-mobile-banners { display: none; }
.about-list { width: 100%; max-width: 1107px; margin: 0 auto; border-top: 1px solid var(--ink); }
.about-list > div { display: grid; grid-template-columns: 255px 1fr; gap: 30px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.about-list dt { color: var(--ink); font-size: .9rem; font-weight: 750; }
.about-list dd { margin: 0; color: var(--ink); font-size: 1.05rem; font-weight: 500; }
.about-list dd span { display: block; }
.about-list dd span + span { margin-top: 8px; color: var(--muted); font-size: .9rem; }
.about-copy-mobile, .about-list dd .about-copy-mobile, .contact-copy-mobile { display: none; }
.about-list dd .about-audio-business .about-copy-desktop { color: inherit; font-size: inherit; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 10vw, 140px); align-items: start; }
.contact-intro > p { margin-top: 25px; color: var(--muted); }
.contact-form { padding: clamp(25px, 5vw, 55px); background: var(--white); border: 1px solid var(--line); }
.form-row { display: grid; margin-bottom: 24px; }
.form-row label { margin-bottom: 7px; font-size: .75rem; font-weight: 800; }
.form-row label span { color: var(--muted); font-weight: 500; }
.form-row input, .form-row textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--field); border: 1px solid var(--line); border-radius: 0; outline: 0; }
.form-row input:focus, .form-row textarea:focus { background: var(--white); border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.form-row textarea { resize: vertical; }
.contact-form .button { cursor: pointer; }
.contact-form .button:disabled { cursor: wait; opacity: .7; }
.form-status { min-height: 1.7em; margin: 18px 0 0; color: #8a2c28; font-size: .84rem; font-weight: 750; }
.form-status[data-state="pending"] { color: var(--muted); }
.form-status[data-state="success"] { color: #2f6846; }
.prose { max-width: 800px; }
.prose p { color: var(--muted); }

/* Homepage LP — scoped to preserve established inner-page layouts. */
.home-page {
  --paper: #f5f1e8;
  --paper-2: #ebe3d4;
  --white: #fffdf8;
  --ink: #162129;
  --muted: #65727a;
  --line: rgba(22, 33, 41, .14);
  --line-dark: rgba(255, 255, 255, .24);
  --charcoal: #183b4f;
  --accent: #ba704d;
  --accent-soft: #f0ded2;
  --lp-navy: #183b4f;
  --lp-navy-2: #244f65;
  --lp-copper: #ba704d;
  --lp-copper-soft: #d69a7d;
  --lp-ink: #162129;
  background: var(--paper);
}
.home-page .site-header { background: rgba(245, 241, 232, .94); }
.home-page .brand-mark { background: var(--lp-navy); border-color: var(--lp-navy); box-shadow: inset 0 -3px 0 var(--lp-copper); }
.home-page .button { border-radius: 999px; }
.lp-home { overflow: clip; }
.lp-label {
  margin: 0 0 15px;
  color: var(--lp-copper);
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}
.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 13px 21px;
  color: var(--lp-ink);
  background: transparent;
  border: 1px solid var(--lp-ink);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.lp-button:hover { transform: translateY(-2px); }
.lp-button--primary { color: var(--white); background: var(--lp-ink); }
.lp-button--primary:hover { background: var(--lp-navy-2); border-color: var(--lp-navy-2); }
.lp-button--light { color: var(--white); border-color: rgba(255, 255, 255, .78); }
.lp-button--light:hover { color: var(--lp-navy); background: var(--white); border-color: var(--white); }
.lp-button--copper { color: var(--white); background: var(--lp-copper); border-color: var(--lp-copper); }
.lp-button--copper:hover { background: var(--lp-copper-soft); border-color: var(--lp-copper-soft); }
.lp-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.lp-repair-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .46fr) minmax(0, .54fr);
  gap: 22px;
  margin-top: 22px;
  padding: 10px;
  overflow: hidden;
  background: rgba(255, 253, 248, .56);
  border: 1px solid rgba(186, 112, 77, .34);
  border-radius: 13px;
}
.lp-repair-card__eyebrow {
  position: absolute;
  z-index: 1;
  top: 15px;
  left: calc(46% + 34px);
  margin: 0;
  color: var(--lp-navy);
  font-size: .59rem;
  font-weight: 850;
  letter-spacing: .18em;
}
.lp-repair-card__eyebrow::before { content: ""; display: inline-block; width: 15px; height: 1px; margin: 0 10px 3px 0; background: var(--lp-copper); }
.lp-repair-card__image { width: 100%; height: 162px; object-fit: cover; object-position: 50% 60%; border-radius: 7px; }
.lp-repair-card__content { min-width: 0; padding: 27px 8px 2px 0; }
.lp-repair-card h2 { margin: 0 0 7px; color: var(--lp-navy); font-size: clamp(1.05rem, 1.65vw, 1.35rem); line-height: 1.35; }
.lp-repair-card__models { margin: 0 0 10px; color: var(--muted); font-size: .73rem; line-height: 1.45; }
.lp-repair-card__models span { display: block; }
.lp-repair-card__lead { display: none; }
.lp-repair-card__link {
  display: flex;
  width: min(100%, 205px);
  min-height: 38px;
  padding: 7px 17px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  background: var(--lp-copper);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}
.lp-repair-card__link:hover { background: #99583c; transform: translateY(-1px); }
.lp-hero {
  display: grid;
  align-items: center;
  min-height: 690px;
  padding: 40px 0;
}
.lp-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(42px, 5vw, 64px); }
.lp-hero__copy .lp-label { display: flex; align-items: center; gap: 12px; color: var(--lp-navy); }
.lp-hero__copy .lp-label::before { content: ""; width: 34px; height: 2px; background: var(--lp-copper); }
.lp-hero h1 {
  max-width: 720px;
  margin: 22px 0 30px;
  font-size: clamp(3.65rem, 7vw, 6.35rem);
  font-weight: 700;
  letter-spacing: -.057em;
  line-height: .99;
}
.lp-hero h1 span { display: block; color: var(--lp-navy); }
.lp-hero h1:lang(ja) { font-size: clamp(3.65rem, 5.8vw, 5rem); }
.lp-hero h1:lang(en) { font-size: clamp(3.4rem, 5.3vw, 4.4rem); }
.lp-hero__lead { max-width: 720px; margin: 0 0 30px; color: #39474e; font-size: clamp(1.05rem, 1.65vw, 1.38rem); line-height: 1.82; }
.lp-hero__lead--mobile { display: none; }
.lp-hero__meta { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 36px; color: var(--muted); font-size: .68rem; font-weight: 850; letter-spacing: .1em; }
.lp-hero-visual {
  position: relative;
  display: block;
  height: 590px;
  min-height: 590px;
  overflow: hidden;
  color: var(--white);
  background: var(--lp-navy);
  border-radius: 38px;
  box-shadow: 0 24px 72px rgba(18, 32, 42, .14);
  text-decoration: none;
}
.lp-hero-visual > img,
.lp-hero-visual__image,
.lp-hero-visual__image img { width: 100%; height: 100%; }
.lp-hero-visual > img,
.lp-hero-visual__image img { object-fit: cover; }
.lp-hero-visual__top,
.lp-hero-visual__foot { position: absolute; z-index: 2; right: 26px; left: 26px; display: flex; justify-content: space-between; gap: 16px; color: rgba(255, 255, 255, .74); font-size: .62rem; font-weight: 850; letter-spacing: .15em; }
.lp-hero-visual__top { top: 24px; }
.lp-hero-visual__foot { bottom: 22px; }
.lp-hero-visual--product { display: grid; grid-template-rows: auto minmax(250px, 1fr) auto; color: var(--lp-ink); background: rgba(255, 253, 248, .74); border: 1px solid rgba(22, 33, 41, .14); box-shadow: 0 24px 72px rgba(18, 32, 42, .08); }
.lp-hero-visual--product .lp-hero-visual__image { display: block; min-height: 0; margin: 0 24px; background: transparent; }
.lp-hero-visual--product .lp-hero-visual__image img { object-fit: contain; }
.lp-featured-product__head { padding: 34px 34px 20px; }
.lp-featured-product__meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.lp-featured-product__meta > span:first-child { color: var(--lp-navy); font-size: .68rem; font-weight: 850; letter-spacing: .18em; }
.lp-featured-product__head h2 { margin: 24px 0 12px; font-size: clamp(1.55rem, 2.4vw, 2.15rem); font-weight: 700; letter-spacing: -.025em; }
.lp-featured-product__head h2 a { text-decoration: none; }
.lp-featured-product__head p { margin: 0; color: var(--muted); font-size: .92rem; }
.lp-featured-product__head .lp-featured-product__auction-end { margin-top: 10px; color: var(--lp-copper); font-size: .72rem; font-weight: 750; }
.lp-featured-product__footer { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin: 0 34px; padding: 25px 0 30px; border-top: 1px solid rgba(22, 33, 41, .46); }
.lp-featured-product__footer > strong { font-size: clamp(1.7rem, 3vw, 2.15rem); line-height: 1; white-space: nowrap; }
.lp-featured-product__footer .text-link { flex: 0 0 auto; white-space: nowrap; }
.lp-stats { padding: 0 0 24px; }
.lp-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lp-stat { display: flex; min-width: 0; min-height: 205px; padding: 24px 18px 20px; align-items: center; flex-direction: column; text-align: center; border-right: 1px solid var(--line); }
.lp-stat:last-child { border-right: 0; }
.lp-stat .lp-stat__icon { flex: 0 0 auto; width: 32px; height: 32px; margin-bottom: 13px; color: var(--lp-copper); }
.lp-stat strong { display: block; color: var(--lp-navy); font-size: clamp(1.8rem, 3vw, 2.65rem); letter-spacing: -.045em; line-height: 1; white-space: nowrap; }
.lp-stat span { display: block; margin-top: 12px; color: var(--lp-ink); font-size: .76rem; font-weight: 780; line-height: 1.45; }
.lp-stat small { display: block; margin-top: 8px; color: var(--muted); font-size: .66rem; font-weight: 600; line-height: 1.5; }
.lp-section { padding: clamp(82px, 9vw, 112px) 0; }
.lp-section-title { max-width: 900px; margin: 13px 0 22px; font-size: clamp(2.5rem, 5vw, 4.4rem); font-weight: 680; letter-spacing: -.046em; line-height: 1.07; }
.lp-section-intro { max-width: 790px; margin: 0 0 48px; color: #4f5c63; font-size: clamp(1rem, 1.6vw, 1.16rem); }
.lp-section-action { margin-top: 30px; }
.lp-business__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lp-business .lp-section-title { max-width: none; font-size: clamp(2.5rem, 4.8vw, 4rem); }
.lp-business .lp-section-title span { display: block; }
.lp-business-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: clamp(30px, 3.6vw, 44px);
  background: rgba(255, 253, 248, .8);
  border: 1px solid var(--line);
  border-radius: 30px;
}
.lp-business-card--audio { color: var(--white); background: var(--lp-ink); border-color: var(--lp-ink); }
.lp-business-card__index { margin: 0; color: var(--lp-copper); font-size: .69rem; font-weight: 850; letter-spacing: .16em; }
.lp-business-card h3 { margin: 46px 0 18px; font-size: clamp(2.25rem, 3.6vw, 3.3rem); font-weight: 680; line-height: 1.08; }
.lp-business-card p:not(.lp-business-card__index) { max-width: 530px; color: var(--muted); }
.lp-business-card--audio p:not(.lp-business-card__index) { color: rgba(255, 255, 255, .72); }
.lp-business-card small { color: currentColor; font-size: .63rem; font-weight: 850; letter-spacing: .13em; }
.lp-line-icon { display: block; width: 100%; height: 100%; }
.lp-mobile-only { display: none; }
.lp-score.lp-mobile-only { display: none; }
.lp-mobile-break { display: none; }
.lp-business-mobile-break { display: none; }
.lp-service-list__heading { display: none; }
.lp-agents__intro-card { display: contents; }
.lp-proof__record-text--mobile { display: none; }
.lp-proof { padding-bottom: 38px; color: var(--white); background: transparent; }
.lp-proof__shell { width: min(calc(100% - 64px), 1713px); }
.lp-agents__shell { width: min(calc(100% - 56px), 1728px); }
.lp-proof__panel {
  position: relative;
  min-height: clamp(680px, 46vw, 820px);
  padding: clamp(48px, 4vw, 68px) clamp(36px, 2.4vw, 42px) clamp(48px, 4vw, 68px) clamp(48px, 4vw, 68px);
  overflow: hidden;
  background: #062f49;
  border-radius: 42px;
  box-shadow: 0 28px 78px rgba(22, 33, 41, .12);
}
.lp-proof__backdrop {
  position: absolute;
  z-index: 0;
  top: -4%;
  right: 0;
  width: 41%;
  height: 38%;
  object-fit: cover;
  object-position: 53% 55%;
  opacity: .09;
  filter: grayscale(.62) brightness(.46) contrast(1.12);
}
.lp-proof .lp-label { color: var(--lp-copper-soft); }
.lp-proof__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .45fr) minmax(0, .55fr);
  min-height: clamp(570px, 38vw, 684px);
  align-items: start;
  gap: clamp(34px, 3vw, 52px);
}
.lp-proof__copy { min-width: 0; }
.lp-proof__copy .lp-section-title { max-width: 760px; margin: 40px 0 48px; font-size: clamp(3.25rem, 4.45vw, 4.75rem); line-height: 1.09; }
.lp-proof__copy .lp-section-title span { display: block; white-space: nowrap; }
.lp-proof__copy > p:not(.lp-label) { max-width: 540px; color: rgba(255, 255, 255, .78); }
.lp-proof .lp-button { width: min(100%, 520px); margin-top: 37px; padding-inline: 34px; justify-content: space-between; }
.lp-proof__evidence { position: relative; top: -44px; min-width: 0; align-self: end; }
.lp-proof__scores { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 1.35vw, 22px); }
.lp-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 365px;
  padding: 28px 18px 24px;
  text-align: center;
  background: rgba(7, 47, 73, .74);
  border: 1px solid rgba(117, 181, 215, .48);
  border-radius: 25px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}
.lp-score__icon { width: 42px; height: 42px; margin-bottom: 20px; color: rgba(255, 255, 255, .94); }
.lp-score strong { display: flex; align-items: baseline; justify-content: center; gap: 8px; font-size: clamp(3.05rem, 3.65vw, 4.1rem); font-weight: 680; letter-spacing: -.055em; line-height: .95; white-space: nowrap; }
.lp-score__unit { font-size: .42em; letter-spacing: .035em; }
.lp-score small { margin-top: 19px; padding: 7px 15px; border: 1px solid rgba(255, 255, 255, .32); border-radius: 999px; font-size: .81rem; font-weight: 760; }
.lp-score__divider { width: 64%; height: 1px; margin: 24px 0 19px; background: rgba(145, 197, 224, .48); }
.lp-score p { max-width: 215px; margin: 0; color: rgba(255, 255, 255, .78); font-size: .76rem; line-height: 1.62; }
.lp-proof__trust { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 37px 0 0; color: rgba(255, 255, 255, .78); font-size: .82rem; font-weight: 650; text-align: center; }
.lp-proof__trust .lp-line-icon { flex: 0 0 auto; width: 28px; height: 28px; color: var(--lp-copper-soft); }
.lp-reviews { padding-top: 24px; }
.lp-reviews .customer-reviews__header { margin-bottom: 38px; }
.lp-reviews .customer-review-card { background: rgba(255, 253, 248, .94); }
.lp-reviews__action { display: flex; margin-top: 24px; justify-content: flex-end; }
.lp-reviews__action .lp-button { width: min(100%, 420px); justify-content: space-between; }
.lp-process { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lp-process__step { min-width: 0; min-height: 245px; padding: 32px 25px; border-right: 1px solid var(--line); }
.lp-process__step:last-child { border-right: 0; }
.lp-process__step > span { color: var(--lp-copper); font-size: .65rem; font-weight: 850; letter-spacing: .15em; }
.lp-process__step h3 { margin: 38px 0 10px; font-size: 1.55rem; }
.lp-process__step p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.lp-agents__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(420px, 1fr);
  align-items: stretch;
  gap: clamp(32px, 4.5vw, 58px);
  padding: clamp(38px, 4.6vw, 64px);
  background: #ece3d4;
  border: 1px solid rgba(22, 33, 41, .05);
  border-radius: 42px;
  box-shadow: 0 28px 78px rgba(22, 33, 41, .08);
}
.lp-agents__content { min-width: 0; }
.lp-agents__title { max-width: 780px; margin: 13px 0 22px; font-size: clamp(3rem, 4.9vw, 4.75rem); font-weight: 680; letter-spacing: -.05em; line-height: 1.08; }
.lp-agents__intro { max-width: 850px; margin-bottom: 12px; color: #46535a; font-size: clamp(.96rem, 1.2vw, 1.08rem); line-height: 1.85; }
.lp-agents__details { display: inline-flex; align-items: center; gap: 16px; color: var(--lp-navy); font-size: .76rem; font-weight: 800; text-decoration: none; }
.lp-agents__details:hover { color: var(--lp-copper); }
.lp-service-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin: 34px 0 22px; padding: 0; list-style: none; }
.lp-service-list li {
  display: flex;
  min-width: 0;
  min-height: 262px;
  padding: 18px 13px 20px;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 253, 248, .82);
  border: 1px solid rgba(22, 33, 41, .12);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(22, 33, 41, .035);
}
.lp-service-list__icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 15px; padding: 14px; color: var(--lp-navy); background: rgba(186, 112, 77, .09); border-radius: 50%; }
.lp-service-list strong { min-height: 2.7em; font-size: .9rem; line-height: 1.35; text-align: center; }
.lp-service-list__rule { width: 32px; height: 2px; margin: 11px 0 15px; background: var(--lp-copper); }
.lp-service-list p { margin: 0; color: #5a666c; font-size: .7rem; line-height: 1.72; text-align: center; }
.lp-agents__contact { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 18px; min-height: 82px; padding: 14px 16px 14px 20px; background: rgba(186, 112, 77, .09); border: 1px solid rgba(186, 112, 77, .12); border-radius: 17px; }
.lp-agents__contact-icon { width: 38px; height: 38px; color: var(--lp-copper); }
.lp-agents__contact p { margin: 0; color: #46535a; font-size: .78rem; }
.lp-agents__contact .lp-button { min-height: 48px; padding: 10px 18px; white-space: nowrap; }
.lp-location { display: flex; min-width: 0; min-height: 100%; padding: 32px 30px 27px; flex-direction: column; color: var(--lp-navy); background: var(--white); border: 1px solid rgba(22, 33, 41, .12); border-radius: 30px; box-shadow: 0 16px 35px rgba(22, 33, 41, .065); }
.lp-location__lead { position: relative; z-index: 2; max-width: 315px; margin-bottom: 10px; font-size: clamp(.94rem, 1.2vw, 1.08rem); font-weight: 800; line-height: 1.6; }
.lp-location__map { position: relative; display: grid; flex: 1; min-height: 440px; place-items: center; }
.lp-location__map > img { width: min(80%, 380px); max-height: 440px; object-fit: contain; }
.lp-location__pin { position: absolute; top: 74%; left: 25%; width: 48px; height: 48px; padding: 7px; color: var(--white); background: var(--lp-copper); border: 4px solid var(--white); border-radius: 50%; box-shadow: 0 7px 16px rgba(22, 33, 41, .2); transform: translate(-50%, -50%); }
.lp-location__pin-label { position: absolute; top: 74%; left: calc(25% + 25px); min-width: 112px; padding: 7px 12px; color: var(--white); background: var(--lp-navy); border-radius: 0 999px 999px 0; font-size: .7rem; font-weight: 800; letter-spacing: .03em; transform: translateY(-50%); }
.lp-location__foot { display: grid; gap: 4px; margin-top: 8px; text-align: center; }
.lp-location__foot strong { font-size: .75rem; letter-spacing: .12em; }
.lp-location__foot small { color: var(--muted); }
.lp-products {
  --lp-products-ink: #0f1a2e;
  --lp-products-muted: #536173;
  --lp-products-copper: #c2663f;
  background: #f6f1ec;
}
.lp-products > .container { width: min(calc(100% - clamp(28px, 6.6vw, 96px)), 1349px); }
.lp-products__head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 20px; }
.lp-products__head .lp-label { color: var(--lp-products-copper); }
.lp-products__head .lp-section-title { margin-top: 8px; color: var(--lp-products-ink); font-size: clamp(3.25rem, 5.1vw, 4.55rem); }
.lp-products__head p:not(.lp-label) { margin-bottom: 0; color: var(--lp-products-muted); font-size: clamp(.96rem, 1.35vw, 1.13rem); }
.lp-products .product-grid--count-2 { grid-template-columns: 1fr; gap: 18px; }
.lp-products .product-grid--count-2 .product-card { grid-column: auto; }
.lp-products .product-card { color: var(--lp-products-ink); background: #fdfdfd; border-color: rgba(15, 26, 46, .16); border-radius: 17px; }
.lp-products .product-card__media { background: #fdfdfd; }
.lp-products .product-card--featured { grid-template-columns: minmax(0, .43fr) minmax(0, .57fr); }
.lp-products .product-card--featured .product-card__media { height: clamp(300px, 23.8vw, 345px); }
.lp-products .product-card--featured .product-card__body { padding: clamp(25px, 3.2vw, 42px) clamp(26px, 3.6vw, 48px); }
.lp-products .product-brand,
.lp-products .product-card h3,
.lp-products .product-card .product-card__category,
.lp-products .product-card__footer > strong { color: var(--lp-products-ink); }
.lp-products .product-card .product-brand { font-size: .78rem; letter-spacing: .2em; }
.lp-products .product-card h3 { margin: 20px 0 7px; font-size: clamp(1.72rem, 2.55vw, 2.1rem); }
.lp-products .product-card .product-card__category { font-size: .86rem; }
.lp-products .product-card .product-card__summary { margin-bottom: 22px; color: var(--lp-products-muted); font-size: .82rem; }
.lp-products .product-card .product-card__auction-end { margin-top: -9px; color: var(--lp-products-copper); font-size: .75rem; }
.lp-products .status--yahoo_auction { min-height: 38px; padding: 8px 14px; color: var(--lp-products-copper); background: #fdfdfd; border-color: var(--lp-products-copper); font-size: .7rem; }
.lp-products .status--direct { color: #fdfdfd; background: var(--lp-products-copper); border-color: var(--lp-products-copper); }
.lp-products .product-card__footer { border-top-color: rgba(15, 26, 46, .18); }
.lp-products .product-card--featured .product-card__footer > strong { font-size: clamp(1.85rem, 2.65vw, 2.2rem); }
.lp-products .product-card__footer .text-link { color: var(--lp-products-copper); font-size: .82rem; }
.lp-products .lp-section-action { margin-top: 34px; }
.lp-products .lp-button { min-height: 66px; padding-inline: 30px; color: var(--lp-products-ink); border-color: var(--lp-products-ink); }
.lp-products .catalog-empty { border-left-color: var(--lp-copper); border-radius: 22px; }
.lp-company__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.lp-company__rows { margin: 0; border-top: 1px solid var(--lp-ink); }
.lp-company__rows > div { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.lp-company__rows dt { color: var(--muted); font-size: .74rem; font-weight: 750; }
.lp-company__rows dd { margin: 0; font-size: .9rem; font-weight: 650; }
.lp-contact { padding: clamp(78px, 9vw, 108px) 0 88px; }
.lp-contact__panel { min-height: 470px; padding: clamp(38px, 6vw, 70px); color: var(--white); background: var(--lp-ink); border-radius: 40px; }
.lp-contact__panel .lp-label { color: var(--lp-copper-soft); }
.lp-contact__panel h2 { margin: 18px 0 20px; font-size: clamp(3.35rem, 6vw, 5.25rem); font-weight: 680; letter-spacing: -.052em; line-height: 1.02; }
.lp-contact__brand-line { margin: 0 0 20px; color: #e5b292; font-size: clamp(1.25rem, 2.4vw, 2rem); font-weight: 750; }
.lp-contact__panel > p:not(.lp-label):not(.lp-contact__brand-line) { max-width: 760px; color: rgba(255, 255, 255, .78); }
.lp-contact__panel .lp-button { margin-top: 20px; }
.has-js .lp-reveal { opacity: 0; transform: translateY(14px); transition: opacity .65s ease, transform .65s ease; }
.has-js .lp-reveal.is-visible { opacity: 1; transform: none; }
.home-page .site-footer { background: var(--lp-ink); }

.site-footer { padding: 80px 0 24px; color: #d7dad7; background: var(--brand-ink); }
.mobile-fixed-contact { display: none; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr .7fr; gap: clamp(30px, 6vw, 80px); }
.footer-brand { display: flex; align-items: start; gap: 15px; }
.brand-mark--footer { flex: 0 0 auto; color: var(--ink); background: #d9dcd9; border-color: #d9dcd9; }
.footer-brand strong { color: var(--white); }
.footer-brand p { max-width: 290px; margin-top: 8px; color: #909691; font-size: .75rem; }
.site-footer h2 { margin-bottom: 18px; color: #8c928d; font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.site-footer p { margin-bottom: 17px; color: #a8ada9; font-size: .75rem; line-height: 1.7; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: .76rem; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-links a:hover { color: #b8ccda; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 20px; color: #737974; border-top: 1px solid #333733; font-size: .65rem; }

@media (max-width: 1020px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: .66rem; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 40px; }
  .product-grid { gap: 15px; }
  .product-card__body { padding: 20px; }
  .record-grid, .split-grid, .business-panel { gap: 55px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .lp-hero { min-height: 0; }
  .lp-hero__grid, .lp-proof__grid, .lp-agents__panel, .lp-company__grid { grid-template-columns: 1fr; }
  .lp-hero-visual { width: min(100%, 720px); height: auto; min-height: 0; aspect-ratio: 5 / 4; }
  .lp-repair-card { width: min(100%, 720px); }
  .lp-business__grid { grid-template-columns: 1fr; }
  .lp-business-card { min-height: 430px; }
  .lp-proof__panel { min-height: 0; }
  .lp-proof__backdrop { top: -5%; width: 58%; height: 38%; opacity: .08; }
  .lp-proof__evidence { top: 0; margin-top: 18px; }
  .customer-review-grid--track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-service-list { grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; }
  .lp-location { min-height: 620px; }
}

@media (max-width: 900px) {
  .product-detail-hero > .container { width: min(calc(100% - 36px), 1180px); }
  .product-detail-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .product-detail-hero__gallery { position: static; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 36px), var(--max)); }
  .products-page main .container,
  .restoration-page main .container,
  .business-page main .container,
  .track-page main .container,
  .about-page main .container { width: min(calc(100% - 36px), var(--max)); }
  .desktop-break { display: none; }
  .site-header { height: 68px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: grid; align-content: center; gap: 8px; }
  .site-nav {
    position: fixed; inset: 68px 0 auto; display: none; max-height: calc(100vh - 68px);
    padding: 18px; overflow: auto; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(20, 23, 21, .1);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; padding: 0 8px; border-bottom: 1px solid var(--line); font-size: .8rem; }
  .site-nav a::after { display: none; }
  .site-nav .language-link { padding-left: 8px; border-left: 0; }
  .language-menu { padding: 0 8px; border-left: 0; border-bottom: 1px solid var(--line); }
  .language-menu summary { display: flex; align-items: center; min-height: 48px; font-size: .8rem; }
  .language-menu > div { position: static; min-width: 0; padding: 0 0 8px 12px; background: transparent; border: 0; box-shadow: none; }
  .language-menu > div a { min-height: 42px; padding: 0 8px; border-bottom: 0; }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { transform: rotate(-90deg); }
  .hero { min-height: 0; padding: 52px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .corporate-intro__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-media { width: min(100%, 650px); }
  .photo-placeholder--hero { min-height: min(67.5vw, 390px); }
  .section-heading { align-items: start; flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card--featured { grid-column: auto; grid-template-columns: minmax(0, .46fr) minmax(0, .54fr); }
  .product-card__media, .product-card--featured .product-card__media { height: 290px; }
  .product-card h3, .product-card p { overflow-wrap: anywhere; }
  .product-detail-hero__grid, .product-sales-guide__grid, .product-track-record__grid { grid-template-columns: 1fr; }
  .product-detail-hero__gallery { position: static; }
  .condition-grid { grid-template-columns: 1fr; }
  .product-track-record__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .product-track-record__grid > div:first-child { grid-column: 1 / -1; }
  .product-track-record__grid > div:not(:first-child) { padding: 0; border-left: 0; }
  .record-grid, .split-grid, .business-panel, .company-grid, .product-info-grid, .business-page-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .record-grid { gap: 55px; }
  .business-panel { padding: 40px; }
  .section-visual { min-height: 430px; }
  .split-grid--page .section-visual { order: 2; }
  .contact-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .lp-stats__grid { grid-template-columns: 1fr 1fr; }
  .lp-stat:nth-child(2) { border-right: 0; }
  .lp-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .lp-process { grid-template-columns: 1fr 1fr; }
  .lp-process__step:nth-child(2) { border-right: 0; }
  .lp-process__step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .lp-proof__shell { width: min(calc(100% - 36px), 1713px); }
  .lp-agents__shell { width: min(calc(100% - 36px), 1728px); }
  .lp-proof__panel, .lp-agents__panel { border-radius: 34px; }
  .lp-service-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .track-record-cards { grid-template-columns: 1fr; }
  .customer-review-grid--home, .customer-review-grid--track { grid-template-columns: 1fr; }
  .track-record-card { min-height: 0; }
  .track-record-action { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  html:lang(ja) .restoration-page .makers {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    column-gap: 18px;
  }
  html:lang(ja) .restoration-page .makers p,
  html:lang(ja) .restoration-page .makers small { grid-column: 1 / -1; }
  html:lang(ja) .restoration-page .makers strong {
    margin-right: 0;
    font-size: 1.5rem;
    white-space: nowrap;
  }
  html { scroll-padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    font-size: 15px;
  }
  .mobile-fixed-contact {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: calc(68px + env(safe-area-inset-bottom, 0px));
    padding: 7px 12px calc(7px + env(safe-area-inset-bottom, 0px));
    background: rgba(245, 241, 232, .98);
    border-top: 1px solid rgba(22, 33, 41, .14);
    box-shadow: 0 -8px 24px rgba(22, 33, 41, .1);
    backdrop-filter: blur(12px);
  }
  .mobile-fixed-contact__icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--brand-copper);
  }
  .mobile-fixed-contact__icon .lp-line-icon { width: 34px; height: 34px; }
  .mobile-fixed-contact__link {
    display: flex;
    min-width: 0;
    min-height: 52px;
    padding: 8px 20px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--brand-navy);
    background: rgba(255, 253, 248, .58);
    border: 1.5px solid var(--brand-ink);
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .01em;
    line-height: 1.2;
    text-decoration: none;
  }
  .mobile-fixed-contact__link > span:last-child { font-size: 1.2rem; font-weight: 500; }
  .mobile-fixed-contact__link:focus-visible {
    outline: 3px solid var(--brand-copper);
    outline-offset: 2px;
  }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .products-page main .container,
  .restoration-page main .container,
  .business-page main .container,
  .track-page main .container,
  .about-page main .container { width: min(calc(100% - 28px), var(--max)); }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { font-size: .8rem; }
  .corporate-intro { padding: 36px 0; }
  .corporate-intro__grid { padding-left: 18px; }
  .corporate-intro__copy p { font-size: .95rem; }
  .hero-copy h1, .hero-copy h2 { font-size: clamp(1.9rem, 8.5vw, 2.35rem); line-height: 1.14; }
  .hero .button, .section-copy .button { width: 100%; }
  .photo-placeholder--hero { min-height: 69vw; }
  .hero-spec span { padding-inline: 5px; }
  .section { padding: 78px 0; }
  .section--topless { padding-top: 8px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading .button { width: 100%; }
  .product-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-card, .product-card--featured { grid-template-columns: 1fr; }
  .product-card__media, .product-card--featured .product-card__media { height: auto; min-height: 0; aspect-ratio: 16 / 11; }
  .product-card__body, .product-card--featured .product-card__body { padding: 22px 19px; }
  .lp-products .product-card--featured { grid-template-columns: 1fr; }
  .lp-products .product-card--featured .product-card__media { height: auto; min-height: 0; aspect-ratio: 16 / 11; }
  .lp-products .product-card--featured .product-card__body { padding: 22px 19px; }
  .lp-products__head .lp-section-title { font-size: clamp(2.6rem, 14vw, 3.5rem); }
  .product-card__footer { align-items: flex-start; flex-direction: column; }
  .photo-placeholder--card { min-height: 235px; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric { padding: 30px 22px; }
  .section-visual { min-height: 320px; }
  .business-panel { gap: 30px; padding: 28px 22px; }
  .check-list { grid-template-columns: 1fr; }
  .button-row { display: grid; }
  .company-summary div { grid-template-columns: 1fr; gap: 6px; }
  .page-hero,
  .restoration-page .page-hero,
  .business-page .page-hero,
  .track-page .page-hero,
  .about-page .page-hero { padding: 65px 0 46px; }
  .page-hero__inner { padding-bottom: 38px; }
  .filters { display: grid; grid-template-columns: 1fr 1fr; }
  .filter { width: 100%; }
  .product-detail-hero { padding: 24px 0 54px; }
  .product-detail-hero > .container { width: min(calc(100% - 32px), 1180px); }
  .breadcrumbs { margin-bottom: 24px; }
  .product-detail-summary h1, .product-overview, .product-price > small { overflow-wrap: anywhere; }
  .product-detail-summary h1 { font-size: 1.875rem; line-height: 1.16; }
  .product-facts { gap: 6px; margin-bottom: 17px; }
  .product-facts div { padding: 6px 9px; }
  .product-sales-panel__head { align-items: flex-start; flex-direction: column; }
  .product-sales-panel { padding: 18px 16px; }
  .product-sales-copy { font-size: .82rem; }
  .product-sales-notice { padding: 12px; }
  .product-sales-notice p { font-size: .78rem; }
  .sales-rules div { grid-template-columns: 1fr; gap: 5px; }
  .sales-flow { display: grid; }
  .maintenance-list span { display: block; margin: 5px 0 0 28px; }
  .product-photo-grid { grid-template-columns: 1fr; }
  .product-track-record__grid { grid-template-columns: 1fr; }
  .product-track-record__grid > div:first-child { grid-column: auto; }
  .product-contact__actions, .product-contact__actions--single { grid-template-columns: 1fr; }
  .photo-placeholder--detail { min-height: 67.5vw; }
  .gallery-support span { padding-inline: 6px; text-align: center; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .spec-list div { grid-template-columns: 110px 1fr; gap: 15px; }
  .detail-block { grid-template-columns: 38px 1fr; gap: 16px; padding: 45px 0; }
  .photo-placeholder--workshop { min-height: 300px; }
  .restoration-page .split-grid--page {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .restoration-page .section-copy { display: contents; }
  .restoration-page .section-copy h2 { order: 1; margin-bottom: 13px; }
  .restoration-page .section-visual--photo {
    order: 2;
    min-height: 0;
    margin-bottom: 18px;
    border-radius: 7px;
  }
  .restoration-page .section-copy > p { order: 3; }
  .restoration-page .section-copy .makers { order: 4; }
  .restoration-page .section-copy .button { order: 5; }
  .restoration-page .visual-caption { display: none; }
  .restoration-slideshow,
  .restoration-slideshow__frame {
    min-height: 0;
    overflow: hidden;
    border-radius: 7px;
  }
  .restoration-slideshow__frame { aspect-ratio: 2.68 / 1; }
  .restoration-slideshow__slide--overview { object-position: 50% 8%; }
  .restoration-slideshow__slide--hands { object-position: 50% 44%; }
  .restoration-slideshow__slide--mechanism { object-position: 50% 28%; }
  .restoration-page .page-lead,
  .track-page .page-lead { white-space: normal; }
  .products-page .page-hero h1,
  .restoration-page .page-hero h1,
  .business-page .page-hero h1,
  .track-page .page-hero h1,
  .about-page .page-hero h1 { font-size: 2.5rem; }
  /* Japanese restoration reference: readable mobile flow, never viewport-height compression. */
  html:lang(ja) .restoration-page main .container { width: calc(100% - 40px); }
  html:lang(ja) .restoration-page .page-hero { padding: 16px 0 0; }
  html:lang(ja) .restoration-page .page-hero .eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: .56rem; letter-spacing: .12em; }
  html:lang(ja) .restoration-page .page-hero .eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--brand-copper); }
  html:lang(ja) .restoration-page .page-hero h1 { margin-bottom: 14px; font-size: clamp(1.65rem, 8.2vw, 2rem); font-weight: 800; line-height: 1.25; }
  html:lang(ja) .restoration-page .page-lead { margin-bottom: 0; font-size: .875rem; line-height: 1.55; color: var(--muted); }
  html:lang(ja) .restoration-page .page-hero__inner { padding-bottom: 17px; }
  html:lang(ja) .restoration-page .section--topless { padding-top: 20px; }
  html:lang(ja) .restoration-page .section-copy h2 { margin-bottom: 14px; font-size: clamp(1.5rem, 7.2vw, 1.8rem); font-weight: 800; line-height: 1.4; }
  html:lang(ja) .restoration-page .section-copy h2 .desktop-break,
  html:lang(ja) .restoration-page .page-lead .desktop-break { display: initial; }
  html:lang(ja) .restoration-page .restoration-slideshow__indicators { padding: 9px; }
  html:lang(ja) .restoration-page .restoration-slideshow__frame { aspect-ratio: 2 / 1; }
  html:lang(ja) .restoration-page .section-visual--photo { margin-bottom: 14px; box-shadow: none; }
  html:lang(ja) .restoration-page .section-copy > p { margin-bottom: 14px; font-size: .875rem; line-height: 1.65; color: var(--muted); }
  html:lang(ja) .restoration-page .section-copy > p br { display: none; }
  html:lang(ja) .restoration-page .makers { margin: 2px 0 8px; padding-top: 14px; }
  html:lang(ja) .restoration-page .makers p { margin-bottom: 5px; font-size: .65rem; }
  html:lang(ja) .restoration-page .makers strong { font-family: Arial, sans-serif; font-size: 1.4rem; line-height: 1.3; }
  html:lang(ja) .restoration-page .makers small { margin-top: 7px; font-size: .7rem; }
  html:lang(ja) .restoration-page .section-copy .button { width: 100%; min-height: 42px; padding: 9px 14px; font-size: .875rem; }
  .service-list li { grid-template-columns: 42px 1fr; }
  .about-list > div { grid-template-columns: 1fr; gap: 8px; }
  html:lang(ja) .about-page main .container { width: calc(100% - 36px); }
  html:lang(ja) .about-page .page-hero { padding: 18px 0 14px; }
  html:lang(ja) .about-page .page-hero__inner { padding-bottom: 0; border: 0; }
  html:lang(ja) .about-page .page-hero .eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; font-size: .56rem; letter-spacing: .16em; }
  html:lang(ja) .about-page .page-hero .eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brand-copper); }
  html:lang(ja) .about-page .page-hero h1 { margin-bottom: 14px; font-size: 2rem; font-weight: 800; line-height: 1.25; }
  html:lang(ja) .about-page .page-lead { margin-bottom: 0; font-size: .90625rem; line-height: 1.65; }
  html:lang(ja) .about-page .section--topless { padding-top: 0; }
  html:lang(ja) .about-page .about-mobile-banners { display: grid; gap: 8px; margin-bottom: 18px; }
  html:lang(ja) .about-page .about-mobile-banners img { width: 100%; height: auto; aspect-ratio: 3.4 / 1; object-fit: cover; object-position: 50% 30%; border-radius: 6px; }
  html:lang(ja) .about-page .about-mobile-banners img + img { object-position: 50% 20%; }
  html:lang(ja) .about-page .about-list > div { grid-template-columns: minmax(0, .3fr) minmax(0, .7fr); gap: 12px; padding: 12px 0; }
  html:lang(ja) .about-page .about-list dt { font-size: .75rem; font-weight: 800; line-height: 1.5; overflow-wrap: anywhere; }
  html:lang(ja) .about-page .about-list dd { font-size: .8125rem; line-height: 1.6; overflow-wrap: anywhere; }
  html:lang(ja) .about-page .about-list dd span + span { margin-top: 5px; color: var(--ink); font-size: inherit; }
  html:lang(ja) .about-page .about-copy-desktop { display: none; }
  html:lang(ja) .about-page .about-copy-mobile { display: block; margin: 0; }
  html:lang(ja) .about-page .about-copy-mobile > span { display: block; margin: 0; white-space: nowrap; }
  html:lang(ja) .about-page .page-lead .about-copy-mobile { font-size: clamp(.65rem, 3.45vw, .90625rem); }
  html:lang(ja) .about-page .about-audio-business .about-copy-mobile { font-size: clamp(.6rem, 3.1vw, .8125rem); }
  html:lang(ja) .about-page .about-list dd .about-copy-mobile > span { margin: 0; font-size: inherit; }
  .contact-form { padding: 23px 18px; }
  html:lang(ja) .contact-page main .container { width: calc(100% - 36px); }
  html:lang(ja) .contact-page .page-hero { padding: 22px 0 20px; }
  html:lang(ja) .contact-page .page-hero__inner { padding-bottom: 20px; }
  html:lang(ja) .contact-page .page-hero .eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; font-size: .6rem; letter-spacing: .16em; }
  html:lang(ja) .contact-page .page-hero .eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--brand-copper); }
  html:lang(ja) .contact-page .page-hero h1 { margin-bottom: 18px; font-size: 2.25rem; font-weight: 800; line-height: 1.25; }
  html:lang(ja) .contact-page .page-lead { margin-bottom: 0; font-size: .9375rem; line-height: 1.65; color: var(--muted); }
  html:lang(ja) .contact-page .section--topless { padding-top: 0; }
  html:lang(ja) .contact-page .contact-grid { gap: 24px; }
  html:lang(ja) .contact-page .notice-box { padding: 18px 20px; border-radius: 7px; overflow: hidden; }
  html:lang(ja) .contact-page .notice-box strong { font-size: .9375rem; line-height: 1.5; }
  html:lang(ja) .contact-page .notice-box p { margin-top: 7px; font-size: .875rem; line-height: 1.6; }
  html:lang(ja) .contact-page .contact-copy-desktop { display: none; }
  html:lang(ja) .contact-page .contact-copy-mobile,
  html:lang(ja) .contact-page .contact-copy-mobile > span { display: block; }
  html:lang(ja) .contact-page .contact-copy-mobile > span { white-space: nowrap; }
  html:lang(ja) .contact-page .notice-box .contact-copy-mobile { font-size: min(.875rem, calc((100vw - 84px) / 25)); }
  html:lang(ja) .contact-page .contact-intro > p { margin: 14px 0 0; font-size: .8125rem; line-height: 1.65; }
  html:lang(ja) .contact-page .contact-form { padding: 16px; border-radius: 12px; }
  html:lang(ja) .contact-page .form-row { margin-bottom: 18px; }
  html:lang(ja) .contact-page .form-row label { margin-bottom: 7px; font-size: .8125rem; line-height: 1.5; }
  html:lang(ja) .contact-page .form-row input,
  html:lang(ja) .contact-page .form-row textarea { padding: 10px 11px; border-radius: 6px; font-size: 16px; line-height: 1.5; }
  html:lang(ja) .contact-page .form-row textarea { min-height: 150px; }
  html:lang(ja) .contact-page .contact-form .button { width: 100%; min-height: 46px; font-size: .875rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .lp-hero { padding: 44px 0 42px; }
  .lp-hero h1 { font-size: clamp(2.65rem, 11.5vw, 3.45rem); line-height: 1.02; }
  .lp-hero h1:lang(ja) { font-size: clamp(2.65rem, 11.5vw, 3.45rem); }
  .lp-hero h1:lang(en) { font-size: clamp(2.65rem, 11.5vw, 3.45rem); }
  .lp-hero__lead { font-size: 1rem; line-height: 1.75; }
  .lp-actions { display: grid; grid-template-columns: 1fr; }
  .lp-actions .lp-button, .lp-actions .button { width: 100%; }
  .lp-hero-visual { aspect-ratio: 4 / 5; border-radius: 26px; }
  .lp-hero-visual__top, .lp-hero-visual__foot { right: 18px; left: 18px; font-size: .53rem; }
  .lp-stats { padding-bottom: 56px; }
  .lp-stats__grid { grid-template-columns: 1fr; }
  .lp-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .lp-stat:last-child { border-bottom: 0; }
  .lp-section { padding: 72px 0; }
  .lp-section-title { font-size: 2.55rem; }
  .lp-business-card { min-height: 430px; padding: 28px; }
  .lp-business .lp-section-title { font-size: 2.1rem; }
  .lp-business .lp-section-title span:first-child { white-space: nowrap; }
  .lp-business-card h3 { font-size: 1.8rem; }
  .lp-proof__scores { grid-template-columns: 1fr; }
  .lp-proof__shell { width: min(calc(100% - 20px), 1713px); }
  .lp-agents__shell { width: min(calc(100% - 20px), 1728px); }
  .lp-proof__panel { padding: 34px 22px; border-radius: 28px; }
  .lp-proof__copy .lp-section-title { margin: 28px 0 28px; font-size: 2.45rem; line-height: 1.12; }
  .lp-proof__copy .lp-section-title span { white-space: normal; }
  .lp-proof .lp-button { width: 100%; margin-top: 34px; }
  .lp-proof__backdrop { top: 0; right: -18%; width: 110%; height: 300px; opacity: .08; }
  .lp-score { min-height: 330px; padding: 27px 19px 23px; }
  .lp-proof__trust { align-items: flex-start; text-align: left; }
  .lp-process { grid-template-columns: 1fr; }
  .lp-process__step { min-height: 205px; border-right: 0; border-bottom: 1px solid var(--line); }
  .lp-process__step:last-child { border-bottom: 0; }
  .lp-agents__panel { padding: 32px 18px; border-radius: 28px; }
  .lp-agents__title { font-size: 2.35rem; }
  .lp-service-list { grid-template-columns: 1fr; overflow: visible; }
  .lp-service-list li { min-height: 235px; padding: 22px 24px; }
  .lp-service-list strong { min-height: auto; font-size: 1rem; }
  .lp-service-list p { max-width: 300px; font-size: .78rem; }
  .lp-agents__contact { grid-template-columns: auto 1fr; padding: 18px; }
  .lp-agents__contact .lp-button { grid-column: 1 / -1; width: 100%; }
  .lp-location { min-height: 535px; padding: 26px 20px 22px; }
  .lp-location__map { min-height: 330px; }
  .lp-location__map > img { width: min(78%, 280px); max-height: 330px; }
  .lp-location__pin { top: 75%; left: 24%; width: 44px; height: 44px; }
  .lp-location__pin-label { top: 75%; left: calc(24% + 22px); }
  .lp-products__head { display: block; }
  .lp-company__rows > div { grid-template-columns: 1fr; gap: 6px; }
  .lp-contact { padding: 72px 0 68px; }
  .lp-contact__panel { min-height: 430px; padding: 34px 25px; border-radius: 28px; }
  .lp-contact__panel h2 { font-size: 3rem; }
  .lp-contact__panel .lp-button { width: 100%; }
  .track-record-intro { margin-bottom: 34px; }
  .track-record-intro h2 { font-size: 2.25rem; }
  .track-record-card { padding: 26px 22px; border-radius: 20px; }
  .track-record-card__icon { margin-bottom: 28px; }
  .customer-reviews__header { margin-bottom: 25px; text-align: left; }
  .customer-reviews__header h2 { font-size: 2rem; }
  .customer-reviews__header h2::after { margin-left: 0; }
  .customer-review-card, .customer-review-card--track { min-height: 0; padding: 24px 20px; }
  .customer-review__footer { align-items: flex-start; flex-direction: column; }
  .customer-review__meta time::before { display: none; }
  .lp-reviews { padding-top: 18px; }
  .lp-reviews__action .lp-button { width: 100%; }
  .track-record-action .button { width: 100%; }

  /* Compact Japanese catalog: mobile only; product data and desktop layout stay intact. */
  html:lang(ja) .products-page main .container { width: calc(100% - 26px); }
  html:lang(ja) .products-page .page-hero { padding: 17px 0 17px; }
  html:lang(ja) .products-page .page-hero__inner { padding-bottom: 0; border: 0; }
  html:lang(ja) .products-page .page-hero .eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; font-size: .56rem; letter-spacing: .13em; }
  html:lang(ja) .products-page .page-hero .eyebrow::before { content: ""; width: 21px; height: 2px; background: var(--brand-copper); }
  html:lang(ja) .products-page .page-hero h1 { margin-bottom: 9px; font-size: 2rem; font-weight: 800; line-height: 1.2; }
  html:lang(ja) .products-page .page-lead { font-size: .875rem; line-height: 1.65; }
  html:lang(ja) .products-page .section--topless { padding-top: 0; }
  html:lang(ja) .products-page .product-grid--catalog { grid-template-columns: 1fr; gap: 8px; }
  html:lang(ja) .products-page .product-grid--catalog .product-card {
    grid-column: auto;
    grid-template-columns: minmax(0, .375fr) minmax(0, .625fr);
    gap: 19px;
    min-height: 142px;
    padding: 8px;
    background: rgba(255, 255, 255, .62);
    border-radius: 9px;
  }
  html:lang(ja) .products-page .product-card .product-card__media { height: 100%; min-height: 88px; aspect-ratio: auto; border-radius: 4px; }
  html:lang(ja) .products-page .product-card__media img { object-fit: cover; }
  html:lang(ja) .products-page .product-card .product-card__body { position: relative; padding: 0 7px 0 0; }
  html:lang(ja) .products-page .product-card__top { gap: 4px; margin-bottom: 3px; }
  html:lang(ja) .products-page .product-brand { font-size: .5rem; letter-spacing: .18em; }
  html:lang(ja) .products-page .status { min-height: 16px; padding: 1px 5px; font-size: .43rem; letter-spacing: 0; line-height: 1.6; }
  html:lang(ja) .products-page .status--yahoo_auction { color: var(--brand-copper); border-color: var(--brand-copper); }
  html:lang(ja) .products-page .product-card h3 { margin: 0 0 2px; font-family: Arial, sans-serif; font-size: .9rem; font-weight: 700; line-height: 1.2; letter-spacing: -.035em; }
  html:lang(ja) .products-page .product-card .product-card__category { margin: 0 0 5px; font-family: Arial, sans-serif; font-size: .57rem; line-height: 1.3; }
  html:lang(ja) .products-page .product-card .product-card__summary { display: block; margin: 0 0 5px; padding-right: 12px; overflow: visible; font-size: .56rem; line-height: 1.5; }
  html:lang(ja) .products-page .product-card .product-card__auction-end { margin: 0; padding-top: 5px; border-top: 1px solid var(--line); color: var(--brand-copper); font-size: .45rem; line-height: 1.5; }
  html:lang(ja) .products-page .product-card__footer { margin-top: auto; padding-top: 1px; border: 0; }
  html:lang(ja) .products-page .product-card .product-card__footer > strong { color: var(--brand-copper); font-family: Arial, sans-serif; font-size: 1.125rem; line-height: 1.25; }
  html:lang(ja) .products-page .product-card__footer .text-link { position: absolute; top: 50%; right: 0; transform: translateY(-50%); font-size: 0; }
  html:lang(ja) .products-page .product-card__footer .text-link > span { font-size: .8rem; }

  html:lang(ja) .track-page .page-hero {
    padding: 13px 0 0;
  }
  html:lang(ja) .track-page .page-hero__inner {
    padding-bottom: 0;
    border-bottom: 0;
  }
  html:lang(ja) .track-page .page-hero .eyebrow {
    margin-bottom: 7px;
    font-size: .61rem;
    letter-spacing: .17em;
  }
  html:lang(ja) .track-page .page-hero h1 {
    margin-bottom: 0;
    font-size: 1.78rem;
    line-height: 1.15;
  }
  html:lang(ja) .track-page .page-hero .page-lead { display: none; }
  html:lang(ja) .track-page .track-record-section {
    padding: 0 0 64px;
  }
  html:lang(ja) .track-page main .container { width: min(calc(100% - 36px), var(--max)); }
  html:lang(ja) .track-page .track-record-intro {
    margin: 27px 0 23px;
  }
  html:lang(ja) .track-page .track-record-intro > .eyebrow { display: none; }
  html:lang(ja) .track-page .track-record-intro h2 {
    margin: 0 0 11px;
    font-size: 1.46rem;
    line-height: 1.55;
    letter-spacing: -.045em;
  }
  html:lang(ja) .track-page .track-record-intro__title--desktop { display: none; }
  html:lang(ja) .track-page .track-record-intro__title--mobile { display: inline; }
  html:lang(ja) .track-page .track-record-intro > p:last-child {
    color: #53636c;
    font-size: .72rem;
    font-weight: 500;
    line-height: 2.05;
  }
  html:lang(ja) .track-page .track-record-intro__body--desktop { display: none; }
  html:lang(ja) .track-page .track-record-intro__body--mobile { display: inline; }
  html:lang(ja) .track-page .track-record-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(22, 33, 41, .12);
    border-radius: 13px;
  }
  html:lang(ja) .track-page .track-record-card {
    display: flex;
    min-height: 114px;
    padding: 14px 17px 12px;
    align-items: flex-start;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  html:lang(ja) .track-page .track-record-card:nth-child(odd) { border-right: 1px solid rgba(22, 33, 41, .1); }
  html:lang(ja) .track-page .track-record-card:nth-child(n+3) { border-top: 1px solid rgba(22, 33, 41, .1); }
  html:lang(ja) .track-page .track-record-card__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 11px;
    color: var(--brand-navy);
  }
  html:lang(ja) .track-page .track-record-card strong {
    gap: 3px;
    font-size: 1.72rem;
    line-height: 1;
  }
  html:lang(ja) .track-page .track-record-card__unit {
    font-size: .34em;
    letter-spacing: .03em;
  }
  html:lang(ja) .track-page .track-record-card small,
  html:lang(ja) .track-page .track-record-card__divider,
  html:lang(ja) .track-page .track-record-card > p:not(.track-record-card__mobile-text) { display: none; }
  html:lang(ja) .track-page .track-record-card .track-record-card__mobile-text {
    display: block;
    margin-top: 7px;
    color: #68747a;
    font-size: .57rem;
    line-height: 1.35;
  }
  html:lang(ja) .track-page .track-record-card--mobile-only { display: flex; }
  html:lang(ja) .track-page .track-record-mobile-note {
    display: block;
    margin: 12px 0 0;
    color: #68747a;
    font-size: .52rem;
    line-height: 1.55;
  }

  html:lang(ja) .home-page .lp-hero { padding: 20px 0 34px; }
  html:lang(ja) .home-page .lp-hero__grid { gap: 18px; }
  html:lang(ja) .home-page .lp-hero__copy { display: block; }
  html:lang(ja) .home-page .lp-hero__copy .lp-label {
    gap: 9px;
    font-size: .54rem;
    letter-spacing: .14em;
  }
  html:lang(ja) .home-page .lp-hero__copy .lp-label::before { width: 25px; }
  html:lang(ja) .home-page .lp-hero h1 {
    margin: 16px 0 11px;
    font-size: clamp(1.88rem, 8.8vw, 2.2rem);
    line-height: 1.04;
  }
  html:lang(ja) .home-page .lp-hero__lead {
    margin-bottom: 17px;
    font-size: .62rem;
    line-height: 1.95;
  }
  html:lang(ja) .home-page .lp-hero__lead--desktop { display: none; }
  html:lang(ja) .home-page .lp-hero__lead--mobile { display: block; }
  html:lang(ja) .home-page .lp-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  html:lang(ja) .home-page .lp-actions .lp-button {
    min-height: 38px;
    padding: 8px 11px;
    gap: 7px;
    border-radius: 7px;
    font-size: .64rem;
  }
  html:lang(ja) .home-page .lp-actions .lp-button--primary span { font-size: 0; }
  html:lang(ja) .home-page .lp-actions .lp-button--primary span::after { content: "→"; font-size: .72rem; }
  .home-page .lp-repair-card {
    grid-template-columns: minmax(0, .38fr) minmax(0, .62fr);
    column-gap: 13px;
    row-gap: 0;
    margin-top: 18px;
    padding: 38px 12px 12px;
    border-color: var(--line);
    border-radius: 13px;
  }
  .home-page .lp-repair-card__eyebrow { top: 14px; left: 12px; color: var(--lp-copper); font-size: .62rem; }
  .home-page .lp-repair-card__eyebrow::before { display: none; }
  .home-page .lp-repair-card__image { grid-column: 1; grid-row: 1 / 4; height: 100%; min-height: 0; aspect-ratio: auto; object-position: 50% 60%; }
  .home-page .lp-repair-card__content { display: contents; }
  .home-page .lp-repair-card h2 { grid-column: 2; grid-row: 1; align-self: start; margin: 0 0 6px; font-size: .98rem; line-height: 1.35; }
  .home-page .lp-repair-card h2 .desktop-break { display: inline; }
  .home-page .lp-repair-card__models { grid-column: 2; grid-row: 2; align-self: start; margin: 0 0 8px; font-size: .72rem; line-height: 1.45; }
  .home-page .lp-repair-card__lead { grid-column: 2; grid-row: 3; align-self: start; display: block; margin: 0; color: var(--muted); font-size: .58rem; line-height: 1.5; }
  .home-page .lp-repair-card__link { grid-column: 2; grid-row: 4; width: min(100%, 180px); min-height: 38px; margin-top: 11px; border-radius: 8px; font-size: .68rem; }
  html:lang(ja) .home-page .lp-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 23px 0 0;
    font-size: clamp(.5rem, 2.35vw, .59rem);
    letter-spacing: .075em;
    white-space: nowrap;
  }
  html:lang(ja) .home-page .lp-hero__meta span { position: relative; text-align: center; }
  html:lang(ja) .home-page .lp-hero__meta span:first-child { text-align: left; }
  html:lang(ja) .home-page .lp-hero__meta span:last-child { text-align: right; }
  html:lang(ja) .home-page .lp-hero__meta span + span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 12px;
    background: var(--line);
    transform: translateY(-50%);
  }
  html:lang(ja) .home-page .lp-featured-product {
    grid-template-columns: minmax(0, .47fr) minmax(0, .53fr);
    grid-template-rows: auto auto;
    align-items: center;
    width: calc(100% + 18px);
    height: auto;
    min-height: 0;
    margin-left: -9px;
    aspect-ratio: auto;
    border-radius: 15px;
  }
  html:lang(ja) .home-page .lp-featured-product__head { grid-column: 1 / -1; grid-row: 1; padding: 18px 18px 10px; }
  html:lang(ja) .home-page .lp-featured-product__meta { align-items: start; }
  html:lang(ja) .home-page .lp-featured-product__meta > span:first-child {
    max-width: 88px;
    font-size: .59rem;
    line-height: 1.55;
  }
  html:lang(ja) .home-page .lp-featured-product__head h2 {
    margin: 14px 0 5px;
    font-size: clamp(1.18rem, 5.4vw, 1.38rem);
    line-height: 1.12;
  }
  html:lang(ja) .home-page .lp-featured-product__head p { font-size: .7rem; line-height: 1.55; }
  html:lang(ja) .home-page .lp-featured-product__head .lp-featured-product__auction-end {
    margin-top: 7px;
    font-size: .64rem;
  }
  html:lang(ja) .home-page .lp-featured-product__footer {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    gap: 8px;
    margin: 0 0 0 18px;
    padding: 2px 0 16px;
    border-top: 0;
  }
  html:lang(ja) .home-page .lp-featured-product__footer > strong {
    color: var(--lp-copper);
    font-size: 1.7rem;
  }
  html:lang(ja) .home-page .lp-featured-product__footer .text-link {
    display: flex;
    width: min(200px, 100%);
    min-height: 37px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 15px;
    color: var(--white);
    background: var(--lp-copper);
    border-radius: 7px;
    font-size: .7rem;
    font-weight: 800;
    text-decoration: none;
  }
  html:lang(ja) .home-page .lp-hero-visual--product .lp-hero-visual__image {
    grid-column: 2;
    grid-row: 2;
    width: auto;
    height: auto;
    margin: 0 18px 16px 10px;
    overflow: hidden;
    aspect-ratio: 2.08 / 1;
    border-radius: 7px;
  }
  html:lang(ja) .home-page .lp-hero-visual--product .lp-hero-visual__image img { object-fit: cover; }

  html:lang(ja) .home-page .lp-business { padding-top: 74px; }
  html:lang(ja) .home-page .lp-business > .container > .lp-label,
  html:lang(ja) .home-page .lp-business > .container > .lp-section-title,
  html:lang(ja) .home-page .lp-business > .container > .lp-section-intro {
    width: 95%;
    margin-left: 5%;
  }
  html:lang(ja) .home-page .lp-business > .container > .lp-label {
    font-size: clamp(.66rem, 2.8vw, .75rem);
    letter-spacing: .38em;
  }
  html:lang(ja) .home-page .lp-business .lp-section-title {
    margin-top: 21px;
    margin-bottom: 18px;
    font-size: clamp(2.05rem, 9.05vw, 2.5rem);
    line-height: 1.43;
  }
  html:lang(ja) .home-page .lp-business .lp-section-title span { white-space: nowrap; }
  html:lang(ja) .home-page .lp-business .lp-section-intro {
    margin-bottom: 43px;
    font-size: clamp(.95rem, 4.2vw, 1.08rem);
    line-height: 2.25;
  }
  html:lang(ja) .home-page .lp-business-mobile-break { display: block; }

  html:lang(ja) .home-page .lp-proof { padding: 58px 0 24px; }
  html:lang(ja) .home-page .lp-proof__panel {
    min-height: 0;
    padding: 34px 24px 27px;
    border-radius: 28px;
  }
  html:lang(ja) .home-page .lp-proof__grid { display: block; min-height: 0; }
  html:lang(ja) .home-page .lp-proof__copy .lp-section-title {
    margin: 9px 0 18px;
    font-size: clamp(1.65rem, 6.2vw, 1.8rem);
    line-height: 1.22;
  }
  html:lang(ja) .home-page .lp-proof__copy .lp-section-title::after {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin-top: 17px;
    background: var(--lp-copper-soft);
  }
  html:lang(ja) .home-page .lp-proof__copy > p:not(.lp-label) { margin-bottom: 0; font-size: .8rem; line-height: 1.7; }
  html:lang(ja) .home-page .lp-proof__record-text--desktop { display: none; }
  html:lang(ja) .home-page .lp-proof__record-text--mobile { display: inline; }
  html:lang(ja) .home-page .lp-proof .lp-button { min-height: 42px; margin-top: 10px; padding: 9px 20px; font-size: .73rem; }
  html:lang(ja) .home-page .lp-proof__evidence { margin-top: 10px; }
  html:lang(ja) .home-page .lp-proof__scores {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(117, 181, 215, .48);
    border-radius: 14px;
  }
  html:lang(ja) .home-page .lp-score {
    min-height: 132px;
    padding: 12px 7px 11px;
    background: rgba(7, 47, 73, .42);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  html:lang(ja) .home-page .lp-score:nth-child(odd) { border-right: 1px solid rgba(117, 181, 215, .48); }
  html:lang(ja) .home-page .lp-score:nth-child(n+3) { border-top: 1px solid rgba(117, 181, 215, .48); }
  html:lang(ja) .home-page .lp-score__icon { width: 25px; height: 25px; margin-bottom: 7px; color: var(--lp-copper-soft); }
  html:lang(ja) .home-page .lp-score strong { font-size: clamp(1.55rem, 7vw, 1.85rem); }
  html:lang(ja) .home-page .lp-score__unit { font-size: .52em; }
  html:lang(ja) .home-page .lp-score small { margin-top: 5px; padding: 0; border: 0; font-size: .68rem; }
  html:lang(ja) .home-page .lp-score__divider { display: none; }
  html:lang(ja) .home-page .lp-score p { margin-top: 6px; font-size: .56rem; line-height: 1.45; }
  html:lang(ja) .home-page .lp-score--languages { display: flex; }
  html:lang(ja) .home-page .lp-score--languages strong { font-size: clamp(1.4rem, 6.2vw, 1.65rem); }
  html:lang(ja) .home-page .lp-proof__trust { gap: 10px; margin-top: 20px; font-size: .73rem; line-height: 1.65; }

  html:lang(ja) .home-page .lp-agents { padding: 58px 0; }
  html:lang(ja) .home-page .lp-agents__panel {
    display: grid;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  html:lang(ja) .home-page .lp-agents__intro-card {
    display: block;
    padding: 28px 20px 25px;
    background: #ece3d4;
    border: 1px solid rgba(22, 33, 41, .05);
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(22, 33, 41, .06);
  }
  html:lang(ja) .home-page .lp-agents__title { margin: 14px 0 19px; font-size: 2.1rem; line-height: 1.18; }
  html:lang(ja) .home-page .lp-agents__intro { margin-bottom: 16px; font-size: .86rem; line-height: 1.9; }
  html:lang(ja) .home-page .lp-service-list__heading {
    display: block;
    margin: 26px 0 28px;
    color: var(--lp-navy);
    font-size: 1.25rem;
    text-align: center;
  }
  html:lang(ja) .home-page .lp-service-list__heading::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    margin: 12px auto 0;
    background: var(--lp-copper);
  }
  html:lang(ja) .home-page .lp-service-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin: 0 4px 27px;
  }
  html:lang(ja) .home-page .lp-service-list li { min-height: 153px; padding: 13px 7px 12px; }
  html:lang(ja) .home-page .lp-service-list li:nth-child(-n+3) { grid-column: span 2; }
  html:lang(ja) .home-page .lp-service-list li:nth-child(n+4) { grid-column: span 3; }
  html:lang(ja) .home-page .lp-service-list__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 9px;
    padding: 11px;
    color: var(--lp-copper);
  }
  html:lang(ja) .home-page .lp-service-list strong { min-height: auto; font-size: .78rem; }
  html:lang(ja) .home-page .lp-service-list__rule { display: none; }
  html:lang(ja) .home-page .lp-service-list p { margin-top: 8px; font-size: .61rem; line-height: 1.55; }
  html:lang(ja) .home-page .lp-agents__contact {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 8px;
    min-height: 68px;
    padding: 9px 10px;
    border-radius: 14px;
  }
  html:lang(ja) .home-page .lp-agents__contact-icon { width: 32px; height: 32px; }
  html:lang(ja) .home-page .lp-agents__contact p { font-size: .65rem; line-height: 1.65; }
  html:lang(ja) .home-page .lp-agents__contact .lp-button {
    grid-column: auto;
    width: auto;
    min-height: 42px;
    padding: 8px 11px;
    gap: 9px;
    font-size: .69rem;
  }
  html:lang(ja) .home-page .lp-location {
    position: relative;
    height: auto;
    min-height: 0;
    aspect-ratio: 1111 / 1295;
    container-type: inline-size;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
  }
  html:lang(ja) .home-page .lp-location__lead {
    position: absolute;
    z-index: 3;
    top: 7.34%;
    left: 5.31%;
    width: 57%;
    margin: 0;
    font-size: 3.25cqi;
    line-height: 1.9;
  }
  html:lang(ja) .home-page .lp-location__place { display: none; }
  html:lang(ja) .home-page .lp-location__place > span { width: 32px; height: 32px; color: var(--lp-copper); }
  html:lang(ja) .home-page .lp-location__place p { margin: 0; }
  html:lang(ja) .home-page .lp-location__place strong,
  html:lang(ja) .home-page .lp-location__place small { display: block; }
  html:lang(ja) .home-page .lp-location__place strong { font-size: .87rem; }
  html:lang(ja) .home-page .lp-location__place small { margin-top: 2px; color: var(--muted); font-size: .68rem; }
  html:lang(ja) .home-page .lp-location__map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    transform: none;
  }
  html:lang(ja) .home-page .lp-location__map > img {
    position: absolute;
    top: 3.51%;
    left: 16.67%;
    width: 76.19%;
    height: 80% !important;
    max-height: none;
    object-fit: fill;
  }
  html:lang(ja) .home-page .lp-location__pin {
    top: 67.65%;
    left: 23.85%;
    width: 4.59%;
    height: auto;
    aspect-ratio: 51 / 70;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 4px 5px rgba(22, 33, 41, .2));
    transform: translate(-50%, -100%);
  }
  html:lang(ja) .home-page .lp-location__pin svg { width: 100%; height: 100%; overflow: visible; }
  html:lang(ja) .home-page .lp-location__pin svg path { fill: var(--lp-copper); stroke: var(--white); stroke-width: 1.25; }
  html:lang(ja) .home-page .lp-location__pin svg circle { fill: none; stroke: var(--white); stroke-width: 2; }
  html:lang(ja) .home-page .lp-location__pin-label {
    display: block;
    top: 62.86%;
    left: 6.39%;
    min-width: 0;
    padding: 0;
    color: var(--lp-navy);
    background: transparent;
    border-radius: 0;
    font-size: 3.05cqi;
    letter-spacing: 0;
    white-space: nowrap;
    line-height: 1.2;
    transform: none;
  }
  html:lang(ja) .home-page .lp-location__foot {
    position: absolute;
    z-index: 3;
    right: 5.67%;
    bottom: 5.5%;
    left: 5.58%;
    width: auto;
    margin: 0;
    padding-top: 18px;
    text-align: center;
    border-top: 1px solid var(--lp-copper);
  }
  html:lang(ja) .home-page .lp-location__foot strong { font-size: 2.45cqi; line-height: 1.55; }
  html:lang(ja) .home-page .lp-location__foot small { display: none; }

  html:lang(ja) .home-page .lp-agents { padding-bottom: 24px; }
  html:lang(ja) .home-page .lp-products { padding-top: 0; }

  html:lang(ja) .home-page .lp-company__grid { gap: 58px; }
  html:lang(ja) .home-page .lp-company .lp-section-title {
    margin: 18px 0 26px;
    font-size: clamp(2rem, 9.4vw, 2.35rem);
    letter-spacing: -.055em;
    white-space: nowrap;
  }
  html:lang(ja) .home-page .lp-company .lp-section-title br { display: none; }
  html:lang(ja) .home-page .lp-company .lp-section-intro { margin-bottom: 34px; font-size: .9rem; line-height: 2.1; }
  html:lang(ja) .home-page .lp-company .lp-mobile-break { display: block; }
  html:lang(ja) .home-page .lp-company .button { width: min(100%, 220px); min-height: 60px; justify-content: space-between; }
}

@media (max-width: 430px) {
  html:lang(ja) .home-page .lp-agents__contact {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 14px 16px;
  }
  html:lang(ja) .home-page .lp-agents__contact .lp-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .has-js .lp-reveal { opacity: 1; transform: none; }
  .restoration-slideshow__slide { transition: none; }
}

/* Restoration: distinguish serviced sale inventory from customer-owned repair intake. */
.restoration-services { padding-bottom: 96px; }
.restoration-service { min-width: 0; }
.restoration-section-heading {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 20px;
  color: var(--brand-copper);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
}
.restoration-section-heading > span { flex: 0 0 auto; font-family: Georgia, serif; font-size: 1.22em; }
.restoration-section-heading > i { flex: 0 0 auto; width: 1px; height: 28px; background: var(--brand-copper); }
.restoration-section-heading > strong { font: inherit; }
.restoration-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 50px;
  align-items: start;
}
.restoration-service--products { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.restoration-service--products .section-visual--photo { overflow: hidden; border-radius: 7px; box-shadow: 0 12px 28px rgba(22, 33, 41, .07); }
.restoration-service--products .restoration-slideshow__frame { min-height: 0; aspect-ratio: 1.67 / 1; }
.restoration-service--products .section-copy h3 {
  margin: -8px 0 13px;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.6vw, 2.22rem);
  font-weight: 800;
  line-height: 1.28;
}
.restoration-service--products .section-copy > p { margin-bottom: 7px; color: #344b5b; font-size: .88rem; font-weight: 500; line-height: 1.7; }
.restoration-service--products .makers { margin: 12px 0 14px; padding-top: 12px; }
.restoration-service--products .makers p { margin-bottom: 8px; }
.restoration-service--products .makers strong { font-size: 1.45rem; }
.restoration-service--products .section-copy .button { min-width: 225px; min-height: 52px; padding-block: 8px; }
.restoration-service--repair { padding-top: 14px; }
.repair-intake { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 28px; align-items: start; }
.repair-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  height: 292px;
}
.repair-gallery figure { min-width: 0; margin: 0; overflow: hidden; background: #ddd8cf; border-radius: 6px; }
.repair-gallery__main { grid-row: 1 / 3; }
.repair-gallery img { width: 100%; height: 100%; object-fit: cover; }
.repair-gallery__main img { object-position: 50% 56%; }
.repair-gallery__detail img { object-position: 50% 64%; }
.repair-intake__content h3 { margin: -5px 0 18px; font-size: clamp(1.25rem, 1.75vw, 1.55rem); font-weight: 800; line-height: 1.45; }
.repair-models { display: grid; grid-template-columns: minmax(130px, .42fr) minmax(0, .58fr); min-height: 64px; margin-bottom: 14px; background: rgba(255, 255, 255, .42); border-radius: 6px; }
.repair-models > strong { display: flex; padding: 12px 17px; align-items: center; color: var(--brand-copper); border-right: 1px solid var(--line); font-size: .76rem; }
.repair-models p { display: grid; margin: 0; padding: 10px 20px; align-content: center; font-size: 1rem; font-weight: 800; line-height: 1.35; }
.repair-models p span { display: block; }
.repair-consultations h4 { margin: 0 0 7px; font-size: .72rem; }
.repair-consultations ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px 24px; margin: 0; padding: 0; list-style: none; }
.repair-consultations li { display: flex; min-width: 0; align-items: center; gap: 8px; color: #344b5b; font-size: .79rem; line-height: 1.45; }
.repair-consultations .lp-line-icon { flex: 0 0 auto; width: 17px; height: 17px; color: var(--brand-copper); stroke-width: 2.2; }
.repair-guide { margin-top: 13px; padding: 12px 15px 8px; background: rgba(255, 255, 255, .38); border-radius: 6px; }
.repair-guide__copy { display: grid; grid-template-columns: 23px minmax(0, 1fr); gap: 10px; }
.repair-guide__copy > .lp-line-icon { width: 20px; height: 20px; color: var(--brand-copper); }
.repair-guide__copy strong { color: var(--brand-copper); font-size: .7rem; }
.repair-guide__copy p { margin: 2px 0 0; color: #344b5b; font-size: .67rem; line-height: 1.55; }
.repair-guide > ul { display: flex; margin: 8px 0 0 33px; padding: 6px 0 0; flex-wrap: wrap; gap: 3px 16px; border-top: 1px solid var(--line); list-style: none; }
.repair-guide > ul li { color: #344b5b; font-size: .65rem; }
.repair-actions { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; margin-top: 14px; }
.repair-actions .button { width: 100%; min-height: 51px; margin: 0; padding: 10px 17px; font-size: .72rem; }
.repair-actions .button--primary { color: var(--white); background: var(--brand-copper); border-color: var(--brand-copper); }
.repair-actions .button--primary:hover { background: #99583c; border-color: #99583c; }
.repair-actions .button--secondary { border-color: var(--brand-copper); }

@media (max-width: 1020px) {
  .repair-intake { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .repair-gallery { height: 320px; }
  .repair-actions { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .restoration-product-grid,
  .repair-intake { grid-template-columns: 1fr; gap: 22px; }
  .restoration-service--products .section-copy h3 { margin-top: 0; }
  .repair-gallery { height: auto; aspect-ratio: 2.08 / 1; }
  .repair-intake__content h3 { margin-top: 0; }
}

@media (max-width: 560px) {
  .restoration-page main { padding-bottom: 78px; }
  .restoration-services { padding-bottom: 46px; }
  html:lang(ja) .restoration-page .section--topless { padding-top: 18px; }
  .restoration-section-heading { margin-bottom: 14px; gap: 13px; font-size: .91rem; line-height: 1.45; }
  .restoration-section-heading > span { font-size: 1.18em; }
  .restoration-section-heading > i { height: 25px; }
  .restoration-section-heading > strong { overflow-wrap: anywhere; }
  .restoration-product-grid { display: grid; gap: 0; }
  .restoration-service--products .section-copy { display: contents; }
  .restoration-service--products .section-copy h3 { order: 1; margin: 0 0 13px; font-size: clamp(1.5rem, 7.2vw, 1.8rem); line-height: 1.4; }
  html:lang(ja) .restoration-service--products .section-copy h3 .desktop-break { display: initial; }
  .restoration-service--products .section-visual--photo { order: 2; margin-bottom: 14px; box-shadow: none; }
  .restoration-service--products .restoration-slideshow__frame { aspect-ratio: 2 / 1; }
  .restoration-service--products .section-copy > p { order: 3; margin-bottom: 10px; font-size: .875rem; line-height: 1.65; }
  .restoration-service--products .section-copy .makers { order: 4; margin: 3px 0 11px; padding-top: 13px; }
  .restoration-service--products .section-copy .button { order: 5; width: 100%; min-height: 43px; }
  .restoration-service--products { padding-bottom: 23px; }
  .restoration-service--repair { padding-top: 22px; }
  .repair-intake { gap: 13px; }
  .repair-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto auto; gap: 7px; aspect-ratio: auto; }
  .repair-gallery__main { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 2.18 / 1; }
  .repair-gallery__detail { aspect-ratio: 1.72 / 1; }
  .repair-gallery__main img { object-position: 50% 59%; }
  .repair-gallery__detail img { object-position: 50% 66%; }
  .repair-intake__content h3 { margin: 0 0 12px; font-size: 1.18rem; line-height: 1.45; }
  .repair-models { grid-template-columns: minmax(125px, .38fr) minmax(0, .62fr); min-height: 57px; margin-bottom: 12px; }
  .repair-models > strong { padding: 10px 12px; font-size: .7rem; }
  .repair-models p { padding: 8px 14px; font-size: .86rem; }
  .repair-consultations h4 { margin-bottom: 6px; }
  .repair-consultations ul { gap: 4px 14px; }
  .repair-consultations li { align-items: flex-start; font-size: .71rem; }
  .repair-consultations .lp-line-icon { margin-top: 1px; }
  .repair-guide { margin-top: 12px; padding: 11px 12px 8px; }
  .repair-guide__copy { grid-template-columns: 21px minmax(0, 1fr); gap: 8px; }
  .repair-guide__copy p { font-size: .64rem; line-height: 1.55; }
  .repair-guide > ul { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-left: 29px; gap: 5px; }
  .repair-guide > ul li { font-size: .58rem; line-height: 1.45; }
  .repair-actions { gap: 7px; margin-top: 10px; }
  .repair-actions .button { min-height: 43px; padding: 8px 13px; font-size: .66rem; }
}

@media (min-width: 821px) {
  html:lang(ja) .home-page .lp-hero { min-height: 0; padding: 30px 0 12px; }
  html:lang(ja) .home-page .lp-hero h1 { margin: 14px 0 18px; }
  html:lang(ja) .home-page .lp-hero__lead { margin-bottom: 18px; font-size: 1.2rem; line-height: 1.8; }
  .home-page .lp-repair-card {
    grid-template-columns: 245px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 20px;
    row-gap: 4px;
    margin-top: 10px;
    padding: 13px;
  }
  .home-page .lp-repair-card__eyebrow { position: static; grid-column: 2; grid-row: 1; align-self: end; font-size: .64rem; }
  .home-page .lp-repair-card__image { grid-column: 1; grid-row: 1 / -1; height: 144px; }
  .home-page .lp-repair-card__content { grid-column: 2; grid-row: 2; padding: 0; }
  .home-page .lp-repair-card h2 { margin: 0 0 5px; font-size: 1.22rem; line-height: 1.32; }
  .home-page .lp-repair-card__models { display: flex; flex-wrap: wrap; gap: 3px 18px; margin: 0 0 9px; font-size: .82rem; }
  .home-page .lp-repair-card__models span { display: inline; }
  .home-page .lp-repair-card__link { width: min(100%, 210px); min-height: 38px; padding: 7px 18px; gap: 12px; font-size: .74rem; }
  .home-page .lp-hero__meta { margin-top: 8px; }
  .restoration-page .page-hero { padding: 25px 0 22px; }
  .restoration-page .page-hero .eyebrow { display: none; }
  .restoration-page .page-hero h1 { margin-bottom: 10px; font-size: clamp(3rem, 4.4vw, 3.65rem); line-height: 1.14; }
  .restoration-page .page-lead { font-size: 1rem; line-height: 1.7; }
  .restoration-page .page-hero__inner { padding-bottom: 20px; }
  .restoration-page .restoration-services { padding-top: 22px; }
}
