:root {
  --white: #fffdf8;
  --pure-white: #ffffff;
  --pearl: #f7f5f0;
  --mist: #ece9e1;
  --charcoal: #171513;
  --text: #2d2923;
  --muted: #746c60;
  --gold: #b9923a;
  --gold-deep: #8b6824;
  --gold-soft: #d9bd75;
  --line: rgba(185, 146, 58, 0.24);
  --shadow: 0 24px 70px rgba(50, 41, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

section {
  scroll-margin-top: 82px;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 74px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(185, 146, 58, 0.18);
  background: rgba(255, 253, 248, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 13px;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--gold-deep);
}

.header-reserve,
.reserve-button,
.outline-button,
.mini-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.header-reserve,
.reserve-button {
  color: #ffffff;
  background: linear-gradient(135deg, #d8bd73, #a77c25 62%, #e5cf8e);
  box-shadow: 0 16px 38px rgba(166, 124, 37, 0.22);
}

.header-reserve::before,
.reserve-button::before,
.mini-button::before {
  position: absolute;
  top: -35%;
  left: -85%;
  width: 58%;
  height: 170%;
  content: "";
  background: linear-gradient(
    110deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 34%,
    rgba(255, 255, 255, 0.72) 50%,
    rgba(255, 255, 255, 0.2) 66%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  transform: skewX(-18deg);
  animation: buttonShine 6.5s ease-in-out infinite;
}

.header-reserve::after,
.reserve-button::after,
.mini-button::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.26);
  opacity: 0;
  pointer-events: none;
  animation: buttonGlow 6.5s ease-in-out infinite;
}

.header-reserve,
.reserve-button,
.mini-button {
  isolation: isolate;
}

.header-reserve:hover,
.reserve-button:hover,
.mini-button:hover {
  transform: translateY(-1px);
}

.outline-button {
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.62);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 140px clamp(20px, 6vw, 88px) 72px;
  overflow: hidden;
  background: var(--white);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.88) 0%, rgba(255, 253, 248, 0.62) 36%, rgba(255, 253, 248, 0.18) 72%, rgba(255, 253, 248, 0.04) 100%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.82) 0%, rgba(255, 253, 248, 0.08) 48%),
    url("assets/hero-salon-white.png") center / cover no-repeat;
  animation: salonZoom 5s ease-out forwards;
  transform: scale(1.02);
  transform-origin: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Noto Sans JP", serif;
}

h1 {
  margin-bottom: 24px;
  color: var(--charcoal);
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.86;
  font-weight: 700;
}

.tagline {
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.35;
  transform-origin: left center;
}

.lead {
  max-width: 620px;
  color: #4f493f;
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 2;
}

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

.hero .eyebrow,
.hero .tagline,
.hero .lead {
  animation: heroTextFade 900ms ease both;
}

.hero .tagline {
  animation-delay: 140ms;
}

.hero .lead {
  animation-delay: 260ms;
}

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

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 42px;
  z-index: 1;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel span,
.hero-panel small {
  color: var(--muted);
  font-size: 12px;
}

.hero-panel strong {
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.intro,
.feature,
.reservation,
.access {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
  border-top: 1px solid rgba(185, 146, 58, 0.16);
}

.intro {
  background: linear-gradient(120deg, #ffffff, #f4f1e9);
}

.gloss-section {
  --gloss-pad: clamp(20px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(180px, 240px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) 0 clamp(72px, 10vw, 132px) var(--gloss-pad);
  border-top: 1px solid rgba(185, 146, 58, 0.16);
  background:
    linear-gradient(135deg, rgba(217, 189, 117, 0.15), rgba(255, 255, 255, 0) 42%),
    var(--pure-white);
  overflow: hidden;
}

.gloss-image {
  position: relative;
  overflow: hidden;
  width: min(100%, 240px);
  min-height: 0;
  aspect-ratio: 4 / 5;
  justify-self: end;
  background: transparent;
}

.gloss-image::after {
  position: absolute;
  inset: -1px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--pure-white) 0%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0) 76%, var(--pure-white) 100%),
    linear-gradient(0deg, var(--pure-white) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, var(--pure-white) 0%, rgba(255, 255, 255, 0) 18%);
}

