:root {
  --ivory: #fbf6e9;
  --cream: #f3ead5;
  --white: #fffdf7;
  --green: #173d2c;
  --green-2: #2f563d;
  --olive: #75855a;
  --gold: #b88a32;
  --gold-light: #e4c26e;
  --brown: #6d5539;
  --ink: #2b241b;
  --muted: #756b5d;
  --line: rgba(55, 47, 34, 0.16);
  --shadow: 0 20px 50px rgba(39, 31, 18, 0.13);
  --serif: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
#reservation {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  line-height: 1.85;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.55rem, 9vw, 5rem);
  color: var(--white);
}

h2 {
  font-size: clamp(1.75rem, 6vw, 3rem);
  color: var(--green);
}

h3 {
  font-size: 1.16rem;
  color: var(--green);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 74px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 246, 233, 0.9);
  border-bottom: 1px solid rgba(184, 138, 50, 0.18);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 246, 233, 0.97);
  box-shadow: 0 8px 28px rgba(38, 31, 19, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--serif);
  color: var(--green);
  font-weight: 700;
}

.brand__mark {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(184, 138, 50, 0.55);
}

.brand__text {
  font-size: 1.05rem;
  white-space: nowrap;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(23, 61, 44, 0.2);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--green);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.global-nav {
  position: fixed;
  inset: 74px 0 auto;
  padding: 18px 20px 26px;
  display: none;
  flex-direction: column;
  gap: 10px;
  background: rgba(251, 246, 233, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.global-nav.is-open {
  display: flex;
}

.global-nav a {
  padding: 11px 0;
  color: var(--green);
  font-weight: 600;
}

.nav-cta {
  display: inline-flex;
  justify-content: center;
  padding: 12px 18px !important;
  border-radius: 999px;
  background: var(--green);
  color: var(--white) !important;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 108px 20px 72px;
  overflow: hidden;
  background: var(--green);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: 60% center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(20, 37, 23, 0.78), rgba(20, 37, 23, 0.42) 48%, rgba(20, 37, 23, 0.18)),
    linear-gradient(0deg, rgba(20, 37, 23, 0.62), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.hero__lead {
  max-width: 660px;
  margin: 18px 0 28px;
  color: rgba(255, 253, 247, 0.93);
  font-size: 1rem;
}

.section {
  padding: 78px 0;
}

.section--soft {
  background:
    radial-gradient(circle at 20% 10%, rgba(228, 194, 110, 0.18), transparent 32%),
    var(--cream);
}

.section--green {
  background: linear-gradient(135deg, var(--green), #244f36);
  color: var(--white);
}

.section--green h2,
.section--green h3,
.section--green .section-kicker {
  color: var(--white);
}

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

.section-heading p {
  color: var(--muted);
}

.section--green .section-heading p,
.section--green .quiet-card p {
  color: rgba(255, 253, 247, 0.82);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.split {
  display: grid;
  gap: 30px;
  align-items: center;
}

.split--reverse .feature-panel {
  order: -1;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(184, 138, 50, 0.34);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-section {
  align-items: center;
}

.product-visual {
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 61, 44, 0.08), rgba(184, 138, 50, 0.12)),
    var(--white);
  border: 1px solid rgba(184, 138, 50, 0.24);
  box-shadow: var(--shadow);
}

.product-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(41, 31, 17, 0.16);
}

.button-row,
.button-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row--center,
.center-action {
  justify-content: center;
  text-align: center;
}

.center-action {
  display: flex;
  margin-top: 28px;
}

.button-stack {
  flex-direction: column;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.35;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #241a0a;
  box-shadow: 0 12px 26px rgba(120, 82, 18, 0.22);
}

.button--ghost {
  border-color: rgba(255, 253, 247, 0.65);
  color: var(--white);
  background: rgba(255, 253, 247, 0.12);
}

.button--ghost-dark {
  border-color: rgba(23, 61, 44, 0.28);
  color: var(--green);
  background: var(--white);
}

.button--line {
  background: var(--green-2);
  color: var(--white);
}

.element-grid,
.card-grid,
.menu-grid,
.rank-grid,
.profile-grid {
  display: grid;
  gap: 16px;
}

.element-card,
.quiet-card,
.menu-card,
.rank-grid article,
.profile-card,
.product-card,
.reservation-box,
.company-list,
details {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.75);
  box-shadow: 0 10px 30px rgba(57, 46, 29, 0.07);
}

.element-card {
  padding: 16px 16px 22px;
  text-align: center;
}

.element-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0 0 18px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(184, 138, 50, 0.18);
}

.element-card span {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 138, 50, 0.14);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.note-text {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
}

.quiet-card,
.rank-grid article {
  padding: 24px;
}

.section--green .quiet-card {
  border-color: rgba(228, 194, 110, 0.24);
  background: rgba(255, 253, 247, 0.08);
  box-shadow: none;
}

.check-list {
  padding: 0;
  margin: 20px 0 26px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0 36%, var(--green) 39% 100%);
}

