/* ==========================================
   BARBER TOYAMA - Style Sheet
   配色: 黒ベース × 白テキスト × ゴールドアクセント
   ========================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-white: #ffffff;
  --color-gray: #888888;
  --color-gray-light: #cccccc;
  --color-gray-dark: #1a1a1a;
  --color-accent: #c8a84e;
  --color-accent-hover: #dabb66;
  --color-accent-soft: rgba(200, 168, 78, 0.12);
  --color-line: #06C755;
  --font-serif: 'Noto Serif JP', 'Crimson Text', serif;
  --font-sans: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
  --font-en: 'Crimson Text', serif;
  --transition: 0.3s ease;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.main {
  position: relative;
  z-index: 2;
  margin-top: 100svh;
  background: var(--color-bg);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}
.btn--accent:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-bg);
  border-color: var(--color-white);
}
.btn--white:hover {
  background: transparent;
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-bg);
}

.btn--line {
  background: var(--color-line);
  color: var(--color-white);
  border-color: var(--color-line);
}
.btn--line:hover {
  opacity: 0.85;
}

.btn--lg {
  padding: 16px 40px;
  font-size: 15px;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

.logo-sub {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--color-gray-light);
  margin-top: 2px;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__list a {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--color-gray-light);
  position: relative;
  padding: 4px 0;
}

.nav__list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__list a:hover {
  color: var(--color-white);
}

.nav__list a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-gray-light);
  letter-spacing: 0.05em;
}

.header__tel:hover {
  color: var(--color-accent);
}

.header__reserve {
  font-size: 12px;
  padding: 8px 24px;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-white);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fv {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
}

.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__slide.active .hero__slide-img {
  animation: heroSlowZoom 10s ease-out both;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.18) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  text-align: left;
  padding: 0 24px;
}

.hero__subtitle {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 0;
  animation: heroTextReveal 1s ease-out 0.2s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: heroTextReveal 1.1s ease-out 0.45s forwards;
}

.hero__desc {
  font-size: 15px;
  max-width: 620px;
  color: var(--color-gray-light);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroTextReveal 1s ease-out 0.75s forwards;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroTextReveal 0.95s ease-out 0.95s forwards;
}

.hero__proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.28);
  color: var(--color-gray-light);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: heroTextReveal 1s ease-out 1.15s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--color-gray);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-gray);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes heroSlowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

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


/* ---------- Trust Strip ---------- */
.trust-strip {
  position: relative;
  z-index: 2;
  background: #070707;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip__item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.trust-strip__item:first-child {
  border-left: 1px solid rgba(255,255,255,0.06);
}

.trust-strip__item strong {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.trust-strip__item span {
  font-size: 13px;
  color: var(--color-gray-light);
  letter-spacing: 0.08em;
}

/* ---------- Section Common ---------- */
.section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.section--dark {
  background: var(--color-bg-alt);
}

.section--accent {
  background: var(--color-accent);
  color: var(--color-bg);
}

.section__header {
  text-align: center;
  margin-bottom: 72px;
}

.section__num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.section__title-ja {
  font-size: 13px;
  color: var(--color-gray);
  letter-spacing: 0.2em;
}

/* ---------- Concept ---------- */
.concept__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.concept__heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
}

.concept__desc {
  color: var(--color-gray-light);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 48px;
}

.concept__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.concept__feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  gap: 0 16px;
}

.concept__feature-num {
  grid-row: 1 / 3;
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1;
  padding-top: 2px;
}

.concept__feature h4 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.concept__feature p {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.7;
}

.concept__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.05);
}


/* ---------- First Visit ---------- */
.first-visit {
  background: #0d0d0d;
}

.first-visit__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.first-visit__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.06);
}

.first-visit__content .section__title,
.first-visit__content .section__title-ja {
  text-align: left;
}

.first-visit__content h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.6;
  margin: 20px 0 16px;
}

