:root {
  --ink: #3c342d;
  --muted: #7c7168;
  --line: #ddd4cb;
  --paper: #fbf8f4;
  --soft: #f3ede7;
  --taupe: #8d7f70;
  --taupe-dark: #75695e;
  --white: #fffdf9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0.08em;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 18px clamp(22px, 5vw, 62px);
  background: linear-gradient(180deg, rgba(251, 248, 244, 0.78), rgba(251, 248, 244, 0));
}

.brand {
  display: inline-grid;
  width: fit-content;
  line-height: 1;
  letter-spacing: 0;
}

.brand-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.brand-sub {
  margin-top: -2px;
  padding-left: 48px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.global-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.7rem;
  font-weight: 700;
}

.nav-toggle,
.menu-button {
  display: none;
}

.global-nav a,
.site-footer nav a {
  position: relative;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
}

.global-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.global-nav a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.reserve-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 28px;
  border: 1px solid rgba(60, 52, 45, 0.42);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 0 24px;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1);
  animation: heroFadeZoom 24s infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  text-align: center;
}

@keyframes heroFadeZoom {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  8% {
    opacity: 1;
  }

  25% {
    opacity: 1;
  }

  33% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.gallery-section h2,
.staff-section h2 {
  margin: 30px 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.hero h1 {
  font-size: 4.7rem;
  line-height: 1.45;
}

.hero-logo {
  margin: 0;
  color: var(--white);
  line-height: 1;
  text-transform: lowercase;
}

.hero-logo-main {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 11vw, 9.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.hero-logo-sub {
  display: block;
  width: fit-content;
  margin: -0.18em 0 0 auto;
  padding-right: 0.16em;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.05rem, 2vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-copy p:last-child {
  margin: 32px 0 0;
  color: #665d55;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 2.2;
}

.scroll-cue {
  position: absolute;
  right: 46px;
  bottom: 74px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  display: block;
  width: 1px;
  height: 76px;
  margin: 18px auto 0;
  content: "";
  background: var(--muted);
}

.news-bar {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
  min-height: 72px;
  padding: 0 clamp(26px, 10vw, 160px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: #665d55;
  font-size: 0.78rem;
}

.news-bar p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.section-frame {
  padding: clamp(46px, 6vw, 82px) clamp(26px, 10vw, 156px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.concept-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.2fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.section-copy h2,
.gallery-section h2,
.staff-section h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.7;
}

.section-copy p:last-child {
  margin: 28px 0 0;
  color: #665d55;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 2.35;
}

.concept-photo {
  margin: 0;
}

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

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.arrow-link::after {
  width: 46px;
  height: 1px;
  content: "";
  background: currentColor;
}

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

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

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-block: 0;
}

.menu-card,
.salon-card,
.reservation-panel {
  min-height: auto;
  padding: clamp(34px, 5vw, 58px);
}

.menu-card,
.reservation-panel {
  border-bottom: 1px solid var(--line);
}

.reservation-panel {
  color: var(--white);
  background: linear-gradient(145deg, var(--taupe-dark), #9a8c7c);
}

.price-list {
  margin: 28px 0 34px;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: #615850;
  font-size: 0.82rem;
  font-weight: 700;
}

.price-list dt,
.price-list dd {
  margin: 0;
}

.reservation-note {
  margin: 8px 0 28px;
  font-size: 0.82rem;
}

.phone-box,
.reserve-button {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 253, 249, 0.48);
}

.phone-box + .phone-box,
.reserve-button {
  margin-top: 16px;
}

.phone-box span {
  font-size: 0.82rem;
  font-weight: 800;
}

.phone-box strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: 0.04em;
}

.phone-box small {
  font-size: 0.72rem;
}

.reserve-button {
  min-height: 58px;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.salon-name {
  margin: 28px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.salon-card p:not(.section-label):not(.salon-name) {
  color: #665d55;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 2.1;
}

.salon-card img {
  width: 100%;
  margin-top: 28px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 7vw, 110px);
}

.staff-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  align-items: center;
}

.staff-card img {
  width: 170px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.staff-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}

.staff-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.staff-card small {
  color: #665d55;
  font-size: 0.78rem;
  line-height: 2;
}

.bottom-reservation {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 118px;
  padding: 28px clamp(26px, 10vw, 156px);
  color: var(--white);
  background: linear-gradient(90deg, #817466, #a39483);
}

.bottom-reservation p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
}

.bottom-reservation a {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.45);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  letter-spacing: 0.06em;
}

.site-footer {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px clamp(22px, 5vw, 62px);
  background: var(--white);
}

.site-footer small {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 150px 1fr;
  }

  .global-nav {
    justify-content: end;
    gap: 18px;
  }

  .reserve-link {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .concept-section,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .staff-card {
    grid-template-columns: 130px 1fr;
  }

  .staff-card img {
    width: 130px;
  }
}

@media (max-width: 760px) {
  body {
    letter-spacing: 0.04em;
  }

  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    gap: 0 16px;
    min-height: auto;
    padding: 22px;
  }

  .brand-main {
    font-size: 1.65rem;
  }

  .nav-toggle {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  .menu-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    justify-self: end;
    border: 1px solid rgba(60, 52, 45, 0.3);
    background: rgba(251, 248, 244, 0.78);
    cursor: pointer;
  }

  .nav-toggle:focus-visible ~ .menu-button {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
  }

  .menu-button span {
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .global-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    border: 0 solid rgba(60, 52, 45, 0.14);
    background: rgba(251, 248, 244, 0.94);
    font-size: 0.72rem;
    opacity: 0;
    transition:
      max-height 220ms ease,
      margin-top 220ms ease,
      opacity 160ms ease;
  }

  .global-nav a {
    min-height: 44px;
    border-bottom: 1px solid rgba(60, 52, 45, 0.12);
  }

  .global-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(38deg);
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-38deg);
  }

  .nav-toggle:checked ~ .global-nav {
    max-height: 330px;
    margin-top: 16px;
    border-width: 1px;
    opacity: 1;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    padding: 0 22px;
  }

  .hero-logo-main {
    font-size: clamp(4.6rem, 22vw, 7.6rem);
  }

  .hero-logo-sub {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
  }

  .scroll-cue {
    display: none;
  }

  .news-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 24px;
  }

  .section-frame {
    padding: 44px 24px;
  }

  .section-title-row {
    align-items: start;
    flex-direction: column;
  }

  .gallery-grid,
  .staff-grid,
  .bottom-reservation,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .info-grid {
    padding: 0;
  }

  .menu-card,
  .salon-card,
  .reservation-panel {
    padding: 44px 24px;
  }

  .staff-card {
    grid-template-columns: 112px 1fr;
    gap: 18px;
  }

  .staff-card img {
    width: 112px;
  }

  .bottom-reservation {
    align-items: stretch;
    padding: 34px 24px;
  }

  .site-footer {
    justify-items: start;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: start;
    gap: 12px 18px;
  }
}

@media (max-width: 420px) {
  .hero-logo-main {
    font-size: clamp(4rem, 24vw, 6.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}
