/* ===================================================
   Lumière — Private Hair Salon
   ================================================= */

/* ---------- Variables ---------- */
:root {
  --beige:       #F5F0E8;
  --beige-dark:  #EDE6D6;
  --beige-mid:   #E8DFD0;
  --brown:       #2C2826;
  --brown-mid:   #4A3E38;
  --brown-light: #7A6A60;
  --gold:        #8B6F47;
  --gold-light:  #B8956A;
  --gold-pale:   #D4B896;
  --white:       #FDFCF9;
  --line-color:  rgba(139,111,71,.2);

  --font-mincho: 'Shippori Mincho', 'Times New Roman', serif;
  --font-roman:  'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:   'Noto Sans JP', sans-serif;

  --max-w:       1080px;
  --section-pad: 120px;
  --transition:  .5s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--beige);
  color: var(--brown);
  line-height: 1.8;
  font-weight: 300;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.section { padding: var(--section-pad) 24px; }
.section__head { text-align: center; margin-bottom: 72px; }

.section-en {
  display: block;
  font-family: var(--font-roman);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-mincho);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: .1em;
  line-height: 1.4;
  margin-bottom: 20px;
}
.section-desc {
  font-size: .875rem;
  color: var(--brown-light);
  letter-spacing: .06em;
  line-height: 2;
}

/* ---------- Buttons ---------- */
.btn-border {
  display: inline-block;
  padding: 14px 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-roman);
  font-size: 14px;
  letter-spacing: .25em;
  transition: var(--transition);
  background: transparent;
}
.btn-border:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-text {
  font-family: var(--font-roman);
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-pale);
  padding-bottom: 2px;
  transition: var(--transition);
}
.btn-text:hover {
  color: var(--brown);
  border-bottom-color: var(--brown);
}

/* ---------- Divider ---------- */
.divider {
  text-align: center;
  color: var(--gold-pale);
  font-size: 10px;
  letter-spacing: .6em;
  padding: 8px 0 8px;
  user-select: none;
}

/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease var(--delay, 0s), transform .8s ease var(--delay, 0s);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in--delay-1 { --delay: .15s; }
.fade-in--delay-2 { --delay: .3s; }
.fade-in--delay-3 { --delay: .45s; }

/* ===================================================
   HEADER
   ================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  transition: background .5s ease, box-shadow .5s ease;
}
.header.scrolled {
  background: rgba(245,240,232,.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line-color);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header__logo-en {
  font-family: var(--font-roman);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--brown);
  font-style: italic;
}
.header__logo-ja {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .3em;
  color: var(--brown-light);
  margin-top: 3px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}
.header__nav-list a {
  font-family: var(--font-roman);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .2em;
  color: var(--brown-mid);
  transition: color .3s;
}
.header__nav-list a:hover { color: var(--gold); }

.header__reserve {
  font-family: var(--font-roman);
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 9px 22px;
  transition: var(--transition);
}
.header__reserve:hover {
  background: var(--gold);
  color: var(--white);
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--brown);
  transition: var(--transition);
}
.header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================================
   HERO
   ================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, #D4C5AE 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 70%, #C8B89A 0%, transparent 55%),
    linear-gradient(160deg, #EDE4D3 0%, #F0E8D8 35%, #E8DCC8 65%, #DDD0BA 100%);
  background-color: #E8DED0;
}
/* Subtle texture overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255,255,255,.025) 3px,
      rgba(255,255,255,.025) 4px
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 680px;
}

.hero__eyebrow {
  font-family: var(--font-roman);
  font-size: 12px;
  letter-spacing: .5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp .9s ease .3s forwards;
}

.hero__catch {
  font-family: var(--font-mincho);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .12em;
  color: var(--brown);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp .9s ease .55s forwards;
}

.hero__sub {
  font-size: .9rem;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: .12em;
  color: var(--brown-mid);
  margin-bottom: 52px;
  opacity: 0;
  animation: heroFadeUp .9s ease .8s forwards;
}

.hero__btn {
  opacity: 0;
  animation: heroFadeUp .9s ease 1.05s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroFadeUp .9s ease 1.4s forwards;
}
.hero__scroll-text {
  font-family: var(--font-roman);
  font-size: 10px;
  letter-spacing: .4em;
  color: var(--brown-light);
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold-pale), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite 1.6s;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: .3; }
}

/* ===================================================
   ABOUT
   ================================================= */