.first-visit__content p {
  color: var(--color-gray-light);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 28px;
}

.first-visit__steps {
  display: grid;
  gap: 12px;
  list-style: none;
}

.first-visit__steps li {
  display: grid;
  grid-template-columns: 48px 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
}

.first-visit__steps span {
  font-family: var(--font-en);
  color: var(--color-accent);
  font-size: 20px;
}

.first-visit__steps strong {
  font-size: 15px;
  font-weight: 500;
}

.first-visit__steps em {
  font-style: normal;
  color: var(--color-gray);
  font-size: 13px;
  line-height: 1.7;
}

/* ---------- Menu ---------- */
.menu {
  background:
    radial-gradient(circle at 18% 18%, rgba(200, 168, 78, 0.06), transparent 30%),
    linear-gradient(180deg, #111 0%, #090909 100%);
}

.menu .container {
  max-width: 1320px;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.menu__card {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: clamp(360px, 24vw, 420px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.07), transparent 34%),
    linear-gradient(115deg, #181818 0%, #101010 44%, #070707 100%);
  border: 1px solid rgba(200, 168, 78, 0.22);
  box-shadow: 0 22px 48px rgba(0,0,0,0.28);
  overflow: hidden;
  transition: border-color 0.55s ease, background 0.55s ease, box-shadow 0.55s ease, transform 0.55s ease;
}

.menu__card:hover {
  border-color: rgba(200, 168, 78, 0.62);
  background:
    radial-gradient(circle at 18% 18%, rgba(200,168,78,0.09), transparent 34%),
    linear-gradient(115deg, #1b1b1b 0%, #111 44%, #080808 100%);
  box-shadow: 0 30px 70px rgba(0,0,0,0.42);
  transform: translateY(-6px);
}

.menu__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.14) 28%, rgba(0,0,0,0.62) 43%, rgba(0,0,0,0.9) 100%),
    radial-gradient(circle at 86% 48%, rgba(200,168,78,0.055), transparent 44%);
  pointer-events: none;
}

.menu__image {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 24vw, 420px);
}

.menu__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.16) 46%, rgba(0,0,0,0.46) 70%, rgba(0,0,0,0.88) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.16) 0%, transparent 42%, rgba(0,0,0,0.28) 100%);
  pointer-events: none;
  z-index: 1;
}

.menu__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06) brightness(0.8);
  transition: transform 0.7s ease, filter 0.55s ease;
}

.menu__card:first-child .menu__image img {
  object-position: calc(50% + 100px) center;
}

.menu__card:hover .menu__image img {
  transform: scale(1.08);
  filter: saturate(0.92) contrast(1.1) brightness(0.88);
}

.menu__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(40px, 3.4vw, 54px) clamp(36px, 3vw, 50px) 34px;
}

.menu__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.78) 26%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}

.menu__card-icon {
  color: var(--color-accent);
  margin-bottom: 18px;
}

.menu__card-title {
  font-family: var(--font-en);
  font-size: clamp(30px, 2.35vw, 40px);
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
  color: var(--color-white);
  line-height: 1.15;
}

.menu__card-subtitle {
  position: relative;
  font-size: 12px;
  color: var(--color-gray);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(200, 168, 78, 0.16);
}

.menu__card-subtitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,168,78,0.95), rgba(200,168,78,0.26));
  transition: width 1.05s ease 0.25s;
}

.menu__card:nth-child(2) .menu__card-subtitle::after {
  transition-delay: 0.39s;
}

.menu__card:nth-child(3) .menu__card-subtitle::after {
  transition-delay: 0.53s;
}

.menu__card:nth-child(4) .menu__card-subtitle::after {
  transition-delay: 0.67s;
}

.menu__card.visible .menu__card-subtitle::after {
  width: 100%;
}

.menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 22px;
}

.menu__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.045);
  font-size: 15px;
  color: var(--color-gray-light);
}

.menu__list li:last-child {
  border-bottom: none;
}