.gloss-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 38%;
}

.gloss-copy {
  max-width: 620px;
}

.gloss-copy p {
  color: var(--muted);
  line-height: 1.9;
}

.gloss-copy .reserve-button {
  margin-top: 18px;
}

h2 {
  margin-bottom: 18px;
  color: var(--gold-deep);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.05;
  transform-origin: left center;
}

.intro p,
.feature-copy p,
.reservation p,
.service-card p,
.feature-list span,
.section-head p,
.access p,
.access-card dd {
  color: var(--muted);
  line-height: 1.9;
}

.section-head {
  padding: clamp(70px, 9vw, 112px) clamp(20px, 6vw, 88px) clamp(34px, 5vw, 56px);
  background: var(--pure-white);
  border-top: 1px solid rgba(185, 146, 58, 0.16);
}

.section-head.compact {
  max-width: 760px;
  padding: 0;
  border-top: 0;
  background: transparent;
}

.section-head p {
  max-width: 650px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 330px;
  padding: clamp(28px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.96);
}

.service-card span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}

.service-card h3 {
  margin: 56px 0 16px;
  color: var(--charcoal);
  font-size: 32px;
}

.service-card strong {
  margin-top: auto;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.mini-button {
  min-height: 42px;
  margin-top: 24px;
  padding: 0 18px;
  color: var(--gold-deep);
  background: rgba(255, 253, 248, 0.92);
  font-size: 13px;
}

.feature {
  background:
    linear-gradient(135deg, rgba(217, 189, 117, 0.18), transparent 34%),
    var(--white);
}

.feature-list {
  display: grid;
  gap: 1px;
  align-self: center;
  background: var(--line);
  box-shadow: var(--shadow);
}

.feature-list div {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
}

.feature-list strong {
  color: var(--charcoal);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
}

.stylist-photo {
  position: relative;
  float: right;
  overflow: hidden;
  width: min(42%, 190px);
  margin: 0 0 18px 24px;
  aspect-ratio: 4 / 5;
  background: var(--pearl);
}

.stylist-photo::after {
  position: absolute;
  inset: -1px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 78%, var(--white) 100%),
    linear-gradient(0deg, var(--white) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0) 14%);
}

.stylist-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 38%;
}

.price-section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
  border-top: 1px solid rgba(185, 146, 58, 0.16);
  background: linear-gradient(120deg, #ffffff, #f3f0e8);
}

.price-table {
  display: grid;
  margin-top: clamp(34px, 5vw, 60px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.price-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.price-table span {
  color: var(--text);
  font-size: clamp(15px, 2vw, 18px);
}

.price-table strong {
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 4vw, 38px);
  white-space: nowrap;
}

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

.access {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(236, 233, 225, 0.62)),
    var(--pearl);
}

.access-card {
  align-self: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.access-card dl {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
}

.access-card div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
}

.access-card dt {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
}

.access-card dd {
  margin: 0;
}

