:root {
  --deep: #180b29;
  --deep-2: #2b1745;
  --purple: #563574;
  --purple-2: #714b93;
  --purple-soft: #efe6f3;
  --gold: #caa96a;
  --gold-2: #e8cd86;
  --cream: #fffaf4;
  --white: #ffffff;
  --text: #30223e;
  --muted: #746a7b;
  --line: rgba(86, 53, 116, .18);
  --shadow: 0 22px 60px rgba(34, 17, 51, .14);
  --radius: 18px;
  --container: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  line-height: 1.85;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 244, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(86, 53, 116, .14);
}

.notice-bar {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 4px 16px;
  color: var(--white);
  background: linear-gradient(90deg, var(--deep), var(--deep-2), var(--deep));
  font-size: 13px;
  letter-spacing: .08em;
  text-align: center;
}

.header-main {
  width: var(--container);
  min-height: 86px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 169, 106, .55);
  border-radius: 50%;
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
}

.brand-text strong,
.brand-text em {
  display: block;
}

.brand-text strong {
  color: var(--purple);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.2;
}

.brand-text em {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: .1em;
}

.global-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--purple);
  font-size: 14px;
  letter-spacing: .08em;
}

.global-nav a {
  position: relative;
  padding-block: 8px;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}

.global-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--deep-2));
  font-size: 14px;
  letter-spacing: .1em;
  box-shadow: 0 12px 28px rgba(86, 53, 116, .18);
}

.nav-toggle,
.menu-button {
  display: none;
}

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 16%, rgba(202, 169, 106, .28), transparent 22%),
    radial-gradient(circle at 12% 42%, rgba(120, 82, 156, .52), transparent 30%),
    linear-gradient(120deg, rgba(24, 11, 41, .98), rgba(43, 23, 69, .95), rgba(90, 55, 120, .78));
  overflow: hidden;
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding-block: clamp(58px, 8vw, 96px);
}

.eyebrow {
  color: var(--gold-2);
  letter-spacing: .22em;
  font-size: 14px;
  margin-bottom: 14px;
}

.hero h1,
.final-cta h2,
.sub-hero h1 {
  margin: 0;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.25;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.hero-lead {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(16px, 1.7vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .08em;
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--deep);
  background: linear-gradient(135deg, #f2d792, var(--gold));
  box-shadow: 0 18px 34px rgba(202, 169, 106, .25);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .55);
}

.btn.secondary.dark {
  color: var(--purple);
  border-color: rgba(86, 53, 116, .26);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 4px 14px;
  border: 1px solid rgba(229, 200, 135, .55);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
}

.hero-photo-area {
  position: relative;
  width: min(420px, 100%);
  justify-self: center;
}

.hero-photo-area::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid rgba(229, 200, 135, .45);
  border-radius: 220px 220px var(--radius) var(--radius);
}

.photo-placeholder {
  position: relative;
  z-index: 1;
  width: min(390px, 100%);
  height: 500px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 220px 220px var(--radius) var(--radius);
  background:
    radial-gradient(circle at 50% 20%, #fff, #f2dfe9 25%, rgba(202, 169, 106, .45) 42%, rgba(86, 53, 116, .25) 78%),
    linear-gradient(135deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, .06));
  box-shadow: 0 40px 100px rgba(0, 0, 0, .28);
  color: rgba(255, 255, 255, .72);
  letter-spacing: .16em;
}