.menu__price {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
  margin-left: 16px;
}

.menu__detail {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-end;
  margin-top: auto;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.menu__detail span {
  transition: transform var(--transition);
}

.menu__detail:hover span {
  transform: translateX(5px);
}

.menu__note {
  text-align: center;
  font-size: 12px;
  color: var(--color-gray);
  margin-top: 32px;
}

/* ---------- Gallery ---------- */
.gallery {
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 168, 78, 0.08), transparent 32%),
    linear-gradient(180deg, #0b0b0b 0%, #111 46%, #080808 100%);
  overflow: hidden;
}

.gallery .container {
  max-width: 1440px;
}

.gallery__swiper {
  width: 100%;
  padding: 10px 0 72px;
  overflow: visible;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(200, 168, 78, 0.16);
  background: #0a0a0a;
  box-shadow: 0 22px 70px rgba(0,0,0,0.42);
  opacity: 0.42;
  transform: scale(0.88);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.55s ease, box-shadow 0.55s ease;
}

.gallery__item.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(200, 168, 78, 0.42);
  box-shadow: 0 32px 90px rgba(0,0,0,0.56), 0 0 34px rgba(200,168,78,0.08);
}

.gallery__item:hover {
  border-color: rgba(200, 168, 78, 0.62);
  box-shadow: 0 34px 96px rgba(0,0,0,0.62), 0 0 42px rgba(200,168,78,0.16);
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.72);
  transition: transform 0.7s ease, filter 0.55s ease;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.045);
  filter: saturate(0.92) contrast(1.1) brightness(0.82);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 56px 42px 34px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.45) 36%, rgba(0,0,0,0.92) 100%);
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.gallery__item.swiper-slide-active .gallery__caption,
.gallery__item:hover .gallery__caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery__caption h4 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.gallery__caption p {
  font-size: 13px;
  color: var(--color-gray-light);
  letter-spacing: 0.08em;
}

.gallery__pagination.swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.gallery__pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  margin: 0 !important;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  color: var(--color-gray);
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.14em;
  transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.35s ease;
}

.gallery__pagination .swiper-pagination-bullet:hover {
  color: var(--color-accent-hover);
  text-shadow: 0 0 18px rgba(200,168,78,0.34);
}

.gallery__pagination .swiper-pagination-bullet-active {
  color: var(--color-accent);
  text-shadow: 0 0 22px rgba(200,168,78,0.28);
  transform: translateY(-2px);
}

/* ---------- Staff ---------- */
.staff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.staff__card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.staff__img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255,255,255,0.06);
  filter: saturate(0.95);
}

.staff__role {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.staff__name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 2px;
}

.staff__name-en {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--color-gray);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.staff__bio {
  font-size: 14px;
  color: var(--color-gray-light);
  line-height: 1.9;
  margin-bottom: 12px;
}

.staff__specialty {
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.02em;
  padding: 8px 12px;
  border: 1px solid rgba(200, 168, 78, 0.3);
  display: inline-block;
}

/* ---------- Shop ---------- */
.shop__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.shop__map {
  min-height: 400px;
  background: var(--color-gray-dark);
  border: 1px solid rgba(255,255,255,0.05);
}

.shop__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.shop__table {
  width: 100%;
  border-collapse: collapse;
}

