:root {
  --greige: #b09a8b;
  --greige-deep: #8d6f5d;
  --pink: #d8b4a8;
  --cream: #faf6f2;
  --cream-line: #eaddd3;
  --ink: #4d4238;
  --ink-soft: #857567;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 2;
  letter-spacing: 0.02em;
}

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

/* ---------- hero ---------- */

.hero {
  background: linear-gradient(rgba(60, 44, 32, 0.5), rgba(90, 66, 48, 0.35)),
    url("assets/hero-salon.jpg") center/cover no-repeat;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 2rem;
  position: relative;
}

.logo {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}

.logo-accent {
  font-style: italic;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-links a:hover {
  opacity: 0.75;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.92);
  color: var(--greige-deep) !important;
  padding: 0.4rem 1.4rem;
  border-radius: 999px;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 20;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 8vw;
  max-width: 960px;
}

.hero-eyebrow {
  background: rgba(255, 255, 255, 0.9);
  color: var(--greige-deep);
  font-weight: bold;
  font-size: 0.82rem;
  padding: 0.2rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  letter-spacing: 0.16em;
}

.hero h1 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 14px rgba(50, 30, 15, 0.45);
}

.hero-lead {
  margin-top: 1.4rem;
  font-size: 1.02rem;
  text-shadow: 0 1px 8px rgba(50, 30, 15, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}

.cta-button {
  background: var(--greige);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 0.85rem 2.4rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(90, 60, 40, 0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(90, 60, 40, 0.4);
}

.cta-button.outline {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid #fff;
}

.cta-button.outline.dark {
  background: transparent;
  border: 2px solid var(--greige-deep);
  color: var(--greige-deep);
  box-shadow: none;
}

.hero-info-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 0.9rem 2rem;
  font-size: 0.92rem;
}

.hero-info-bar strong {
  color: var(--greige-deep);
  margin-right: 0.4rem;
}

/* ---------- sections ---------- */

.section {
  padding: 5.5rem 8vw;
  max-width: 1100px;
  margin: 0 auto;
}

.section.alt {
  max-width: none;
  background: var(--cream);
}

.section.alt > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.section-en {
  color: var(--greige);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-style: italic;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-align: center;
}

.section h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  text-align: center;
  font-size: 1.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 2.8rem;
  position: relative;
  padding-bottom: 1rem;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 2px;
  background: var(--pink);
}

.section-lead {
  text-align: center;
  margin: -1.6rem auto 2.6rem;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- concept ---------- */

.concept-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.concept-grid img {
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(120, 85, 60, 0.16);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.concept-text p + p {
  margin-top: 1rem;
}

.concept-points {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.concept-points li {
  background: var(--cream);
  border-left: 3px solid var(--pink);
  border-radius: 6px;
  padding: 0.55rem 1.1rem;
  font-weight: bold;
  font-size: 0.95rem;
}

/* ---------- treatment feature ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-item {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(120, 85, 60, 0.14);
}

.feature-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-item figcaption {
  padding: 1.5rem 1.7rem 1.9rem;
}

.feature-item h3 {
  color: var(--greige-deep);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- menu ---------- */

.menu-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(120, 85, 60, 0.12);
}

.menu-table th,
.menu-table td {
  border-bottom: 1px solid var(--cream-line);
  padding: 1.05rem 1.4rem;
  font-size: 0.98rem;
  text-align: left;
}

.menu-table tr:last-child th,
.menu-table tr:last-child td {
  border-bottom: none;
}

.menu-table td {
  text-align: right;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.05rem;
  white-space: nowrap;
  color: var(--greige-deep);
  font-weight: bold;
}

.menu-table tr.pickup {
  background: var(--cream);
}

.tag {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 0.05rem 0.7rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  letter-spacing: 0.08em;
}

.menu-note {
  margin-top: 1rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- stylist ---------- */

.stylist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stylist-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: 18px;
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(120, 85, 60, 0.1);
}

.stylist-avatar {
  width: 150px;
  margin: 0 auto 1.2rem;
}

.stylist-avatar svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(120, 85, 60, 0.18));
}

.stylist-title {
  color: var(--pink);
  font-weight: bold;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

.stylist-card h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.35rem;
  margin: 0.3rem 0 0.9rem;
  letter-spacing: 0.08em;
}

.stylist-kana {
  font-size: 0.85rem;
  font-weight: normal;
  color: var(--ink-soft);
}

.stylist-bio {
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-align: left;
}

/* ---------- hours ---------- */

.hours-wrap {
  overflow-x: auto;
  max-width: 720px;
  margin: 0 auto;
}

.hours-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(120, 85, 60, 0.1);
}

.hours-table th,
.hours-table td {
  border: 1px solid var(--cream-line);
  padding: 0.8rem 0.6rem;
  text-align: center;
  font-size: 0.95rem;
}

.hours-table thead th {
  background: var(--greige);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.hours-table tbody th {
  background: var(--cream);
  font-weight: bold;
  white-space: nowrap;
}

.hours-table td {
  color: var(--greige-deep);
  font-weight: bold;
}

.hours-table td.closed {
  color: #c9bcae;
  background: #f8f4ef;
}

.hours-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- access ---------- */

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.access-info dt {
  color: var(--greige-deep);
  font-weight: bold;
  margin-top: 1rem;
}

.access-info dt:first-child {
  margin-top: 0;
}

.access-info dd {
  font-size: 0.95rem;
}

.access-info a {
  color: var(--greige-deep);
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(120, 85, 60, 0.14);
}

/* ---------- contact ---------- */

.contact-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--cream), #ffffff);
  max-width: none;
}

.contact-cta p {
  max-width: 640px;
  margin: 0 auto;
}

.contact-cta .hero-buttons {
  justify-content: center;
}

/* ---------- footer ---------- */

footer {
  background: var(--ink);
  color: #e0d5c9;
  text-align: center;
  padding: 2.2rem 1.5rem;
  font-size: 0.85rem;
}

footer .credits {
  margin-top: 0.6rem;
  font-size: 0.78rem;
}

footer .credits a {
  color: #cbb39f;
}

footer .copyright {
  margin-top: 0.8rem;
  opacity: 0.7;
}

.back-home {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(155deg, #ffb46b 0%, #f0964f 45%, #c17a52 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  box-shadow:
    0 16px 28px rgba(193, 122, 82, 0.45),
    0 6px 12px rgba(74, 50, 34, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.45),
    inset 0 -3px 5px rgba(120, 60, 20, 0.25);
  z-index: 100;
  transition: transform 0.2s, box-shadow 0.2s;
}

.back-home:hover {
  transform: translateY(-5px) scale(1.06);
  box-shadow:
    0 22px 34px rgba(193, 122, 82, 0.55),
    0 8px 14px rgba(74, 50, 34, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    inset 0 -3px 5px rgba(120, 60, 20, 0.3);
}

/* ---------- mobile ---------- */

@media (max-width: 720px) {
  .back-home {
    width: 68px;
    height: 68px;
    font-size: 0.65rem;
    right: 1rem;
    bottom: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(70, 50, 35, 0.97);
    padding: 1.5rem 0;
    gap: 1.1rem;
    z-index: 10;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-info-bar {
    gap: 0.4rem;
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 3.5rem 6vw;
  }

  .concept-grid,
  .feature-grid,
  .stylist-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }
}