.about { background: var(--white); }

.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text .section-en { text-align: left; }
.about__text .section-title { text-align: left; }

.about__lead {
  font-family: var(--font-mincho);
  font-size: 1.1rem;
  line-height: 2;
  letter-spacing: .06em;
  color: var(--brown);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-color);
}

.about__body {
  font-size: .875rem;
  line-height: 2.1;
  color: var(--brown-mid);
  margin-bottom: 20px;
}

.about__features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__features li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.about__feature-icon {
  flex-shrink: 0;
  color: var(--gold-pale);
  font-size: 10px;
  margin-top: 6px;
}
.about__features strong {
  display: block;
  font-family: var(--font-mincho);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--brown);
  margin-bottom: 4px;
}
.about__features p {
  font-size: .8rem;
  color: var(--brown-light);
  line-height: 1.9;
}

.about__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about__img-block {
  position: relative;
  width: 100%;
}
.about__img-inner {
  width: 100%;
  padding-top: 125%;
  background:
    radial-gradient(ellipse 70% 50% at 30% 60%, #C8B090 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 80% 30%, #D4C0A0 0%, transparent 50%),
    linear-gradient(145deg, #BCA880 0%, #D8C8A8 40%, #C4B090 70%, #B09878 100%);
  border-radius: 2px;
}
.about__img-deco {
  position: absolute;
  top: -16px; right: -16px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 1px solid var(--gold-pale);
  border-radius: 2px;
  z-index: -1;
}

.about__caption {
  text-align: center;
}
.about__caption-en {
  display: block;
  font-family: var(--font-roman);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 4px;
}
.about__caption-ja {
  display: block;
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--brown-light);
}

/* ===================================================
   MENU
   ================================================= */
.menu { background: var(--beige); }

.menu__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-color);
  border: 1px solid var(--line-color);
}

.menu-card {
  background: var(--beige);
  padding: 48px 32px 40px;
  position: relative;
  transition: background var(--transition);
  cursor: default;
}
.menu-card:hover { background: var(--white); }

.menu-card__num {
  font-family: var(--font-roman);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--gold-pale);
  margin-bottom: 24px;
}

.menu-card__title-en {
  font-family: var(--font-roman);
  font-size: 1.75rem;
  font-weight: 400;
  font-style: italic;
  color: var(--brown);
  letter-spacing: .04em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.menu-card__title-ja {
  font-family: var(--font-mincho);
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--brown-light);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-color);
}
.menu-card__desc {
  font-size: .8rem;
  line-height: 2;
  color: var(--brown-mid);
  margin-bottom: 28px;
}
.menu-card__price {
  font-family: var(--font-roman);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: .05em;
}
.menu-card__price span {
  font-size: .9rem;
  color: var(--gold-pale);
}

.menu__note {
  max-width: var(--max-w);
  margin: 32px auto 0;
  font-size: .75rem;
  color: var(--brown-light);
  line-height: 2;
  text-align: center;
  letter-spacing: .04em;
}

/* ===================================================
   STAFF
   ================================================= */
.staff { background: var(--white); }

.staff__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.staff__photo-block {
  width: 100%;
  padding-top: 130%;
  background:
    radial-gradient(ellipse 60% 55% at 45% 55%, #C0A880 0%, transparent 50%),
    radial-gradient(ellipse 70% 40% at 75% 25%, #D0BC98 0%, transparent 50%),
    linear-gradient(160deg, #B8A070 0%, #CCBA90 30%, #C0AA80 60%, #B09870 100%);
  position: relative;
}
.staff__photo-block::before {
  content: '';
  position: absolute;
  top: 16px; right: -16px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold-pale);
  z-index: -1;
}

.staff__role {
  font-family: var(--font-roman);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold);
  margin-bottom: 12px;
}
.staff__name-ja {
  font-family: var(--font-mincho);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--brown);
  margin-bottom: 6px;
}
.staff__name-en {
  font-family: var(--font-roman);
  font-size: .95rem;
  font-style: italic;
  letter-spacing: .2em;
  color: var(--brown-light);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-color);
}
.staff__message {
  font-family: var(--font-mincho);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--brown);
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--gold-pale);
}
.staff__bio {
  font-size: .85rem;
  line-height: 2.1;
  color: var(--brown-mid);
  margin-bottom: 16px;
}
.staff__career {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--beige);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.staff__career li {
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--brown-mid);
  display: flex;
  gap: 16px;
}
.staff__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.staff__tags span {
  font-size: .73rem;
  letter-spacing: .1em;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  padding: 4px 14px;
}

