/* YUKI — Japanese Premium Spa / 023
   カラー: 墨黒 #0a0a0a / 白金 #e8e4dc / 深緋 #8b1a2f / 金 #c5a55a
   コンセプト: 和モダン×ダーク — 漆器・水墨・枯山水
*/

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:    #0a0a0a;
  --ink-2:  #111111;
  --ink-3:  #1a1a1a;
  --ink-4:  #242424;
  --silk:   #e8e4dc;
  --silk-2: #d4cfc5;
  --gold:   #c5a55a;
  --gold-2: #a08840;
  --crimson:#8b1a2f;
  --mist:   #6b6660;
  --border: rgba(197,165,90,.18);
  --border-light: rgba(232,228,220,.08);
}

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

body {
  background: var(--ink);
  color: var(--silk);
  font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

.section-pad { padding: 120px 0; }

/* ===================== TYPOGRAPHY ===================== */
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--silk);
  margin-bottom: 24px;
}

.section-sub {
  font-size: .92rem;
  color: var(--mist);
  line-height: 1.9;
  max-width: 560px;
}

.body-text {
  font-size: .94rem;
  color: var(--silk-2);
  line-height: 1.95;
  margin-bottom: 20px;
}

.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-sub { margin: 0 auto; }

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .3s, color .3s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold); color: var(--ink); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(232,228,220,.35);
  color: var(--silk);
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: border-color .3s, color .3s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--silk); }

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

.link-arrow {
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: border-color .3s;
}
.link-arrow:hover { border-color: var(--gold); }
.link-arrow span { transition: transform .2s; display: inline-block; }
.link-arrow:hover span { transform: translateX(4px); }

/* ===================== ANIMATIONS ===================== */
[data-anim] { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
[data-anim="fade"] { transform: none; }
[data-anim].visible { opacity: 1; transform: none; }

/* ─── DEMO BAR ─────────────────────────────────────────── */
#demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
}
.demo-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.7rem; color: rgba(232,228,220,0.35);
}
.demo-badge {
  font-size: 0.54rem;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(197,165,90,0.15); color: var(--gold);
  padding: 3px 10px; flex-shrink: 0;
}
.demo-link { color: var(--gold); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.demo-copy { color: rgba(232,228,220,0.15); font-size: 0.62rem; margin-left: 4px; }
@media(max-width:640px){ .demo-copy { display: none; } }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  transition: background .4s;
}
.site-header.scrolled { background: rgba(10,10,10,.94); backdrop-filter: blur(12px); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
}

.header-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.logo-kanji {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--silk);
  letter-spacing: .12em;
}
.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .38em;
  color: var(--gold);
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.header-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--silk-2);
  transition: color .25s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.header-nav a:hover { color: var(--gold); }
.header-nav a:hover::after { transform: scaleX(1); }

.btn-reserve-header {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .3s, color .3s;
}
.btn-reserve-header:hover { background: var(--gold); color: var(--ink); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--silk);
  transition: transform .35s, opacity .25s, background .25s;
}
.hamburger.open span { background: var(--silk); }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay — 墨水滴展開 */
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .btn-reserve-header { display: none; }
  .header-inner { padding: 0 20px; }

  .header-nav {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    pointer-events: none;
    clip-path: circle(0% at calc(100% - 36px) 68px);
    transition: clip-path .65s cubic-bezier(.77,0,.175,1);
  }
  .header-nav.nav-open {
    pointer-events: all;
    clip-path: circle(150% at calc(100% - 36px) 68px);
  }
  /* 金の縦ライン装飾 */
  .header-nav::before {
    content: '';
    position: absolute;
    left: 50%; top: 15%; bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    opacity: .18;
    transform: translateX(-50%);
  }
  .header-nav a {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: .28em;
    padding: 18px 0;
    border-bottom: 1px solid rgba(197,165,90,.1);
    width: 220px;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: color .3s, border-color .3s, opacity .45s ease, transform .45s ease;
  }
  .header-nav.nav-open a { opacity: 1; transform: translateY(0); }
  .header-nav.nav-open a:nth-child(1) { transition-delay: .22s; }
  .header-nav.nav-open a:nth-child(2) { transition-delay: .30s; }
  .header-nav.nav-open a:nth-child(3) { transition-delay: .38s; }
  .header-nav.nav-open a:nth-child(4) { transition-delay: .46s; }
  .header-nav.nav-open a:nth-child(5) { transition-delay: .54s; }
  .header-nav a:last-child { border-bottom: none; }
  .header-nav a:hover { color: var(--gold); border-bottom-color: rgba(197,165,90,.35); }

  /* スタッキングコンテキスト解除 */
  .site-header.menu-active {
    background: #0a0a0a !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom-color: transparent !important;
  }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img { object-position: center top; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.3) 0%,
    rgba(10,10,10,.15) 40%,
    rgba(10,10,10,.7) 80%,
    rgba(10,10,10,.96) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-kamon {
  font-size: .6rem;
  letter-spacing: .42em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-kamon::before, .hero-kamon::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}

