:root {
  --ink: #242225;
  --muted: #6d666c;
  --line: #e8ddd9;
  --paper: #fffaf7;
  --soft: #f3ebe6;
  --rose: #b87582;
  --rose-dark: #7d4855;
  --sage: #617568;
  --gold: #ad8a4e;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(54, 39, 33, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 5%;
  background: rgba(255, 250, 247, 0.9);
  border-bottom: 1px solid rgba(232, 221, 217, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  line-height: 1.1;
}

.brand span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
}

.brand strong {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.header-cta,
.button,
.floating-cta,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.button.primary,
.floating-cta {
  color: var(--white);
  background: var(--rose-dark);
}

.button.ghost {
  color: var(--rose-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 1fr);
  min-height: 680px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8% 80px 10%;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Noto Serif JP", serif;
  line-height: 1.35;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: 3.05rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.25rem;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.hero-image {
  min-height: 520px;
  background: linear-gradient(90deg, rgba(255, 250, 247, 0.8), rgba(255, 250, 247, 0.05)), url("assets/salon-hero.png") center / cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  color: var(--rose-dark);
  font-size: 1rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.flow {
  padding: 96px 5%;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head p:not(.eyebrow),
.image-story p,
.treatment p,
.reserve p,
.proof-copy p,
.flow p {
  color: var(--muted);
}

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

.feature-grid article,
.menu-card,
.voice-grid blockquote {
  margin: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-grid span {
  color: var(--gold);
  font-weight: 900;
}

.image-story,
.treatment,
.reserve {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 96px 5%;
}

.image-story {
  background: var(--ink);
  color: var(--white);
}

.image-story p,
.image-story .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.image-story img,
.treatment img {
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.muted {
  background: var(--soft);
}

.menu-card p {
  margin-bottom: 8px;
  color: var(--sage);
  font-weight: 800;
}

.menu-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--rose-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.menu-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.menu-card.featured {
  border-color: var(--rose);
  box-shadow: var(--shadow);
}

.treatment {
  background: var(--white);
}

.voice-grid blockquote {
  color: var(--muted);
}

.flow {
  background: var(--soft);
}

.flow ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow li {
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
}

.flow li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
  font-weight: 900;
}

.reserve {
  background: var(--rose-dark);
  color: var(--white);
}

.reserve .eyebrow,
.reserve p {
  color: rgba(255, 255, 255, 0.78);
}

.reserve > div {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

footer {
  padding: 26px 5%;
  color: var(--muted);
  background: var(--ink);
  text-align: center;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: var(--shadow);
}

.back-link {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  color: var(--rose-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .image-story,
  .treatment,
  .reserve {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 56px 6% 36px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .trust-strip,
  .feature-grid,
  .menu-grid,
  .voice-grid,
  .flow ol {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .flow,
  .image-story,
  .treatment,
  .reserve {
    padding: 64px 6%;
  }

  .image-story img,
  .treatment img {
    height: 340px;
  }

  .floating-cta,
  .back-link {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 4%;
  }

  .brand strong {
    font-size: 1rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 9px 14px;
  }

  .hero-image {
    min-height: 360px;
  }
}