/* ===================================================
   GALLERY
   ================================================= */
.gallery { background: var(--beige); }

.gallery__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item__img {
  width: 100%;
  padding-top: 100%;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover .gallery-item__img { transform: scale(1.05); }

.gallery-item__img--1 {
  background: linear-gradient(135deg, #D4C4A8 0%, #C0B090 40%, #B8A880 100%);
}
.gallery-item__img--2 {
  background: linear-gradient(155deg, #C8B898 0%, #B8A888 50%, #A89878 100%);
}
.gallery-item__img--3 {
  background: linear-gradient(120deg, #E0CEB0 0%, #D0BCA0 45%, #C4AA88 100%);
}
.gallery-item__img--4 {
  background: linear-gradient(145deg, #BCA888 0%, #CCB898 50%, #C0AC90 100%);
}
.gallery-item__img--5 {
  background: linear-gradient(130deg, #D8C8A8 0%, #C8B898 45%, #BCAA88 100%);
}
.gallery-item__img--6 {
  background: linear-gradient(150deg, #C4B494 0%, #D4C4A4 40%, #C8B898 100%);
}

.gallery-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(44,40,38,.55), transparent);
  font-family: var(--font-roman);
  font-size: 12px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.9);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
}
.gallery-item:hover .gallery-item__label {
  opacity: 1;
  transform: none;
}

.gallery__instagram {
  max-width: var(--max-w);
  margin: 40px auto 0;
  text-align: center;
}

/* ===================================================
   VOICE
   ================================================= */
.voice { background: var(--white); }

.voice__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.voice-card {
  padding: 40px 32px;
  border: 1px solid var(--line-color);
  background: var(--beige);
  position: relative;
}
.voice-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 24px;
  font-family: var(--font-roman);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-pale);
  opacity: .5;
}

.voice-card__stars {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 20px;
  padding-top: 24px;
}
.voice-card__text {
  font-size: .85rem;
  line-height: 2.1;
  color: var(--brown-mid);
  margin-bottom: 28px;
}
.voice-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line-color);
}
.voice-card__name {
  font-family: var(--font-mincho);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--brown);
}
.voice-card__attr {
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--brown-light);
}

/* ===================================================
   ACCESS
   ================================================= */
.access { background: var(--beige); }

.access__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.access__dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.access__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-color);
}
.access__row:first-child { border-top: 1px solid var(--line-color); }
dt {
  font-family: var(--font-roman);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gold);
  padding-top: 2px;
}
dd {
  font-size: .85rem;
  line-height: 1.9;
  color: var(--brown-mid);
}
dd a {
  color: var(--brown);
  border-bottom: 1px solid var(--line-color);
  transition: border-color .3s;
}
dd a:hover { border-bottom-color: var(--gold); }

.access__note {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.access__note p {
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--brown-light);
}

/* Map block */
.access__map {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.access__map-block {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background: #E8E2DA;
  overflow: hidden;
}

/* Grid lines mimicking a map */
.access__map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--beige-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--beige-dark) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .6;
}

/* Roads */
.access__map-block::before {
  content: '';
  position: absolute;
  top: 45%; left: 0; right: 0;
  height: 14px;
  background: rgba(255,255,255,.65);
  z-index: 1;
}
.access__map-block::after {
  content: '';
  position: absolute;
  left: 38%; top: 0; bottom: 0;
  width: 10px;
  background: rgba(255,255,255,.55);
  z-index: 1;
}

.access__map-inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
.access__map-pin {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.2));
}
.access__map-pin svg { width: 28px; height: 36px; }
.access__map-label {
  font-family: var(--font-roman);
  font-size: 13px;
  font-style: italic;
  letter-spacing: .1em;
  color: var(--brown);
  background: rgba(245,240,232,.9);
  padding: 2px 12px;
  border-radius: 2px;
  margin-bottom: 2px;
}
.access__map-sub {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--brown-light);
  background: rgba(245,240,232,.85);
  padding: 1px 8px;
  border-radius: 2px;
}
.access__map-link { display: block; text-align: right; }

