:root {
  color-scheme: dark;
  --bg: #080604;
  --text: #f3eee6;
  --muted: #d8cec0;
  --gold: #d1aa68;
  --green: #214a26;
  --green2: #2f6937;
  --line: rgba(202,164,103,.24);
  --focus: rgba(255,213,139,.95);
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
}
a { color: inherit; }

/* ===== Desktop trace ===== */
.desktop-lp { display: block; width: 100%; }
.trace-wrap { position: relative; width: min(100vw, 1024px); margin: 0 auto; line-height: 0; background: #000; }
.trace-image { display: block; width: 100%; height: auto; user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
.hotspot { position: absolute; display: block; z-index: 10; border-radius: 4px; cursor: pointer; line-height: normal; -webkit-tap-highlight-color: transparent; }
.hotspot:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.hotspot-hero { left: 10%; top: 23.1%; width: 20.9%; height: 2.5%; }
.hotspot-reserve { left: 67.2%; top: 81.1%; width: 20.5%; height: 2.1%; }
.hotspot-final { left: 38.2%; top: 96.5%; width: 23.5%; height: 2.3%; }
.mobile-lp { display: none; }

@media (min-width: 1025px) {
  body { background: radial-gradient(circle at 50% 0%, rgba(107,65,29,.10), transparent 40%), #080604; }
}


.desktop-radio {
  display: block;
  width: min(100vw, 1024px);
  margin: 0 auto;
  padding: 62px 24px 68px;
  background:
    radial-gradient(circle at 70% 30%, rgba(138,86,39,.15), transparent 34%),
    linear-gradient(180deg, #0c0805, #070504);
  border-top: 1px solid rgba(202,164,103,.25);
  border-bottom: 1px solid rgba(202,164,103,.20);
}
.desktop-radio-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}
.desktop-radio h2 {
  margin: 0 0 20px;
  color: #f3eee6;
  font-size: 31px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .04em;
}
.desktop-radio p {
  margin: 0 auto 10px;
  max-width: 46em;
  color: #d8cec0;
  font-size: 16px;
  line-height: 1.9;
}
.radio-kicker {
  margin: 0 0 14px !important;
  color: #d1aa68 !important;
  font-family: Georgia, serif;
  font-size: 12px !important;
  letter-spacing: .18em;
}
.radio-btn {
  display: inline-flex;
  min-height: 56px;
  margin-top: 24px;
  padding: 14px 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(202,164,103,.36);
  border-radius: 5px;
  background: linear-gradient(180deg, #6f4b24, #4e3218);
  color: #fff;
  font-size: 15px;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.radio-btn:hover { filter: brightness(1.08); }

/* ===== Smartphone layout ===== */
@media (max-width: 700px) {
  .desktop-lp { display: none; }
  .mobile-lp { display: block; width: 100%; overflow: hidden; }

  .m-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid var(--line);
  }
  .m-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(5,4,3,.78);
  }
  .m-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: rgba(0,0,0,.14);
    pointer-events: none;
  }

  .m-inner {
    width: min(100% - 38px, 520px);
    margin: 0 auto;
    padding: 64px 0;
    position: relative;
    z-index: 1;
  }
  .center { text-align: center; }

  .m-hero {
    min-height: 100svh;
    background-image: url('./assets/hero-bg.jpg');
    background-position: 66% center;
  }
  .m-hero::before {
    background:
      linear-gradient(90deg, rgba(4,3,2,.90) 0%, rgba(4,3,2,.82) 58%, rgba(4,3,2,.60) 100%),
      linear-gradient(180deg, rgba(3,2,2,.70), rgba(3,2,2,.86));
  }
  .hero-inner {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: max(76px, env(safe-area-inset-top));
    padding-bottom: 58px;
  }

  .m-listen {
    background-image: url('./assets/listen-bg.jpg');
    background-position: 67% center;
  }
  .m-listen::before {
    background: linear-gradient(180deg, rgba(5,4,3,.80), rgba(5,4,3,.90));
  }

  .m-about {
    background-image: url('./assets/about-bg.jpg');
    background-position: center;
  }
  .m-about::before {
    background: linear-gradient(180deg, rgba(5,4,3,.84), rgba(5,4,3,.92));
  }

  .m-promise {
    background-image: url('./assets/promise-bg.jpg');
    background-position: center;
  }
  .m-promise::before {
    background: linear-gradient(180deg, rgba(5,4,3,.86), rgba(5,4,3,.93));
  }


  .m-radio {
    background:
      radial-gradient(circle at 78% 22%, rgba(172,108,48,.18), transparent 28%),
      linear-gradient(180deg, #100a06 0%, #080604 100%);
  }
  .m-radio::before {
    background:
      linear-gradient(180deg, rgba(5,4,3,.22), rgba(5,4,3,.54));
  }
  .m-radio .m-inner {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .radio-title { margin-bottom: 22px; }
  .radio-cta {
    width: min(100%, 390px);
    margin-top: 24px;
    background: linear-gradient(180deg, #6f4b24, #4e3218);
  }
  .radio-note {
    margin: 18px auto 0;
    max-width: 31em;
    color: #d1aa68;
    font-size: 14px;
    line-height: 1.8;
  }

  .m-reserve {
    background-image: url('./assets/reserve-bg.jpg');
    background-position: 62% center;
  }
  .m-reserve::before {
    background: linear-gradient(180deg, rgba(5,4,3,.86), rgba(5,4,3,.94));
  }

  .m-final {
    background-image: url('./assets/final-bg.jpg');
    background-position: center;
  }
  .m-final::before {
    background: linear-gradient(180deg, rgba(5,4,3,.86), rgba(5,4,3,.93));
  }


  .m-about .m-inner,
  .m-promise .m-inner,
  .m-reserve .m-inner,
  .m-final .m-inner {
    background: rgba(4,3,2,.28);
    box-shadow: 0 0 60px rgba(0,0,0,.28);
  }

  .m-about .m-inner,
  .m-final .m-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .m-reserve .m-inner > p,
  .m-final .m-inner > p,
  .m-about .m-inner > p {
    text-shadow: 0 2px 10px rgba(0,0,0,.95);
  }

  .eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 11px;
    letter-spacing: .18em;
    text-shadow: 0 2px 12px #000;
  }

  h1, h2, h3, p { margin-top: 0; }
  h1 {
    margin-bottom: 28px;
    font-size: clamp(30px, 8.2vw, 38px);
    line-height: 1.42;
    font-weight: 500;
    letter-spacing: .04em;
    text-shadow: 0 3px 18px #000;
  }
  h2 {
    margin-bottom: 24px;
    font-size: clamp(23px, 6.4vw, 29px);
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: .035em;
    text-shadow: 0 3px 18px rgba(0,0,0,.75);
  }
  h3 { font-size: 23px; line-height: 1.5; font-weight: 500; }

  .line-title span {
    display: block;
    white-space: nowrap;
  }
  .m-listen .line-title { font-size: clamp(22px, 6vw, 27px); }
  .final-title { font-size: clamp(21px, 5.8vw, 27px); line-height: 1.5; }
  .promise-heading { font-size: clamp(21px, 5.7vw, 27px); white-space: nowrap; }

  p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: .025em;
    overflow-wrap: normal;
    word-break: normal;
    line-break: strict;
  }
  .m-hero p { font-size: 15px; line-height: 1.9; max-width: 31em; }

  .quotes {
    margin: 28px 0;
    padding: 4px 0 4px 18px;
    border-left: 1px solid var(--gold);
    background: linear-gradient(90deg, rgba(0,0,0,.26), transparent);
  }
  .quotes p {
    margin: 0 0 8px;
    color: #f3e9dc;
    font-size: 16px;
    line-height: 1.75;
  }
  .accent-line, .gold {
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0,0,0,.65);
  }

  .cta {
    display: inline-flex;
    min-height: 56px;
    margin-top: 20px;
    padding: 15px 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(202,164,103,.32);
    border-radius: 5px;
    background: linear-gradient(180deg, var(--green2), var(--green));
    box-shadow: 0 12px 34px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.06);
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .07em;
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
    -webkit-tap-highlight-color: transparent;
  }
  .cta:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

  .promise-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
  .promise-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 94px;
    padding: 18px 20px;
    border: 1px solid rgba(202,164,103,.27);
    border-radius: 6px;
    background: rgba(39,23,14,.76);
    box-shadow: 0 8px 24px rgba(0,0,0,.16), inset 0 1px rgba(255,255,255,.025);
    backdrop-filter: blur(2px);
  }
  .promise-card span { color: var(--gold); font-size: 27px; text-align: center; }
  .promise-card p { margin: 0; color: #f2e9df; font-size: 15px; line-height: 1.65; }

  .reserve-box {
    margin-top: 34px;
    padding: 28px 22px;
    border: 1px solid rgba(202,164,103,.28);
    border-radius: 6px;
    background: rgba(7,5,4,.76);
    box-shadow: 0 12px 38px rgba(0,0,0,.22);
    backdrop-filter: blur(2px);
  }
  .reserve-box .duration { color: #fff; font-size: 19px; }
  .m-reserve > .m-inner > p { max-width: 31em; }
  .m-final p { max-width: 31em; margin-left: auto; margin-right: auto; }
  .reserve-box .cta { width: 100%; }
  .m-final .cta { width: min(100%, 360px); }

  @media (max-width: 390px) {
    .m-inner { width: min(100% - 32px, 520px); }
    h1 { font-size: clamp(28px, 7.8vw, 34px); }
    .m-listen .line-title { font-size: 22px; }
    .final-title { font-size: 21px; }
    .promise-heading { font-size: 21px; }
    p { font-size: 15.5px; }
  }

  @media (max-width: 350px) {
    .m-inner { width: min(100% - 26px, 520px); }
    h1 { font-size: 27px; }
    .m-listen .line-title { font-size: 20px; }
    .final-title { font-size: 19px; }
    .promise-heading { font-size: 19px; }
    .line-title span { white-space: normal; }
    .cta { width: 100%; padding-inline: 14px; font-size: 14px; }
  }
}

/* ===== Consultation choices (desktop) ===== */
.desktop-options {
  display: block;
  width: min(100vw, 1024px);
  margin: 0 auto;
  padding: 72px 28px 78px;
  background:
    radial-gradient(circle at 50% 0%, rgba(150, 92, 40, .17), transparent 42%),
    linear-gradient(180deg, #0d0906 0%, #070504 100%);
  border-top: 1px solid rgba(202,164,103,.24);
  border-bottom: 1px solid rgba(202,164,103,.20);
}
.desktop-options-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}
.options-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: .18em;
}
.desktop-options h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .04em;
}
.options-lead {
  max-width: 46em;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}
