:root {
  --ink: #17211d;
  --muted: #5f6f66;
  --paper: #f5f2ea;
  --surface: #fffdf8;
  --line: #d9ddd4;
  --green: #1f6b4f;
  --green-dark: #102a20;
  --orange: #e96230;
  --orange-soft: #fff0e7;
  --yellow: #f0c84b;
  --shadow: 0 20px 60px rgba(23, 33, 29, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.directory-page {
  min-height: 100vh;
  background: var(--green-dark);
}

.directory {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(52px, 9vw, 96px) 0;
}

.directory-hero {
  color: var(--surface);
  padding: 54px 0 40px;
}

.directory-hero .eyebrow { color: #ffd176; }
.directory-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
}
.directory-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 253, 248, .74);
  font-weight: 700;
  line-height: 1.8;
}

.directory-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.directory-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid rgba(255, 253, 248, .18);
  box-shadow: var(--shadow);
}

.directory-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.directory-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.directory-card strong {
  font-size: 22px;
  line-height: 1.35;
}
.directory-card small {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 74px;
  padding: 0 clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(245, 242, 234, .9);
  border-bottom: 1px solid rgba(23, 33, 29, .12);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-dark);
  font-weight: 900;
}

.site-header nav { display: flex; align-items: center; gap: 20px; font-size: 13px; font-weight: 800; color: var(--muted); }
.nav-cta { color: var(--surface); background: var(--green); padding: 10px 14px; border-radius: 999px; }

.hero {
  min-height: min(860px, calc(100svh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 42, 32, .93), rgba(16, 42, 32, .70) 42%, rgba(16, 42, 32, .08) 100%),
    linear-gradient(0deg, rgba(16, 42, 32, .28), rgba(16, 42, 32, 0));
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(78px, 12vh, 132px) 0 56px;
  color: var(--surface);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.hero .eyebrow { color: #ffd176; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.3vw, 86px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, .86);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.9;
  font-weight: 650;
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-button, .phone-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
}

.primary-button { color: #fff; background: var(--orange); box-shadow: 0 12px 32px rgba(233, 98, 48, .28); }
.phone-button { color: var(--ink); background: var(--yellow); }

.trust-strip {
  width: min(760px, 100%);
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 253, 248, .26);
  background: rgba(255, 253, 248, .12);
  border-radius: 18px;
  overflow: hidden;
}

.trust-strip span {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  font-weight: 900;
  border-right: 1px solid rgba(255, 253, 248, .22);
}
.trust-strip span:last-child { border-right: 0; }

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-head { display: grid; gap: 12px; margin-bottom: 34px; }
.section-head.center {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}
.section-head h2, .split h2, .proof-copy h2, .contact h2 {
  margin: 0;
  font-size: clamp(31px, 4.4vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow), .proof-copy p, .diagnosis-copy p, .contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 600;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.worry-grid.large { grid-template-columns: repeat(3, 1fr); }
.worry-grid div, .reason-list article, .price-card, .flow-list li, .voice-grid blockquote, .faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.worry-grid div { padding: 22px; min-height: 220px; }
.worry-grid span, .reason-list span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
}
.worry-grid strong { display: block; font-size: 18px; line-height: 1.45; }
.worry-grid p { margin: 16px 0 0; color: var(--muted); line-height: 1.75; font-size: 14px; }

.message-band {
  width: 100%;
  padding: clamp(70px, 10vw, 116px) 0;
  color: var(--surface);
  background: var(--green);
}

.message-band div {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.message-band .eyebrow { color: #ffd176; }
.message-band h2 {
  margin: 0;
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.13;
}
.message-band p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgba(255, 253, 248, .78);
  font-weight: 700;
  line-height: 2;
}

.image-copy {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: stretch;
}

.image-copy.reverse {
  grid-template-columns: .95fr 1.05fr;
}

.image-copy.reverse .image-panel { order: 2; }

.image-panel, .copy-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.copy-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 52px);
}

.copy-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4.3vw, 56px);
  line-height: 1.13;
}

.copy-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.9;
}

.dark-band {
  width: 100%;
  max-width: none;
  background: var(--green-dark);
  color: var(--surface);
}
.dark-band.full-width { padding: clamp(72px, 10vw, 120px) 0; }
.split {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.diagnosis-copy { display: grid; gap: 18px; }
.diagnosis-copy p { color: rgba(255, 253, 248, .76); }

.reason-list { display: grid; gap: 16px; }
.reason-list article {
  display: grid;
  grid-template-columns: 72px 1fr 1.2fr;
  gap: 28px;
  padding: 30px;
  align-items: center;
}
.reason-list h3 { margin: 0; font-size: 25px; line-height: 1.35; }
.reason-list p { margin: 0; color: var(--muted); line-height: 1.8; font-weight: 600; }

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.proof-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
}
.proof-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.proof-panel div {
  min-height: 124px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  color: var(--surface);
  background: var(--green);
}
.proof-panel strong { font-size: clamp(40px, 6vw, 70px); line-height: 1; }
.proof-panel span { max-width: 180px; font-weight: 900; line-height: 1.5; }