/* ===================================================
   RESERVE
   ================================================= */
.reserve {
  background: var(--white);
  text-align: center;
}
.reserve__inner {
  max-width: 560px;
  margin: 0 auto;
}
.reserve__desc {
  font-size: .875rem;
  line-height: 2.2;
  color: var(--brown-mid);
  margin-bottom: 44px;
}
.reserve__btn {
  font-size: 13px;
  letter-spacing: .3em;
  padding: 16px 60px;
  margin-bottom: 32px;
}

.reserve__system-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-color);
  padding: 12px 24px;
  margin-bottom: 44px;
  background: var(--beige);
}
.reserve__system-badge svg { width: 18px; height: 18px; flex-shrink: 0; }
.reserve__system-badge span {
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--brown-mid);
}

.reserve__tel {
  font-family: var(--font-roman);
  font-size: .95rem;
  letter-spacing: .1em;
  color: var(--brown-mid);
  line-height: 2;
}
.reserve__tel a {
  color: var(--brown);
  border-bottom: 1px solid var(--line-color);
}
.reserve__tel small {
  display: block;
  font-family: var(--font-sans);
  font-size: .75rem;
  color: var(--brown-light);
  letter-spacing: .12em;
  margin-top: 4px;
}

/* ===================================================
   FOOTER
   ================================================= */
.footer {
  background: var(--brown);
  color: rgba(245,240,232,.7);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer__logo .header__logo-en {
  color: var(--beige);
  font-size: 1.6rem;
}
.footer__logo .header__logo-ja {
  color: rgba(245,240,232,.5);
}
.footer__address {
  font-size: .78rem;
  line-height: 2;
  letter-spacing: .06em;
  margin-top: 20px;
  color: rgba(245,240,232,.5);
}

.footer__sns {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}
.footer__sns-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  letter-spacing: .12em;
  color: rgba(245,240,232,.55);
  transition: color .3s;
}
.footer__sns-btn:hover { color: var(--gold-pale); }
.footer__sns-btn svg { width: 16px; height: 16px; }

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__nav a {
  font-family: var(--font-roman);
  font-size: 12px;
  letter-spacing: .25em;
  color: rgba(245,240,232,.5);
  transition: color .3s;
}
.footer__nav a:hover { color: var(--gold-pale); }

.footer__bottom {
  border-top: 1px solid rgba(245,240,232,.08);
  padding: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy, .footer__credit {
  font-size: .72rem;
  letter-spacing: .1em;
  color: rgba(245,240,232,.3);
}
.footer__credit a {
  color: rgba(245,240,232,.4);
  border-bottom: 1px solid rgba(245,240,232,.15);
}

/* ===================================================
   BACK TO TOP
   ================================================= */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  border: 1px solid var(--gold-pale);
  background: rgba(245,240,232,.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  pointer-events: none;
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }
.back-to-top:hover svg { stroke: var(--white); }
.back-to-top svg { width: 18px; height: 18px; stroke: var(--gold); }

/* ===================================================
   RESPONSIVE — 768px
   ================================================= */
@media (max-width: 768px) {
  :root { --section-pad: 80px; }

  /* Header */
  .header { padding: 0 20px; }
  .header__nav { display: none; }
  .header__nav.open {
    display: block;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: rgba(245,240,232,.98);
    backdrop-filter: blur(12px);
    padding: 40px 32px;
  }
  .header__nav-list { flex-direction: column; gap: 4px; }
  .header__nav-list a {
    display: block;
    font-size: 1.2rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-color);
  }
  .header__hamburger { display: flex; }
  .header__reserve { display: none; }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .about__text .section-en,
  .about__text .section-title { text-align: center; }

  /* Menu */
  .menu__grid { grid-template-columns: 1fr 1fr; }

  /* Staff */
  .staff__inner {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Gallery */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  /* Voice */
  .voice__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Access */
  .access__inner { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { flex-direction: column; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===================================================
   RESPONSIVE — 480px
   ================================================= */
@media (max-width: 480px) {
  :root { --section-pad: 64px; }

  .hero__catch { font-size: 1.75rem; }
  .menu__grid { grid-template-columns: 1fr; }
  .menu-card { padding: 36px 24px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .staff__photo-block::before { display: none; }
  .back-to-top { bottom: 20px; right: 16px; }
}