.shop__table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.shop__table th,
.shop__table td {
  padding: 16px 0;
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

.shop__table th {
  width: 100px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  font-size: 13px;
}

.shop__table td {
  color: var(--color-gray-light);
}

.shop__table td a {
  color: var(--color-white);
}
.shop__table td a:hover {
  color: var(--color-accent);
}

.shop__parking {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(200, 168, 78, 0.08);
  border: 1px solid rgba(200, 168, 78, 0.2);
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 500;
}

/* ---------- Instagram ---------- */
.instagram__feed {
  text-align: center;
  margin-bottom: 32px;
}

.instagram__feed iframe {
  max-width: 100%;
  min-height: 300px;
}

.instagram__cta {
  text-align: center;
  margin-bottom: 48px;
}

.instagram__manual-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.instagram__post {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.instagram__post-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram__post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram__post:hover .instagram__post-img {
  transform: scale(1.1);
}

.instagram__post:hover .instagram__post-overlay {
  opacity: 1;
}

/* ---------- Reserve ---------- */
.reserve {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(rgba(0,0,0,0.74), rgba(0,0,0,0.78)),
    url("images/section-shop-interior.png") center / cover no-repeat;
}

.reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(200,168,78,0.18), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.42) 50%, rgba(0,0,0,0.88));
  pointer-events: none;
}

.reserve::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200,168,78,0.18);
  pointer-events: none;
}

.reserve .container {
  position: relative;
  z-index: 1;
}

.reserve__inner {
  text-align: center;
  padding: 54px 0;
}

.reserve__title {
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  color: var(--color-white);
  text-shadow: 0 12px 34px rgba(0,0,0,0.55);
}

.reserve__subtitle {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  opacity: 0.9;
  margin-bottom: 20px;
}

.reserve__text {
  font-size: 15px;
  color: var(--color-gray-light);
  margin-bottom: 40px;
  opacity: 0.95;
}

.reserve__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.reserve__buttons .btn {
  min-width: 220px;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}

.reserve__buttons .btn:nth-child(1) {
  background: rgba(8,8,8,0.72);
  color: var(--color-accent);
  border-color: rgba(200,168,78,0.35);
  backdrop-filter: blur(8px);
}

.reserve__buttons .btn:nth-child(1):hover {
  background: rgba(200,168,78,0.12);
  border-color: rgba(200,168,78,0.72);
  color: var(--color-accent-hover);
}

.reserve__buttons .btn:nth-child(2) {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.reserve__buttons .btn:nth-child(2):hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.reserve__buttons .btn:nth-child(3) {
  background: rgba(6, 199, 85, 0.82);
  color: var(--color-white);
  border-color: rgba(6, 199, 85, 0.68);
}

.reserve__buttons .btn:nth-child(3):hover {
  background: rgba(6, 199, 85, 0.94);
  border-color: rgba(6, 199, 85, 0.94);
  transform: translateY(-2px);
}

.reserve__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 920px;
  margin: 44px auto 0;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(200,168,78,0.26);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.32);
}

.reserve__fact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px 18px;
  background: rgba(10,10,10,0.42);
}

.reserve__fact span {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  opacity: 0.82;
}

.reserve__fact strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.section--accent:not(.reserve) .btn--white {
  background: var(--color-bg);
  color: var(--color-accent);
  border-color: var(--color-bg);
}
.section--accent:not(.reserve) .btn--white:hover {
  background: transparent;
  color: var(--color-bg);
  border-color: var(--color-bg);
}

.section--accent:not(.reserve) .btn--outline-white {
  color: var(--color-bg);
  border-color: var(--color-bg);
}
.section--accent:not(.reserve) .btn--outline-white:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  background: #050505;
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 16px;
}

.footer__logo .logo-main {
  font-size: 20px;
}

.footer__address {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.8;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--color-gray);
}
.footer__nav a:hover {
  color: var(--color-accent);
}

.footer__sns {
  display: flex;
  gap: 16px;
}