.hero-name-card {
  position: relative;
  z-index: 2;
  width: min(190px, 58%);
  margin: -70px auto 0;
  padding: 20px;
  text-align: center;
  color: var(--deep);
  background: rgba(255, 250, 244, .92);
  border: 1px solid rgba(202, 169, 106, .35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-name-card p {
  color: var(--purple);
  font-size: 24px;
  letter-spacing: .18em;
}

.hero-name-card small {
  color: var(--gold);
  font-family: Georgia, serif;
  letter-spacing: .1em;
}

.section {
  padding: clamp(64px, 8vw, 100px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: .22em;
}

.section-heading h2 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.45;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.intro-section,
.worry-section,
.voice-section {
  background: var(--white);
}

.intro-panel {
  padding: clamp(28px, 5vw, 54px);
  background: #fffdfb;
  border: 1px solid rgba(202, 169, 106, .35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-panel .section-heading {
  margin-bottom: 20px;
}

.intro-panel p {
  color: var(--muted);
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.worry-grid article,
.feature-list article,
.voice-grid blockquote,
.post-list article,
.faq-list details,
.menu-cards article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.worry-grid article {
  padding: 26px;
}

.worry-grid h3,
.feature-list h3,
.menu-cards h3,
.post-list h3 {
  margin: 0 0 10px;
  color: var(--purple);
  font-weight: 400;
  font-size: 21px;
}

.worry-grid p,
.feature-list p,
.menu-cards p {
  color: var(--muted);
}

.style-section,
.column-section,
.faq-preview {
  background: linear-gradient(180deg, var(--purple-soft), var(--cream));
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.split.reverse {
  grid-template-columns: 1.1fr .9fr;
}

.split.reverse .section-heading {
  order: 2;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--purple);
  border-bottom: 1px solid var(--gold);
  letter-spacing: .08em;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  padding: 28px;
}

.feature-list.no-number article {
  padding-left: 28px;
}

.menu-section {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 20%, rgba(202, 169, 106, .22), transparent 20%),
    linear-gradient(135deg, var(--deep), var(--deep-2));
}

.menu-cards {
  display: grid;
  gap: 18px;
}

.menu-cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-cards article {
  padding: 34px 30px;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.menu-cards h3,
.menu-cards p {
  color: var(--white);
}

.menu-cards p {
  opacity: .86;
}

.menu-cards a {
  display: inline-flex;
  margin-top: 20px;
  padding: 8px 20px;
  color: var(--deep);
  background: rgba(255, 255, 255, .9);
  border-radius: 999px;
  font-size: 14px;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.voice-grid blockquote {
  margin: 0;
  padding: 30px;
}

.voice-grid blockquote::before {
  content: "“";
  display: block;
  height: 30px;
  color: rgba(86, 53, 116, .18);
  font-size: 60px;
  line-height: .5;
}

.voice-grid cite {
  display: block;
  margin-top: 18px;
  color: var(--purple);
  font-style: normal;
  font-size: 14px;
}

.post-list {
  display: grid;
  gap: 16px;
}

.post-list article {
  padding: 24px 26px;
}

.post-date {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: .08em;
}

.post-list h3 {
  margin-top: 8px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--purple);
  font-size: 18px;
  letter-spacing: .04em;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

.sub-hero {
  padding: clamp(70px, 9vw, 110px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(202, 169, 106, .23), transparent 20%),
    linear-gradient(135deg, var(--deep), var(--deep-2));
}

.sub-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
}

.sub-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .86);
}

.final-cta {
  padding: clamp(70px, 9vw, 110px) 0;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 18% 30%, rgba(202, 169, 106, .18), transparent 24%),
    radial-gradient(circle at 86% 30%, rgba(202, 169, 106, .16), transparent 20%),
    linear-gradient(135deg, var(--deep), var(--deep-2));
}

.final-cta-inner {
  max-width: 820px;
}

.final-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.final-cta p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, .86);
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 38px 0 20px;
  color: rgba(255, 255, 255, .86);
  background: #13071f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.footer-name {
  color: var(--white);
  font-size: 24px;
  letter-spacing: .18em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  font-size: 13px;
}

.site-footer small {
  display: block;
  width: var(--container);
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  color: rgba(255, 255, 255, .55);
}

.fixed-reserve {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1001;
  display: none;
  min-width: 132px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--deep);
  background: linear-gradient(135deg, #f2d792, var(--gold));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
  text-align: center;
  font-weight: 700;
  letter-spacing: .08em;
}

@media (max-width: 1040px) {
  .header-main {
    grid-template-columns: auto auto auto;
  }

  .global-nav {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(24, 11, 41, .98);
    color: var(--white);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: .28s ease;
  }

  .global-nav a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .nav-toggle:checked ~ .global-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-button {
    justify-self: end;
    display: grid;
    gap: 6px;
    cursor: pointer;
  }

  .menu-button span {
    width: 34px;
    height: 1px;
    background: var(--purple);
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .section-heading {
    order: initial;
  }

  .worry-grid,
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 560px);
  }

  body {
    line-height: 1.75;
  }

  .notice-bar {
    font-size: 11px;
    min-height: 30px;
  }

  .header-main {
    min-height: 70px;
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text em {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .global-nav {
    top: 100px;
  }

  .hero-grid {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    padding-block: 46px 70px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 33px;
    letter-spacing: .05em;
  }

  .hero-lead {
    margin-top: 18px;
  }

  .hero-actions,
  .final-cta .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    justify-content: center;
  }

  .hero-photo-area {
    width: min(330px, 100%);
    margin-inline: auto;
    justify-self: center;
  }

  .hero-photo-area::before {
    display: none;
  }

  .photo-placeholder {
    width: min(310px, 100%);
    height: 390px;
    margin-inline: auto;
  }

  .hero-name-card {
    width: min(170px, 62%);
    margin-top: -58px;
  }

  .hero-name-card p {
    font-size: 22px;
  }

  .worry-grid,
  .voice-grid,
  .menu-cards.two {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .section-heading.align-left {
    text-align: left;
  }

  .center-action {
    justify-content: stretch;
  }

  .fixed-reserve {
    display: block;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 31px;
  }

  .photo-placeholder {
    width: min(300px, 100%);
    height: 370px;
  }
}