.check-list--large li {
  margin-bottom: 12px;
}

.product-card {
  margin: 22px 0;
  padding: 24px;
}

.product-label {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(184, 138, 50, 0.14);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-card h3 {
  margin-bottom: 12px;
}

.product-points {
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--muted);
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-panel {
  min-height: 360px;
  display: grid;
  place-content: center;
  padding: 36px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(23, 61, 44, 0.48), rgba(23, 61, 44, 0.62)),
    url("assets/wellness-still-life.png") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.lotus {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
}

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

.usp-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 8px 16px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.5);
}

.usp-list span {
  grid-row: span 2;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.menu-card {
  padding: 24px;
}

.menu-group-title {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 8px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
  font-size: 1.12rem;
  text-align: center;
}

.menu-group-title--special {
  margin-top: 34px;
  background: linear-gradient(135deg, #9a2f35, #cf6265);
}

.menu-card--special {
  border-color: rgba(154, 47, 53, 0.24);
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.88), rgba(255, 245, 241, 0.86));
}

.duration {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(23, 61, 44, 0.1);
  color: var(--green);
  font-weight: 700;
}

.price-drop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.price-before {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.96rem;
  text-decoration: line-through;
  white-space: nowrap;
}

.price-arrow {
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
}

.price-after {
  color: #b82e3a;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 7vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.price-note,
.menu-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-note {
  margin: 8px 0 0;
  text-align: right;
  font-weight: 700;
}

.menu-note {
  max-width: 780px;
  margin: 22px auto 0;
  text-align: center;
}

.menu-card dl,
.company-list {
  margin: 18px 0 0;
}

.menu-card dl div,
.company-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.menu-card dt,
.company-list dt {
  color: var(--muted);
  font-weight: 700;
}

.menu-card dd,
.company-list dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
}

.flow-list {
  counter-reset: flow;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.flow-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 700;
}

.flow-list span {
  color: var(--gold);
  font-family: var(--serif);
}

.reservation-box {
  padding: 28px;
  background: linear-gradient(160deg, var(--green), #294a35);
  color: var(--white);
}

.reservation-box h2,
.reservation-box h3,
.reservation-box .section-kicker {
  color: var(--white);
}

.salon-location {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid rgba(228, 194, 110, 0.38);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.08);
}

.salon-location h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.salon-location p {
  margin: 0;
  color: rgba(255, 253, 247, 0.86);
}

.profile-card {
  overflow: hidden;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.profile-card div {
  padding: 22px;
}

.company-list {
  padding: 8px 22px 18px;
}

.company-list a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

details {
  padding: 18px 20px;
  margin-top: 12px;
}

summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 700;
}

details p {
  margin: 12px 0 0;
}

.academy-banner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 78px;
  display: grid;
  gap: 22px;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(23, 61, 44, 0.96), rgba(35, 73, 49, 0.96)),
    radial-gradient(circle at 90% 20%, rgba(228, 194, 110, 0.28), transparent 28%);
  color: var(--ivory);
  border: 1px solid rgba(228, 194, 110, 0.4);
  box-shadow: var(--shadow);
}

.academy-banner h2,
.academy-banner .section-kicker {
  color: var(--ivory);
}

.button--academy {
  align-self: center;
  background: var(--ivory);
  color: var(--green);
}

.site-footer {
  padding: 34px 0 88px;
  background: #112d21;
  color: rgba(255, 253, 247, 0.75);
}

.footer-inner {
  display: grid;
  gap: 14px;
}

.brand--footer {
  color: var(--white);
}

.mobile-fixed-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 45;
  min-height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #241a0a;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(59, 38, 7, 0.28);
}

@media (min-width: 720px) {
  .site-header {
    padding-inline: 34px;
  }

  .nav-toggle {
    display: none;
  }

  .global-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .global-nav a {
    padding: 0;
    font-size: 0.92rem;
  }

  .nav-cta {
    padding: 9px 16px !important;
  }

  .hero {
    align-items: center;
    padding-inline: max(40px, calc((100vw - 1120px) / 2));
  }

  .section {
    padding: 104px 0;
  }

  .split {
    grid-template-columns: 1.02fr 0.98fr;
    gap: 54px;
  }

  .split--reverse {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .split--reverse .feature-panel {
    order: 0;
  }

  .element-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .card-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .rank-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .flow-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .academy-banner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 42px;
    margin-bottom: 100px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .mobile-fixed-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 34px;
  }
}

@media (max-width: 420px) {
  .container,
  .narrow,
  .academy-banner {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    padding-inline: 16px;
  }

  .button {
    width: 100%;
  }

  .menu-card dl div,
  .company-list div {
    display: grid;
    gap: 2px;
  }

  .menu-card dd,
  .company-list dd {
    text-align: left;
  }
}