.footer__sns a {
  color: var(--color-gray);
  transition: color var(--transition);
}
.footer__sns a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 11px;
  color: var(--color-gray);
  letter-spacing: 0.1em;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-accent-hover);
  transform: translateY(-4px);
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu__card.fade-in {
  transform: translateY(48px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    border-color 0.55s ease,
    background 0.55s ease,
    box-shadow 0.55s ease;
}

.menu__card.fade-in:nth-child(2) {
  transition-delay: 0.14s;
}

.menu__card.fade-in:nth-child(3) {
  transition-delay: 0.28s;
}

.menu__card.fade-in:nth-child(4) {
  transition-delay: 0.42s;
}

.menu__card.fade-in.visible {
  transform: translateY(0);
}

.menu__card.fade-in.visible:hover {
  transform: translateY(-6px);
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
  }

  .hero__subtitle,
  .hero__title,
  .hero__desc,
  .hero__proof,
  .hero__cta {
    opacity: 1;
    transform: none;
  }

  .hero__slide.active .hero__slide-img,
  .menu__card:hover .menu__image img,
  .menu__card.fade-in,
  .menu__card.fade-in.visible,
  .menu__card.fade-in.visible:hover {
    transform: none;
  }

  .menu__card-subtitle::after {
    width: 100%;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .staff__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .concept__body {
    gap: 40px;
  }

  .first-visit__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .section {
    padding: 80px 0;
  }

  .section__header {
    margin-bottom: 48px;
  }

  /* Header mobile */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100svh;
    background: var(--color-bg-alt);
    padding: 100px 40px 40px;
    transition: right var(--transition);
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,0.05);
  }

  .header__nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 24px;
  }

  .nav__list a {
    font-size: 16px;
  }

  .header__actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__item:nth-child(odd) {
    border-left: 1px solid rgba(255,255,255,0.06);
  }

  .hero__content {
    text-align: left;
  }

  /* Concept */
  .concept__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .concept__image {
    order: -1;
  }

  .concept__image-placeholder {
    aspect-ratio: 16 / 9;
  }

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

  .menu__card {
    grid-template-columns: 42% 58%;
    min-height: 340px;
  }

  .menu__image {
    min-height: 340px;
  }

  .menu__content {
    padding: 34px 30px 28px;
  }

  /* Gallery */
  .gallery__swiper {
    padding-bottom: 64px;
  }

  .gallery__caption {
    padding: 48px 32px 28px;
  }

  /* Instagram */
  .instagram__manual-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Staff */
  .staff__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .staff__img {
    width: min(240px, 100%);
    height: 300px;
    margin: 0 auto;
  }

  .staff__specialty {
    display: inline-block;
  }

  /* Shop */
  .shop__body {
    grid-template-columns: 1fr;
  }

  /* Reserve */
  .reserve__buttons {
    flex-direction: column;
    align-items: center;
  }

  .reserve__buttons .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .reserve__facts {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__logo {
    align-items: center;
  }

  .footer__nav ul {
    align-items: center;
  }

  .footer__sns {
    justify-content: center;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .menu__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .menu__card::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.28) 44%, rgba(0,0,0,0.9) 100%),
      radial-gradient(circle at 50% 82%, rgba(200,168,78,0.05), transparent 46%);
  }

  .menu__image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .menu__image::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 54%, rgba(0,0,0,0.9) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.2), rgba(0,0,0,0.08));
  }

  .menu__content {
    padding: 32px 26px 26px;
  }

  .menu__content::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.14) 100%);
  }
}

@media (max-width: 480px) {
  .hero {
    height: 100svh;
    min-height: 100svh;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

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

  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .trust-strip__item {
    border-left: 1px solid rgba(255,255,255,0.06);
  }

  .menu__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .menu__image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .menu__content {
    padding: 28px 22px 22px;
  }

  .menu__card-title {
    font-size: 26px;
  }

  .menu__list li {
    font-size: 13px;
  }

  .first-visit__steps li {
    grid-template-columns: 42px 1fr;
    align-items: start;
  }

  .first-visit__steps em {
    grid-column: 2;
  }

  .gallery__item {
    aspect-ratio: 4 / 3;
  }

  .gallery__caption {
    padding: 42px 22px 22px;
  }

  .gallery__pagination.swiper-pagination {
    gap: 12px;
  }

  .gallery__pagination .swiper-pagination-bullet {
    font-size: 14px;
  }

  .instagram__manual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