.wide-photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--surface);
}

.wide-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.wide-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 42, 32, .88), rgba(16, 42, 32, .38), rgba(16, 42, 32, .1));
}

.wide-photo div {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  align-content: center;
}

.wide-photo .eyebrow { color: #ffd176; }
.wide-photo h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 1.1;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price-card { padding: 28px; }
.price-card small { color: var(--green); font-weight: 900; }
.price-card strong { display: block; margin-top: 14px; font-size: clamp(32px, 4vw, 48px); }
.price-card p { color: var(--muted); line-height: 1.75; }
.price-card.featured { background: var(--green-dark); color: var(--surface); border-color: var(--green-dark); }
.price-card.featured small, .price-card.featured p { color: rgba(255, 253, 248, .78); }

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.flow-list li { padding: 24px; }
.flow-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}
.flow-list strong { display: block; font-size: 19px; }
.flow-list p { margin: 12px 0 0; color: var(--muted); line-height: 1.7; font-size: 14px; }

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.voice-grid blockquote {
  margin: 0;
  padding: 26px;
  color: var(--ink);
  line-height: 1.85;
  font-weight: 750;
}

.faq-list { display: grid; gap: 10px; }
.faq-list details { padding: 22px 24px; }
.faq-list summary { cursor: pointer; font-weight: 900; font-size: 17px; }
.faq-list p { margin: 14px 0 0; color: var(--muted); line-height: 1.75; }

.letter {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

.letter h2 {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.15;
}

.letter p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 2;
}

.contact { padding-top: 0; }
.contact-box {
  padding: clamp(34px, 7vw, 70px);
  border-radius: 8px;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(16, 42, 32, .96), rgba(31, 107, 79, .92)),
    var(--green-dark);
}
.contact-box .eyebrow { color: #ffd176; }
.contact-box p, .contact-box small { color: rgba(255, 253, 248, .78); }
.contact-box small { display: block; margin-top: 18px; font-weight: 700; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px) 104px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 30;
  width: min(520px, calc(100% - 28px));
  transform: translate(-50%, 16px);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 12px 40px rgba(23, 33, 29, .22);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.sticky-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
}
.sticky-cta a:first-child { background: var(--yellow); }
.sticky-cta a:last-child { color: #fff; background: var(--orange); }

@media (max-width: 980px) {
  .worry-grid, .worry-grid.large, .price-grid, .flow-list, .voice-grid { grid-template-columns: 1fr 1fr; }
  .reason-list article { grid-template-columns: 52px 1fr; }
  .reason-list article p { grid-column: 2; }
  .proof, .split, .image-copy, .image-copy.reverse { grid-template-columns: 1fr; }
  .image-copy.reverse .image-panel { order: 0; }
}

@media (max-width: 720px) {
  .site-header { height: 64px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .brand { font-size: 14px; }
  .hero { min-height: min(840px, calc(100svh - 64px)); }
  .hero-content, .section, .split { width: min(100% - 28px, 1120px); }
  .hero-content { padding-top: 82px; }
  .hero-media::after { background: linear-gradient(90deg, rgba(16, 42, 32, .94), rgba(16, 42, 32, .76)); }
  h1 { font-size: clamp(38px, 12vw, 56px); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span { border-right: 0; border-bottom: 1px solid rgba(255, 253, 248, .22); }
  .trust-strip span:last-child { border-bottom: 0; }
  .directory { width: min(100% - 28px, 1120px); }
  .worry-grid, .worry-grid.large, .price-grid, .flow-list, .voice-grid { grid-template-columns: 1fr; }
  .reason-list article { grid-template-columns: 1fr; gap: 10px; padding: 24px; }
  .reason-list article p { grid-column: auto; }
  .proof-copy, .contact-box { padding: 26px; }
  .proof-panel div { align-items: flex-start; flex-direction: column; }
  .image-panel img { min-height: 280px; }
  .wide-photo, .wide-photo img { min-height: 520px; height: 520px; }
  .wide-photo::after { background: linear-gradient(90deg, rgba(16, 42, 32, .9), rgba(16, 42, 32, .64)); }
  .site-footer { flex-direction: column; }
}