.reservation {
  display: block;
  text-align: center;
  background: linear-gradient(180deg, #fffdf8, #ffffff);
}

.reservation p {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.reservation-actions {
  justify-content: center;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--gold-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

.reveal .section-label,
.reveal h3,
.reveal p:not(.section-label),
.reveal .reserve-button,
.reveal .mini-button,
.reveal .outline-button,
.reveal .phone-link,
.reveal .feature-list div,
.reveal .price-table div,
.reveal .access-card {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible h2,
.tagline.reveal.is-visible {
  animation: goldTitleMove 950ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal.is-visible .section-label {
  animation: textFadeIn 680ms ease both;
}

.reveal.is-visible p:not(.section-label),
.reveal.is-visible h3 {
  animation: textFadeIn 760ms ease 150ms both;
}

.reveal.is-visible .reserve-button,
.reveal.is-visible .mini-button,
.reveal.is-visible .outline-button,
.reveal.is-visible .phone-link {
  animation: textFadeIn 760ms ease 280ms both;
}

.reveal.is-visible .feature-list div,
.reveal.is-visible .price-table div,
.reveal.is-visible .access-card {
  animation: textFadeIn 760ms ease both;
}

.reveal.is-visible .feature-list div:nth-child(2),
.reveal.is-visible .price-table div:nth-child(2) {
  animation-delay: 110ms;
}

.reveal.is-visible .feature-list div:nth-child(3),
.reveal.is-visible .price-table div:nth-child(3) {
  animation-delay: 220ms;
}

.reveal.is-visible .price-table div:nth-child(4) {
  animation-delay: 330ms;
}

.reveal.is-visible .price-table div:nth-child(5) {
  animation-delay: 440ms;
}

.hero h1,
.hero-actions,
.hero-panel {
  animation: heroRise 850ms ease both;
}

.hero-actions {
  animation-delay: 180ms;
}

.hero-panel {
  animation-delay: 320ms;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes goldTitleMove {
  0% {
    opacity: 0;
    transform: perspective(900px) translate3d(-46px, 0, -120px) scale(0.9);
  }

  58% {
    opacity: 1;
    transform: perspective(900px) translate3d(8px, 0, 20px) scale(1.035);
  }

  100% {
    opacity: 1;
    transform: perspective(900px) translate3d(0, 0, 0) scale(1);
  }
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes salonZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes buttonShine {
  0%,
  36% {
    left: -85%;
  }

  58%,
  100% {
    left: 130%;
  }
}

@keyframes buttonGlow {
  0%,
  42%,
  100% {
    opacity: 0;
  }

  54% {
    opacity: 1;
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: var(--muted);
  background: var(--pure-white);
  border-top: 1px solid rgba(185, 146, 58, 0.16);
  font-size: 12px;
}

@media (max-width: 840px) {
  .site-header {
    min-height: 68px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 118px;
  }

  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.9) 0%, rgba(255, 253, 248, 0.58) 68%, rgba(255, 253, 248, 0.12) 100%),
      linear-gradient(0deg, rgba(255, 253, 248, 0.86) 0%, rgba(255, 253, 248, 0.08) 52%),
      url("assets/hero-salon-white.png") center / cover no-repeat;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: end;
    width: min(100%, 280px);
    margin-top: 42px;
  }

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

  .stylist-photo {
    width: min(42%, 180px);
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 32px;
  }
}

@media (max-width: 700px) {
  .gloss-section {
    grid-template-columns: 1fr;
    padding: clamp(72px, 10vw, 132px) var(--gloss-pad);
  }

  .gloss-image {
    order: 1;
    width: min(100%, 220px);
    margin-right: 0;
    margin-left: 0;
    aspect-ratio: 4 / 5;
    justify-self: start;
  }

  .gloss-copy {
    order: 2;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 8px;
    font-size: 13px;
  }

  .brand-mark {
    width: 34px;
  }

  .header-reserve {
    min-height: 42px;
    padding: 0 16px;
  }

  .hero-actions,
  .reservation-actions {
    flex-direction: column;
  }

  .gloss-image {
    aspect-ratio: 4 / 5;
  }

  .reserve-button,
  .outline-button,
  .mini-button {
    width: 100%;
  }

  .price-table div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .access-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal *,
  .hero h1,
  .hero-actions,
  .hero-panel,
  .hero-backdrop {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .header-reserve::before,
  .header-reserve::after,
  .reserve-button::before,
  .reserve-button::after,
  .mini-button::before,
  .mini-button::after {
    animation: none;
    opacity: 0;
    transform: none;
    transition: none;
  }
}