.option-card {
  padding: 30px 28px 26px;
  border: 1px solid rgba(202,164,103,.26);
  border-radius: 8px;
  background: rgba(28,18,11,.72);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.option-card-paid {
  border-color: rgba(209,170,104,.48);
  background: linear-gradient(180deg, rgba(54,35,19,.86), rgba(20,13,8,.86));
}
.option-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: .16em;
}
.option-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 500;
}
.option-card > p:not(.option-label):not(.option-note) {
  min-height: 64px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.option-btn {
  display: flex;
  min-height: 56px;
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(202,164,103,.35);
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  letter-spacing: .05em;
  text-decoration: none;
}
.option-btn-line { background: linear-gradient(180deg, var(--green2), var(--green)); }
.option-btn-paid { background: linear-gradient(180deg, #865a29, #5d3b1d); }
.option-btn:hover { filter: brightness(1.08); }
.option-note {
  margin: 12px 0 0;
  color: #bfb3a4;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 700px) {
  .desktop-options { display: none; }

  .reserve-box h4 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
  }
  .mobile-option {
    margin-top: 22px;
    padding: 22px 18px 20px;
    border: 1px solid rgba(202,164,103,.25);
    border-radius: 6px;
    background: rgba(31,20,13,.68);
  }
  .mobile-option-paid {
    border-color: rgba(209,170,104,.45);
    background: linear-gradient(180deg, rgba(64,41,22,.80), rgba(24,15,10,.80));
  }
  .mobile-option-label {
    margin: 0 0 8px;
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: .16em;
  }
  .mobile-option > p:not(.mobile-option-label):not(.payment-note) {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.75;
  }
  .mobile-option .cta {
    margin-top: 4px;
  }
  .cta-paid {
    background: linear-gradient(180deg, #865a29, #5d3b1d);
  }
  .payment-note {
    margin: 11px 0 0;
    color: #bfb3a4;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .option-grid { grid-template-columns: 1fr; }
  .option-card > p:not(.option-label):not(.option-note) { min-height: 0; }
}