.hero-title {
  margin-bottom: 24px;
}
.ht-kanji {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  letter-spacing: .08em;
  line-height: 1.15;
  color: var(--silk);
}
.ht-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(.8rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}

.hero-desc {
  font-size: .94rem;
  color: var(--silk-2);
  line-height: 2;
  max-width: 400px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll span {
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--mist);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================== PILLAR LINE ===================== */
.pillar-line {
  padding: 56px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.pillar-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: pillarScroll 28s linear infinite;
}
.pillar-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: .7rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--mist);
  flex-shrink: 0;
}
.pillar-track .sep { color: var(--gold); opacity: .6; }
@keyframes pillarScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-text {}

.about-img-wrap {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 40px;
  right: 0;
  bottom: 80px;
  overflow: hidden;
}
.about-img-sub {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55%;
  height: 220px;
  overflow: hidden;
  border: 3px solid var(--ink);
}
.about-kamon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .65rem;
  letter-spacing: .28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.about-kamon::before, .about-kamon::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin: 36px 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num small { font-size: 1rem; }
.stat-label {
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--mist);
}

/* ===================== CONCEPT STRIP ===================== */
.concept-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cs-img {
  position: relative;
  min-height: 540px;
}

.cs-text {
  background: var(--ink-3);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-quote {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 300;
  line-height: 2;
  color: var(--silk);
  margin: 28px 0 40px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

/* ===================== MENU / TREATMENTS ===================== */
.menu-section { background: var(--ink-2); }

.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.treatment-card {
  background: var(--ink-3);
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  transition: background .3s;
}
.treatment-card:hover { background: var(--ink-4); }

.tc-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.tc-img img { transition: transform .6s ease; }
.treatment-card:hover .tc-img img { transform: scale(1.04); }

.tc-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tc-cat {
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.tc-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--silk);
  margin-bottom: 12px;
}
.tc-desc {
  font-size: .84rem;
  color: var(--mist);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 20px;
}
.tc-meta {
  display: flex;
  gap: 20px;
  align-items: center;
}
.tc-time {
  font-size: .75rem;
  color: var(--mist);
  letter-spacing: .08em;
}
.tc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: .04em;
}

.menu-cta {
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.menu-cta p { font-size: .88rem; color: var(--mist); }

/* ===================== RITUAL / FEATURE FULLWIDTH ===================== */
.ritual-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ritual-bg {
  position: absolute;
  inset: 0;
}
.ritual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.88) 0%, rgba(10,10,10,.4) 100%);
}

.ritual-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 80px;
  max-width: 580px;
}

.ritual-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--silk);
  margin: 20px 0 28px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item img { transition: transform .7s ease; height: 100%; }
.gallery-item:hover img { transform: scale(1.06); }

