@import url("https://cdn.jsdelivr.net/gh/sun-typeface/SUIT@2/fonts/variable/woff2/SUIT-Variable.css");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap");

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.funding-bar {
  min-height: 42px;
  padding: 8px 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: var(--forest);
  color: white;
  font-size: 13px;
}
.funding-bar span { color: #c7d8c7; font-weight: 700; letter-spacing: .04em; }
.funding-bar strong { font-weight: 500; }
.funding-bar i { font-style: normal; opacity: .65; }

.site-header {
  height: 88px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 192px; height: auto; }
.site-header nav { display: flex; gap: 34px; font-size: 14px; }
.site-header nav a { position: relative; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: currentColor; transition: right .25s; }
.site-header nav a:hover::after { right: 0; }
.header-cta { padding: 12px 20px; border: 1px solid var(--ink); border-radius: 100px; font-size: 13px; font-weight: 700; }
.mobile-menu { display: none; position: relative; margin-left: auto; }
.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 19px; height: 1.5px; display: block; border-radius: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
.mobile-menu[open] summary span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
.mobile-menu[open] summary span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu__panel {
  position: absolute;
  z-index: 40;
  top: 54px;
  right: 0;
  width: min(310px, calc(100vw - 36px));
  padding: 10px;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaf6;
  box-shadow: 0 24px 60px rgba(32,34,29,.18);
}
.mobile-menu__panel a { padding: 13px 14px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 650; }
.mobile-menu__panel a:nth-last-child(2) { border-bottom: 0; }
.mobile-menu__panel .mobile-menu__check { margin-top: 7px; border: 0; border-radius: 12px; color: white; background: var(--forest); text-align: center; }

.hero {
  min-height: 720px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 62px 5vw 72px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 7vw;
  align-items: center;
}
.eyebrow, .section-kicker { margin: 0 0 22px; font-size: 12px; line-height: 1; letter-spacing: .2em; font-weight: 800; color: var(--sage); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { text-wrap: balance; }
p { text-wrap: pretty; }
h1 { max-width: 700px; margin-bottom: 34px; font-size: clamp(38px, 3.7vw, 56px); line-height: 1.24; letter-spacing: -.035em; font-weight: 500; }
h1 em { color: var(--sage); font-family: var(--font-sans), Arial, sans-serif; font-style: normal; font-weight: 700; }
.hero-role { max-width: 650px; margin: -8px 0 17px; color: var(--ink); font-size: 18px; font-weight: 750; line-height: 1.75; letter-spacing: -.02em; }
.hero-description { max-width: 590px; margin-bottom: 36px; color: #595b54; font-size: 17px; line-height: 1.9; }
.hero-description span { display: block; }
/* 2026-08-29 대표님 지시 — 홈에 들어오면 톤체크 첫 질문이 바로 보이게 한다.
   퍼널 실측(8/4~8/29): 홈에 왔다 그냥 나간 사람 27명 · 인스타 유입 8명 전원 홈에서 0초 이탈.
   버튼은 이미 첫 화면 안(508px)에 있었고 하단 고정 버튼까지 있었는데도 안 눌렸다.
   버튼을 키우는 대신 «묻는다». 누르면 그 답을 갖고 /check 로 넘어간다. */
.hero-quiz { margin: 22px 0 20px; }
.hero-quiz__q { margin: 0 0 10px; color: var(--ink); font-size: 17px; font-weight: 750; letter-spacing: -.02em; }
.hero-quiz__row { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-quiz__row .button { flex: 1 1 150px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.button { min-height: 56px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border-radius: 2px; font-size: 14px; font-weight: 750; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; }
.button-secondary { border: 1px solid var(--ink); }
.trust-list { margin: 36px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; list-style: none; color: #60635c; font-size: 12px; }
.trust-list li::before { content: "—"; margin-right: 7px; color: var(--sage); font-weight: 500; }
.hero-visual { min-height: 580px; position: relative; }
.hero-image { height: 560px; overflow: hidden; border-radius: 48% 48% 4px 4px; }
.hero-image img { height: 100%; object-fit: cover; }
.tone-card { position: absolute; left: -55px; bottom: 34px; width: 240px; padding: 24px; background: rgba(250,248,243,.94); box-shadow: 0 22px 50px rgba(42,43,38,.16); backdrop-filter: blur(8px); }
.tone-card span { display: block; margin-bottom: 12px; color: var(--sage); font-size: 9px; letter-spacing: .18em; font-weight: 800; }
.tone-card strong { font-family: var(--serif); font-size: 34px; font-weight: 500; letter-spacing: .04em; }
.tone-card p { margin: 10px 0 0; color: #777970; font-size: 11px; line-height: 1.55; }
.swatch-stack { position: absolute; top: 40px; right: -25px; display: grid; gap: 7px; }
.swatch-stack i { width: 48px; height: 48px; border-radius: 50%; border: 5px solid var(--paper); background: #e8ddc8; box-shadow: 0 5px 16px rgba(0,0,0,.1); }
.swatch-stack i:nth-child(2) { background:#cbbca4; }
.swatch-stack i:nth-child(3) { background:#aaa091; }
.swatch-stack i:nth-child(4) { background:#6e5f4c; }

.problem-section { padding: 90px 7vw 96px; background: #2c332c; color: white; text-align: center; }
.problem-section .section-kicker { color: #b8c6b5; }
.problem-section h2, .system-section h2, .case-section h2, .report-preview-section h2, .guide-section h2, .expert-section h2, .faq-section h2, .final-cta h2 {
  margin-bottom: 30px;
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.32;
  letter-spacing: -.025em;
  font-weight: 500;
}
.problem-grid { max-width: 1180px; margin: 52px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); }
.problem-grid article { padding: 36px 40px 10px; border-right: 1px solid rgba(255,255,255,.18); text-align: left; }
.problem-grid article:last-child { border: 0; }
.problem-grid span { color: #aaba9f; font-family: var(--serif); font-size: 13px; }
.problem-grid h3 { margin: 50px 0 16px; font-size: 21px; font-weight: 600; }
.problem-grid p { color: #c5c9c3; font-size: 14px; line-height: 1.8; }

.system-section { max-width: 1320px; margin: 0 auto; padding: 100px 5vw; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: end; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 12px; color: #63655f; line-height: 1.9; }
.tone-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.tone { min-height: 245px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.tone::after { content: ""; width: 110px; height: 110px; position: absolute; right: -28px; top: -28px; border-radius: 50%; background: var(--tone-color, #ddd); opacity: .8; }
.tone > span { font-family: var(--serif); font-size: 13px; }
.tone h3 { margin: 0 0 2px; font-size: 20px; }
.tone small { color: #777970; font-family: var(--serif); font-size: 11px; letter-spacing: .12em; }
.tone p { margin: 0; max-width: 180px; color: #666860; font-size: 12px; line-height: 1.6; }
.tone-ln { --tone-color: #e4d6bd; }
.tone-ms { --tone-color: #cbd2cd; }
.tone-mo { --tone-color: #d9c8aa; }
.tone-er { --tone-color: #b0a592; }
.tone-wn { --tone-color: #675442; }
.tone-sl { --tone-color: #7c817e; }
.tone-sp { --tone-color: #aa674b; }
.tone-quiz { background: var(--forest); color: white; }
.tone-quiz::after { background: #82927c; opacity: .28; }
.tone-quiz small { color: #bfcabe; }
.tone-quiz b { font-size: 13px; }

.case-section { padding: 96px 7vw; display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; align-items: center; background: #ded7ca; }
.case-copy > p:not(.section-kicker) { color: #5b5d56; line-height: 1.85; }
.case-copy dl { margin: 30px 0; border-top: 1px solid rgba(32,34,29,.25); }
.case-copy dl div { padding: 13px 0; display: flex; border-bottom: 1px solid rgba(32,34,29,.25); font-size: 13px; }
.case-copy dt { width: 80px; color: #777970; }
.case-copy dd { margin: 0; font-weight: 700; }
.case-copy > a { font-size: 14px; font-weight: 800; border-bottom: 1px solid; padding-bottom: 5px; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.before-after figure { margin: 0; position: relative; }
.before-after img { aspect-ratio: .78; object-fit: cover; }
.before-after figcaption { position: absolute; left: 14px; bottom: 14px; padding: 8px 10px; background: rgba(246,243,237,.9); font-size: 10px; font-weight: 800; letter-spacing: .06em; }

.report-preview-section { padding: 100px 6vw; display: grid; grid-template-columns: .62fr 1.38fr; gap: 6vw; align-items: start; background: #f1ece4; }
.report-preview-copy { position: sticky; top: 38px; }
.report-preview-copy > p:not(.section-kicker) { max-width: 500px; margin-bottom: 24px; color: #63655f; line-height: 1.9; }
.sample-notice { width: fit-content; margin-bottom: 28px; padding: 8px 12px; display: block; border: 1px solid var(--line); border-radius: 999px; color: #6b6d66; background: rgba(255,255,255,.45); font-size: 12px; font-weight: 750; }
.report-pages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.report-page { aspect-ratio: 210 / 275; min-width: 0; padding: clamp(24px, 2.5vw, 38px); display: flex; flex-direction: column; border: 1px solid rgba(32,34,29,.11); background: #fbfaf6; box-shadow: 0 24px 55px rgba(41,42,37,.10); }
.report-page header { margin-bottom: clamp(32px, 4vw, 60px); padding-bottom: 12px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); color: #777970; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.report-page header b { color: var(--sage); font-size: 11px; }
.report-page__ey { margin-bottom: 8px; color: var(--sage); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.report-page h3 { margin-bottom: 14px; font-family: var(--font-sans), Arial, sans-serif; font-size: clamp(23px, 2.3vw, 34px); line-height: 1.2; letter-spacing: -.025em; }
.report-page > p:not(.report-page__ey):not(.report-page__memo) { color: #676962; font-size: 12px; line-height: 1.7; }
.report-swatches { margin: auto 0 24px; display: grid; grid-template-columns: repeat(5, 1fr); }
.report-swatches i { aspect-ratio: 1; display: block; background: #f1ece2; }
.report-swatches i:nth-child(2) { background:#d7d5cb; }
.report-swatches i:nth-child(3) { background:#b7b8b1; }
.report-swatches i:nth-child(4) { background:#969c96; }
.report-swatches i:nth-child(5) { background:#5f6762; }
.report-page dl { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.report-page dl div { padding: 13px 4px 0; border-right: 1px solid var(--line); }
.report-page dl div:last-child { border-right: 0; }
.report-page dt { color: #85877f; font-size: 9px; }
.report-page dd { margin: 5px 0 0; font-size: 11px; font-weight: 750; }
.report-page--material ul { margin: 12px 0 0; padding: 0; display: grid; list-style: none; border-top: 1px solid var(--line); }
.report-page--material li { padding: 14px 0; display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; border-bottom: 1px solid var(--line); color: #686a63; font-size: 11px; line-height: 1.45; }
.report-page--material li i { width: 38px; height: 38px; display: block; border-radius: 50%; background: #d7cab5; }
.report-page--material li .material-wall { background:#eeeae0; }
.report-page--material li .material-door { background:#b9b6ad; }
.report-page--material li .material-furniture { background:#85847d; }
.report-page--material li b { display: block; margin-bottom: 2px; color: var(--ink); }
.room-plan { margin-top: 8px; display: grid; gap: 8px; }
.room-plan div { padding: 15px; display: grid; grid-template-columns: 55px 1fr; gap: 12px; border: 1px solid var(--line); background: white; font-size: 11px; line-height: 1.5; }
.room-plan span { color: #696b64; }
.report-page__memo { margin: auto 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: #676962; font-size: 11px; line-height: 1.65; }
.light-scale { margin: 16px 0 28px; padding-top: 26px; display: grid; grid-template-columns: repeat(3,1fr); position: relative; color: #777970; font-size: 9px; text-align: center; }
.light-scale::before { content: ""; height: 16px; position: absolute; left: 0; right: 0; top: 0; background: linear-gradient(90deg,#e2b17f,#efe0bd,#dbe1df); border-radius: 999px; }
.report-page--light ol { margin: 0; padding: 0; display: grid; gap: 0; list-style: none; counter-reset: report-check; border-top: 1px solid var(--line); }
.report-page--light li { padding: 15px 0; display: grid; grid-template-columns: 26px 1fr; gap: 8px; border-bottom: 1px solid var(--line); color: #62645d; font-size: 11px; line-height: 1.5; counter-increment: report-check; }
.report-page--light li::before { content: counter(report-check, decimal-leading-zero); color: var(--sage); font-weight: 800; }

.guide-section { max-width: 1240px; margin: 0 auto; padding: 105px 5vw; display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.guide-image { min-height: 600px; position: relative; padding-right: 110px; }
.guide-image > img { height: 590px; object-fit: cover; box-shadow: 0 30px 70px rgba(38,39,34,.18); }
.tonechip-photo { position: absolute; width: 230px; right: 0; bottom: -25px; border: 12px solid var(--paper); }
.tonechip-photo img { aspect-ratio: .85; object-fit: cover; }
.guide-copy h2 { max-width: 680px; }
.guide-copy > p:not(.section-kicker) { color: #63655f; line-height: 2; }
.guide-copy ul { margin: 35px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.guide-copy li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.guide-copy li span { display: inline-block; width: 48px; color: var(--sage); font-family: var(--serif); }
.button-dark { background: var(--ink); color: white; }

.expert-section { display: grid; grid-template-columns: .8fr 1.2fr; background: #eae4da; }
.expert-photo { min-height: 700px; overflow: hidden; }
.expert-photo img { height: 100%; object-fit: cover; object-position: center 25%; }
.expert-copy { padding: 90px 8vw; align-self: center; }
.expert-copy > p:not(.section-kicker) { max-width: 700px; color: #5f615b; line-height: 1.9; }
.expert-stats { margin-top: 30px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.expert-stats div { padding: 24px 24px 24px 0; }
.expert-stats div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.expert-stats strong { display: block; margin-bottom: 7px; font-family: var(--font-serif), Georgia, serif; font-size: 38px; line-height: 1; font-weight: 600; color: var(--forest); }
.expert-stats span { color: #666860; font-size: 12px; font-weight: 750; }
.credentials { margin-top: 32px; display: grid; gap: 10px; }
.credentials span { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 700; }
.credentials span::before { content: "—"; margin-right: 10px; color: var(--sage); }

.faq-section { max-width: 1200px; margin: 0 auto; padding: 100px 5vw; display: grid; grid-template-columns: .7fr 1.3fr; gap: 8vw; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 78px; display: flex; align-items: center; cursor: pointer; list-style: none; font-size: 17px; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:focus { outline: none; }
.faq-list summary:focus-visible { outline: 2px solid var(--sage); outline-offset: 4px; border-radius: 2px; }
.faq-list summary span { width: 55px; color: var(--sage); font-family: var(--serif); font-size: 12px; }
.faq-list summary i { margin-left: auto; font-style: normal; font-size: 22px; font-weight: 300; transition: transform .2s; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { margin: -4px 35px 28px 55px; color: #686a63; font-size: 14px; line-height: 1.8; }

.final-cta { padding: 96px 5vw; background: var(--forest); color: white; text-align: center; }
.final-cta .section-kicker { color: #b7c7b4; }
.final-cta > p:not(.section-kicker) { margin-bottom: 34px; color: #c6cec5; }
.final-cta .hero-actions { justify-content: center; }
.button-light { background: white; color: var(--forest); }
.button-outline-light { border: 1px solid rgba(255,255,255,.5); }

.contact-section { max-width: 1180px; margin: 0 auto; padding: 90px 5vw; text-align: center; }
.contact-section h2 { margin-bottom: 18px; font-size: clamp(34px, 3.7vw, 50px); line-height: 1.3; letter-spacing: -.025em; font-weight: 500; }
.contact-section > p:not(.section-kicker) { margin-bottom: 46px; color: #63655f; }
.contact-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; text-align: left; }
.contact-card { min-height: 560px; padding: 46px; display: flex; flex-direction: column; border: 1px solid var(--line); background: #f1ece4; }
.contact-card--business { border-color: var(--forest); background: var(--forest); color: white; }
.contact-label { margin-bottom: 24px; color: var(--sage); font-family: var(--serif); font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.contact-card--business .contact-label { color: #bdc8ba; }
.contact-card h3 { max-width: 480px; margin-bottom: 18px; font-size: clamp(25px, 2.2vw, 34px); line-height: 1.35; letter-spacing: -.02em; font-weight: 600; }
.contact-card__intro { max-width: 470px; color: #686a63; font-size: 15px; line-height: 1.8; }
.contact-card--business .contact-card__intro { color: #d5dbd3; }
.contact-card ul { margin: 30px 0 36px; border-top: 1px solid rgba(32,34,29,.18); }
.contact-card--business ul { border-color: rgba(255,255,255,.22); }
.contact-card li { padding: 12px 0; border-bottom: 1px solid rgba(32,34,29,.14); font-size: 13px; font-weight: 650; }
.contact-card--business li { border-color: rgba(255,255,255,.18); }
.contact-card__actions { margin-top: auto; display: grid; gap: 10px; }
.contact-card__actions .button { width: 100%; }
.contact-business-secondary { border: 1px solid rgba(255,255,255,.55); color: white; }
.contact-card__links { padding-top: 8px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 12px; font-weight: 750; }
.contact-card__links a { padding-bottom: 3px; border-bottom: 1px solid currentColor; }
.contact-info { margin-top: 38px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; color: #6d6f68; font-size: 12px; }
.contact-info a { font-weight: 700; }

footer { padding: 46px 5vw 80px; display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 24px; border-top: 1px solid var(--line); }
.footer-brand img { width: 220px; height: auto; }
.footer-links { display: flex; gap: 22px; font-size: 12px; font-weight: 750; }
.footer-business { grid-column: 1 / -1; margin-top: 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer-business p, footer .copyright { margin: 5px 0 0; color: #7a7c75; font-size: 11px; line-height: 1.7; }
footer .copyright { grid-column: 1 / -1; margin-top: 18px; }
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: auto; padding-top: 65px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(580px, 90%); margin: 20px auto 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid article { padding: 30px 12px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .problem-grid h3 { margin-top: 20px; }
  .section-heading, .case-section, .report-preview-section, .guide-section, .expert-section, .faq-section { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; }
  .tone-grid { grid-template-columns: repeat(2, 1fr); }
  .case-section { gap: 48px; }
  .report-preview-section { gap: 44px; }
  .report-preview-copy { position: static; max-width: 680px; }
  .expert-photo { min-height: 600px; }
  .expert-copy { padding: 72px 7vw; }
  .faq-section { gap: 28px; }
  .contact-card { min-height: 540px; padding: 38px; }
}

@media (max-width: 640px) {
  .funding-bar { padding: 10px 16px; justify-content: space-between; font-size: 11px; }
  .funding-bar span, .funding-bar i { display: none; }
  .site-header { height: 72px; padding: 0 18px; }
  .header-cta { display: none; }
  .brand img { width: 148px; }
  .hero { padding: 48px 20px 64px; gap: 40px; }
  h1 { font-size: min(7.9vw, 36px); line-height: 1.35; }
  .hero-role { margin-top: -4px; font-size: 16px; line-height: 1.75; }
  .hero-description { font-size: 15px; line-height: 1.8; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .hero-visual { min-height: 440px; width: 100%; }
  .hero-image { height: 430px; }
  .tone-card { left: -5px; bottom: 15px; width: 205px; padding: 19px; }
  .tone-card strong { font-size: 28px; }
  .swatch-stack { right: -8px; top: 25px; }
  .swatch-stack i { width: 40px; height: 40px; }
  .problem-section, .system-section, .case-section, .report-preview-section, .guide-section, .faq-section, .final-cta, .contact-section { padding: 68px 20px; }
  .problem-section h2, .system-section h2, .case-section h2, .report-preview-section h2, .guide-section h2, .expert-section h2, .faq-section h2, .final-cta h2 { font-size: 30px; line-height: 1.4; letter-spacing: -.018em; }
  .problem-grid { margin-top: 40px; }
  .tone-grid { margin-top: 40px; grid-template-columns: 1fr; }
  .tone { min-height: 195px; }
  .before-after { gap: 6px; }
  .before-after figcaption { left: 6px; bottom: 6px; font-size: 8px; }
  .report-pages { grid-template-columns: 1fr; gap: 14px; }
  .report-page { width: min(100%, 390px); margin: 0 auto; padding: 28px; }
  .report-page header { margin-bottom: 38px; }
  .guide-image { min-height: 500px; padding-right: 65px; }
  .guide-image > img { height: 480px; }
  .tonechip-photo { width: 155px; border-width: 8px; }
  .expert-photo { min-height: 500px; }
  .expert-copy { padding: 68px 20px; }
  .expert-stats strong { font-size: 31px; }
  .expert-stats div { padding-right: 15px; }
  .expert-stats div + div { padding-left: 15px; }
  .faq-list summary { min-height: 72px; font-size: 14px; }
  .faq-list summary span { width: 36px; }
  .faq-list details p { margin-left: 36px; }
  .contact-section h2 { font-size: 30px; }
  .contact-section > p:not(.section-kicker) { margin-bottom: 32px; }
  .contact-paths { grid-template-columns: 1fr; gap: 12px; }
  .contact-card { min-height: auto; padding: 30px 24px; }
  .contact-card h3 { font-size: 25px; }
  .contact-card__intro { font-size: 14px; }
  .contact-card ul { margin: 24px 0 30px; }
  .contact-card__links { display: grid; justify-items: start; }
  .contact-info { display: grid; gap: 8px; }
  footer { padding: 45px 20px 110px; grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .mobile-cta { position: fixed; z-index: 20; left: 10px; right: 10px; bottom: 10px; padding: 5px; display: grid; grid-template-columns: 1fr 1fr; gap: 5px; border-radius: 4px; background: rgba(32,34,29,.94); box-shadow: 0 10px 35px rgba(0,0,0,.25); backdrop-filter: blur(10px); }
  .mobile-cta a { padding: 13px 8px; text-align: center; color: white; font-size: 12px; font-weight: 750; }
  .mobile-cta a:last-child { background: white; color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
