:root {
  --ink: #342a24;
  --sub: #76675d;
  --paper: #faf8f3;
  --milk: #fffdf8;
  --beige: #eee8dd;
  --wood: #9a7657;
  --wood-dark: #755842;
  --line: rgba(52, 42, 36, 0.13);
  --shadow: 0 28px 70px rgba(89, 72, 58, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  line-height: 1.85;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 850ms ease,
    transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(250, 248, 243, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.logo {
  width: max-content;
  font-family: "Noto Serif JP", serif;
  line-height: 1.15;
}

.logo span {
  display: block;
  font-size: 31px;
  letter-spacing: 0;
}

.logo small {
  display: block;
  margin-top: 3px;
  text-align: center;
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--sub);
  font-size: 14px;
  font-weight: 500;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.insta-link {
  color: var(--wood-dark);
  font-size: 13px;
  font-weight: 700;
}

.reserve-link {
  justify-self: end;
  min-width: 116px;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--milk);
  background: var(--wood);
  text-align: center;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 74px);
  padding: clamp(54px, 8vw, 112px) clamp(20px, 6vw, 90px) 32px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.92) 0%, rgba(250, 248, 243, 0.82) 34%, rgba(250, 248, 243, 0.18) 63%, rgba(250, 248, 243, 0.02) 100%),
    linear-gradient(0deg, rgba(250, 248, 243, 0.46), rgba(250, 248, 243, 0) 35%),
    url("assets/nuzzle-hero-chatgpt.png") center / cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: clamp(16px, 2vw, 28px) 0;
}

.overline,
.section-kicker {
  margin: 0 0 16px;
  color: var(--wood);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
.phone {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 1.34;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.5;
}

h3 {
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
}

.lead {
  max-width: 580px;
  margin-bottom: 32px;
  color: #5f554e;
  font-size: 17px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 168px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.25;
}

.button.primary {
  color: var(--milk);
  background: var(--wood);
  box-shadow: 0 14px 28px rgba(117, 88, 66, 0.2);
}

.button.ghost {
  color: var(--wood-dark);
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid rgba(117, 88, 66, 0.24);
}

.quick-info {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(780px, 100%);
  margin-top: clamp(42px, 10vw, 116px);
}

.quick-info div {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 12px 30px rgba(89, 72, 58, 0.1);
  text-align: center;
}

.quick-info span {
  color: var(--sub);
  font-size: 13px;
}

.quick-info strong {
  font-size: 17px;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 7vw, 110px);
}

.concept {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.concept p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--sub);
}

.style-section {
  padding: clamp(72px, 10vw, 124px) clamp(20px, 7vw, 110px);
  background: var(--milk);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin-bottom: 0;
}

.style-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  margin-bottom: 18px;
}

.featured-style,
.hair-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--beige);
}

.featured-style {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.featured-style img,
.hair-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.style-intro {
  max-width: 620px;
}

.style-intro h3 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.45;
}

.style-intro p {
  color: var(--sub);
}

.hair-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.hair-gallery figure {
  position: relative;
  aspect-ratio: 1 / 1;
}

.hair-gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.style-grid article {
  min-height: 260px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(250, 248, 243, 0.92)),
    var(--paper);
}

.style-grid p,
.menu-row span,
.shop-info dd,
.reservation-panel span {
  color: var(--sub);
}

.menu {
  background: linear-gradient(180deg, #f4efe6, #eee5d9);
}

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}

.menu-row strong,
.menu-link {
  flex: 0 0 auto;
  color: var(--wood-dark);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
}

.menu-link {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(117, 88, 66, 0.38);
}

.stylist {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(250, 248, 243, 0.94), rgba(250, 248, 243, 0.78)),
    url("assets/style-main-woman.png") right center / auto 100% no-repeat;
}

.stylist-profile {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.stylist-profile p {
  color: var(--sub);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(36px, 8vw, 112px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 7vw, 110px);
  background: var(--milk);
}

.shop-info h2 small {
  font-family: "Zen Kaku Gothic New", system-ui, sans-serif;
  font-size: 18px;
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--wood-dark);
  font-weight: 700;
}

dd {
  margin: 0;
}

.map-embed {
  height: 320px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--beige);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reservation-panel {
  padding: clamp(30px, 5vw, 46px);
  border-radius: 8px;
  background: #f3ede4;
  text-align: center;
  box-shadow: var(--shadow);
}

.reservation-panel p {
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
}

.reservation-panel .button {
  width: 100%;
  margin-bottom: 12px;
}

.reservation-panel .button.ghost {
  margin-bottom: 24px;
  background: rgba(255, 253, 248, 0.68);
}

.reservation-panel span {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.phone {
  font-size: clamp(28px, 3vw, 38px);
}

@media (max-width: 920px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

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

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(250, 248, 243, 0.96) 0%, rgba(250, 248, 243, 0.86) 48%, rgba(250, 248, 243, 0.22) 100%),
      linear-gradient(0deg, rgba(250, 248, 243, 0.62), rgba(250, 248, 243, 0) 38%),
      url("assets/nuzzle-hero-chatgpt.png") center / cover;
  }

  .quick-info,
  .hair-gallery,
  .style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    display: block;
  }

  .style-showcase {
    grid-template-columns: 1fr;
  }

  .stylist {
    grid-template-columns: 1fr;
    background: var(--paper);
  }
}

@media (max-width: 560px) {
  .header {
    padding: 12px 16px;
  }

  .logo span {
    font-size: 25px;
  }

  .reserve-link {
    min-width: 96px;
    padding: 8px 13px;
    font-size: 14px;
  }

  .insta-link {
    display: none;
  }

  .hero {
    padding: 34px 16px 28px;
    background:
      linear-gradient(180deg, rgba(250, 248, 243, 0.96), rgba(250, 248, 243, 0.82) 56%, rgba(250, 248, 243, 0.38)),
      url("assets/nuzzle-hero-chatgpt.png") 58% center / cover;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 29px;
  }

  .quick-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-info div {
    min-height: 94px;
    border-radius: 8px;
  }

  .section,
  .style-section,
  .access {
    padding: 66px 18px;
  }

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

  .hair-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .style-grid article {
    min-height: 210px;
  }

  .menu-row {
    display: block;
    padding: 20px 0;
  }

  .menu-row strong {
    display: block;
    margin-top: 6px;
  }

  .menu-link {
    display: block;
    margin-top: 6px;
    width: max-content;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