.gi-a { grid-column: 1 / 6;  grid-row: 1 / 2; }
.gi-b { grid-column: 6 / 9;  grid-row: 1 / 2; }
.gi-c { grid-column: 9 / 13; grid-row: 1 / 3; }
.gi-d { grid-column: 1 / 4;  grid-row: 2 / 3; }
.gi-e { grid-column: 4 / 9;  grid-row: 2 / 3; }

/* ===================== FLOW ===================== */
.flow-section { background: var(--ink-2); }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--border);
}

.flow-step { padding: 0 24px; text-align: center; position: relative; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .35;
  line-height: 1;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--silk);
  margin-bottom: 16px;
  letter-spacing: .08em;
}
.step-desc { font-size: .84rem; color: var(--mist); line-height: 1.85; }

/* ===================== RESERVE ===================== */
.reserve-section { background: var(--ink); }

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ri-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.ri-label {
  font-size: .74rem;
  letter-spacing: .14em;
  color: var(--gold);
  min-width: 100px;
  padding-top: 2px;
}
.ri-val { font-size: .88rem; color: var(--silk-2); line-height: 1.7; }
.ri-val small { font-size: .78rem; color: var(--mist); }

.reserve-info-tel {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
}
.tel-label {
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--mist);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tel-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .08em;
}

/* Reserve Form */
.reserve-form {}
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-size: .74rem;
  letter-spacing: .14em;
  color: var(--silk-2);
  margin-bottom: 8px;
}
.req {
  font-size: .62rem;
  color: var(--crimson);
  margin-left: 8px;
  letter-spacing: .06em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--ink-3);
  border: 1px solid var(--border);
  color: var(--silk);
  padding: 12px 16px;
  font-size: .88rem;
  font-family: inherit;
  outline: none;
  transition: border-color .25s;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { height: 120px; resize: vertical; }
.form-row select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c5a55a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ===================== ACCESS ===================== */
.access-section { background: var(--ink-2); }

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--ink-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  letter-spacing: .18em;
  color: var(--mist);
}

.access-dl { display: grid; row-gap: 0; }
.access-dl dt {
  font-size: .7rem;
  letter-spacing: .18em;
  color: var(--gold);
  padding: 18px 0 4px;
  border-bottom: 1px solid var(--border-light);
}
.access-dl dd {
  font-size: .88rem;
  color: var(--silk-2);
  padding: 10px 0 18px;
  line-height: 1.7;
}
.access-note {
  margin-top: 28px;
  font-size: .8rem;
  color: var(--mist);
  line-height: 1.85;
  padding: 20px;
  border: 1px solid var(--border-light);
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: #050505;
  padding: 72px 0 40px;
  border-top: 1px solid var(--border-light);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: start;
}
.footer-brand {}
.footer-brand .logo-kanji { display: block; font-family: 'Noto Serif JP', serif; font-size: 1.2rem; font-weight: 300; letter-spacing: .12em; color: var(--silk); margin-bottom: 4px; }
.footer-brand .logo-en { display: block; font-size: .6rem; letter-spacing: .38em; color: var(--gold); text-transform: uppercase; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-top: 6px;
  justify-content: center;
}
.footer-nav a {
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--mist);
  text-transform: uppercase;
  transition: color .25s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-right { text-align: right; }
.footer-copy {
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--mist);
  padding-top: 6px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-wrap { height: 420px; }
  .concept-strip { grid-template-columns: 1fr; }
  .cs-img { min-height: 360px; }
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-card { grid-template-columns: 1fr; }
  .tc-img { height: 220px; }
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .flow-steps::before { display: none; }
  .reserve-grid { grid-template-columns: 1fr; gap: 60px; }
  .access-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-right { text-align: center; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 80px 0; }
  .hero-content { padding: 0 20px; }
  .hero-scroll { right: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi-a, .gi-b, .gi-c, .gi-d, .gi-e { grid-column: auto; grid-row: auto; height: 200px; }
  .flow-steps { grid-template-columns: 1fr; gap: 36px; }
  .ritual-content { padding: 0 20px; }
}
