/* ══════════════════════════════════════════════
   Aoki Beauty Clinic — Prestige Redesign
   ══════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────── */
:root {
  --noir:        #0c0b09;
  --noir-mid:    #181510;
  --noir-soft:   #221f19;
  --cream:       #f7f2eb;
  --cream-deep:  #ede7dc;
  --cream-rose:  #f8edea;
  --gold:        #c4a46b;
  --gold-light:  #ddc99a;
  --gold-dark:   #9e7f48;
  --brand:       #9e7f48;
  --brand-dark:  #7d6030;
  --text:        #1a1410;
  --text-light:  #f0ece5;
  --muted:       #7a6e62;
  --muted-light: #9a8e82;
  --line:        #e0d8ce;
  --line-dark:   rgba(255,255,255,0.12);
  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* ─── Image Placeholders ─────────────────────── */
.img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--noir-soft) 0%, #2a2218 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(196, 164, 107, 0.4);
  overflow: hidden;
  position: relative;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(196,164,107,0.08) 0%, transparent 60%);
}
.img-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 16px;
  position: relative;
  z-index: 1;
}
.img-ph-label {
  font: 700 13px/1 "Cormorant Garamond", serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.img-ph-desc {
  font-size: 11px;
  color: rgba(196,164,107,0.55);
  letter-spacing: 0.04em;
}

/* ─── Typography ─────────────────────────────── */
.section-eyebrow {
  display: block;
  margin: 0 0 14px;
  font: 700 12px/1 "Cormorant Garamond", serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.section-eyebrow--gold { color: var(--gold); }

.section-title {
  margin: 0 0 20px;
  font: 700 clamp(32px, 4.5vw, 54px)/1.15 "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}
.section-title--light { color: var(--text-light); }

.section-lead {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
}

.section-head { margin-bottom: 64px; }
.section-head--light .section-lead { color: rgba(255,255,255,0.6); }

.eyebrow--gold { color: var(--gold-light); }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  border: 1.5px solid transparent;
  padding: 11px 24px;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }

.btn-primary {
  background: var(--noir);
  color: var(--cream);
  border-color: var(--gold-dark);
}
.btn-primary:hover {
  background: var(--noir-soft);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(196, 164, 107, 0.25);
}

.btn-gold {
  background: var(--gold);
  color: var(--noir);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 32px rgba(196, 164, 107, 0.4);
}

.btn-tel {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-tel:hover {
  background: var(--cream-deep);
  border-color: var(--muted);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}

/* ─── Header ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 235, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  background: rgba(247, 242, 235, 0.96);
  box-shadow: 0 4px 24px rgba(12, 11, 9, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  text-decoration: none;
  color: var(--text);
  font: 600 22px/1 "Cormorant Garamond", serif;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--text); }
.header-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ─── Hero SP Logo ───────────────────────────── */
.hero-sp-logo {
  display: none;
}
@media (max-width: 780px) {
  .hero-sp-logo {
    display: block;
    position: absolute;
    top: calc(14% - 50px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    font: 400 italic 30px/1 "Cormorant Garamond", serif;
    color: #fff;
    letter-spacing: 0.12em;
    white-space: nowrap;
    text-align: center;
    pointer-events: none;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  }
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -4%;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(12, 11, 9, 0.88) 0%,
    rgba(12, 11, 9, 0.72) 45%,
    rgba(12, 11, 9, 0.38) 75%,
    rgba(12, 11, 9, 0.20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 100px;
  max-width: 920px;
  margin-left: max(24px, calc((100vw - 1160px) / 2 - 200px));
  margin-right: auto;
}
.eyebrow {
  display: block;
  margin: 0 0 20px;
  font: 700 11px/1 "Cormorant Garamond", serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
h1 {
  margin: 0 0 24px;
  font: 700 clamp(42px, 6vw, 78px)/1.08 "Cormorant Garamond", serif;
  color: #fff;
  letter-spacing: 0.01em;
}
h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-lead {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.80);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-note {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: max(24px, calc((100vw - 1160px) / 2 + 24px));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-label {
  font: 700 10px/1 "Cormorant Garamond", serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(196,164,107,0.6) 0%, transparent 100%);
  transform-origin: top;
  animation: scroll-line 2s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ─── Numbers ────────────────────────────────── */
.section-numbers {
  background: var(--noir);
  padding: 64px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--line-dark);
}
.number-item:last-child { border-right: none; }
.number-val {
  display: block;
  font: 400 clamp(36px, 5vw, 58px)/1 "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.number-val--free {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--gold-light);
}
.number-unit {
  font: 700 16px/1 "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  color: var(--gold-light);
}
.number-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ─── Section base ───────────────────────────── */
.section { padding: 112px 0; }
.section-dark {
  background: var(--noir);
  color: var(--text-light);
}
.section-alt { background: var(--cream-rose); }

/* ─── Treatments ─────────────────────────────── */
.section-treatments { background: var(--cream); }
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.treatment-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(12,11,9,0.12);
}
.treatment-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.treatment-img img,
.treatment-img .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.treatment-card:hover .treatment-img img,
.treatment-card:hover .treatment-img .img-ph {
  transform: scale(1.04);
}
.treatment-body { padding: 20px; }
.treatment-tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  background: var(--cream-deep);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand);
}
.treatment-body h3 {
  margin: 0 0 10px;
  font: 700 21px/1.3 "Cormorant Garamond", serif;
}
.treatment-body p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.treatment-price {
  font: 700 18px/1 "Cormorant Garamond", serif !important;
  color: var(--gold-dark) !important;
  letter-spacing: 0.04em;
}
.quick-reserve {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: var(--cream-deep);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.area-label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  flex: 1;
  min-width: 220px;
}
.area-label select {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: 500 14px/1.2 "Zen Kaku Gothic New", sans-serif;
  background: #fff;
  color: var(--text);
  cursor: pointer;
}
.area-label select:focus {
  outline: 2px solid rgba(196, 164, 107, 0.4);
  border-color: var(--gold);
}

/* ─── Gallery Marquee ────────────────────────── */
.gallery-strip {
  overflow: hidden;
  padding: 40px 0;
  background: var(--noir-mid);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.gallery-strip:hover .gallery-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.gallery-item { flex-shrink: 0; width: 360px; height: 240px; border-radius: var(--radius-sm); overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-ph { width: 100%; height: 100%; }

/* ─── Reasons ────────────────────────────────── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.reason-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px 36px;
  background: var(--noir-soft);
  transition: background 0.25s;
}
.reason-item:hover { background: var(--noir-mid); }
.reason-num {
  font: 400 52px/1 "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-dark);
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
}
.reason-body h3 {
  margin: 0 0 12px;
  font: 700 18px/1.35 "Cormorant Garamond", serif;
  color: var(--text-light);
}
.reason-body p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
}

/* ─── Doctor ─────────────────────────────────── */
.section-doctor { background: var(--cream); }
.doctor-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
.doctor-ph {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.doctor-img-wrap > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  display: block;
}
.doctor-img-wrap {
  position: relative;
}
.doctor-img-wrap::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 2px solid var(--gold);
  opacity: 0.25;
  border-radius: var(--radius-lg);
  z-index: -1;
}
.doctor-name {
  margin: 0 0 6px;
  font: 700 26px/1.2 "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
}
.doctor-name span {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
.doctor-career {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.doctor-message {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--text);
  padding: 20px;
  background: var(--cream-deep);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ─── Voice ──────────────────────────────────── */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(12,11,9,0.06);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(12,11,9,0.1);
}
.voice-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.voice-text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}
.voice-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.voice-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  border: 2px solid var(--gold-light);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
}
.voice-avatar svg {
  width: 22px;
  height: 22px;
}
.voice-name {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.voice-treatment {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.section-disclaimer {
  margin: -12px 0 0;
  font-size: 12px;
  color: var(--muted-light);
}

/* ─── Case ───────────────────────────────────── */
.ai-disclaimer {
  margin: 0 0 32px;
  padding: 12px 16px;
  border: 1px solid rgba(196,164,107,0.35);
  border-radius: var(--radius-sm);
  background: rgba(196,164,107,0.08);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case-card {
  background: var(--noir-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.case-photos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line-dark);
}
.case-photos figure {
  margin: 0;
}
.case-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
}
.case-photos figcaption {
  margin-top: 6px;
  text-align: center;
  font: 700 11px/1 "Cormorant Garamond", serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.case-arrow {
  color: var(--gold-dark);
  opacity: 0.6;
  flex-shrink: 0;
}
.case-info {
  padding: 20px;
}
.case-info h3 {
  margin: 0 0 14px;
  font: 700 20px/1.2 "Cormorant Garamond", serif;
  color: var(--text-light);
}
.case-dl {
  display: grid;
  gap: 8px;
}
.case-dl > div {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
}
.case-dl dt {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 72px;
}
.case-dl dd {
  margin: 0;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.note { margin: 20px 0 0; font-size: 13px; color: var(--muted); }
.note--light { color: rgba(255,255,255,0.4); }

/* ─── Pricing ────────────────────────────────── */
.section-pricing { background: var(--cream-deep); }
.price-list {
  max-width: 640px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 40px rgba(12,11,9,0.07);
}
.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.price-item:hover { background: var(--cream); }
.price-item:last-child { border-bottom: none; }
.price-item--free { background: rgba(26,107,92,0.04); }
.price-name { font-size: 16px; font-weight: 500; }
.price-val {
  font: 700 19px/1 "Cormorant Garamond", serif;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}
.price-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--gold-dark);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ─── Flow ───────────────────────────────────── */
.flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.flow-item {
  padding: 28px 24px;
  background: var(--noir-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.25s, transform 0.25s var(--ease);
}
.flow-item:hover {
  background: var(--noir-mid);
  transform: translateY(-4px);
}
.flow-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-dark), transparent);
  align-self: center;
  opacity: 0.4;
  flex-shrink: 0;
}
.flow-num {
  display: block;
  font: 400 42px/1 "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}
.flow-item h3 {
  margin: 0 0 10px;
  font: 700 16px/1.3 "Cormorant Garamond", serif;
  color: var(--text-light);
}
.flow-item p {
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ─── FAQ ────────────────────────────────────── */
.section-faq { background: var(--cream); }
.faq-list {
  max-width: 760px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 0;
  border-left: 3px solid transparent;
  transition: border-color 0.3s;
}
details[open] { border-left-color: var(--gold); }
details:hover { border-left-color: var(--line); }
details[open]:hover { border-left-color: var(--gold); }
summary {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  padding: 24px 20px 24px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--gold-dark); }
.faq-q {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--noir);
  font: 700 13px/1 "Cormorant Garamond", serif;
  flex-shrink: 0;
}
.faq-icon {
  margin-left: auto;
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 4px; transform: translateY(-50%); }
.faq-icon::after { width: 1.5px; height: 12px; top: 4px; left: 50%; transform: translateX(-50%); }
details[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
details p {
  margin: 0;
  padding: 0 20px 24px 58px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
}

/* ─── Final CTA ──────────────────────────────── */
.section-final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta-ph { width: 100%; height: 100%; }
.final-cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(12,11,9,0.78) 0%, rgba(12,11,9,0.62) 100%);
}
.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta-content h2 {
  margin: 0 0 20px;
  font: 700 clamp(30px, 4.5vw, 54px)/1.2 "Cormorant Garamond", serif;
  color: #fff;
}
.final-cta-content > p {
  margin: 0 0 32px;
  font-size: 15px;
  color: rgba(255,255,255,0.68);
}
.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.legal-block {
  text-align: left;
  padding: 20px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
}
.legal-block h3 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}
.legal-block ul {
  margin: 0;
  padding-left: 18px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

/* ─── Footer ─────────────────────────────────── */
.site-footer {
  background: var(--noir);
  border-top: 1px solid var(--line-dark);
}
.footer-inner { padding: 48px 0 32px; }
.footer-top {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand {
  margin: 0;
  font: 600 20px/1 "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}
.footer-info {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-access {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 32px;
}
.footer-access h3 {
  margin: 0 0 14px;
  font: 700 17px/1 "Cormorant Garamond", serif;
  letter-spacing: 0.06em;
  color: var(--text-light);
}
.footer-access-photo figure { margin: 0; }
.footer-access-photo img {
  display: block;
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
}
.footer-access-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-access-text { display: flex; flex-direction: column; }
.footer-access-text p {
  margin: 0 0 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}
.footer-access-text ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
}
.map-wrap {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 260px;
  border: 0;
}
.footer-copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ─── Sticky CTA ─────────────────────────────── */
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  gap: 10px;
  background: rgba(247, 242, 235, 0.96);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 8px 40px rgba(12,11,9,0.18);
  backdrop-filter: blur(12px);
}

/* ─── Reveal animations ──────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1080px) {
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-grid { grid-template-columns: 300px 1fr; gap: 48px; }
  .flow-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .flow-connector { display: none; }
}

@media (max-width: 780px) {
  .header-nav { display: none; }
  .header-cta .btn-tel { display: none; }

  .hero-content { max-width: 100%; margin-left: auto; margin-right: auto; padding-top: 220px; }
  .hero-scroll { display: none; }

  /* SP Hero scroll reveal — initial state */
  .hero-overlay { opacity: 0; }
  .hero-content { opacity: 0; }

  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(2) { border-right: none; }
  .number-item:nth-child(1),
  .number-item:nth-child(2) { border-bottom: 1px solid var(--line-dark); padding-bottom: 28px; }
  .number-item:nth-child(3),
  .number-item:nth-child(4) { padding-top: 28px; }

  .section { padding: 80px 0; }

  .treatment-grid { grid-template-columns: 1fr; }
  .quick-reserve { flex-direction: column; align-items: stretch; }
  .area-label { min-width: 0; }

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

  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-img-wrap { max-width: 230px; margin: 0 auto; }
  .doctor-img-wrap > img {
    width: 230px;
    height: 307px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
  }
  .doctor-img-wrap::after { display: none; }

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

  .case-grid { grid-template-columns: 1fr; }
  .case-photos {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .case-arrow { display: none; }
  .case-photos img {
    aspect-ratio: auto;
    width: 100%;
  }

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

  .footer-access-info { grid-template-columns: 1fr; }

  .sticky-cta {
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 10px 16px;
    justify-content: center;
  }
  .sticky-cta .btn { flex: 1; }
  .footer-inner { padding-bottom: 96px; }
}

/* ─── Lightbox ───────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.93);
}
.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox-img {
  max-width: 72vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.lightbox-label {
  margin: 0;
  font: 700 12px/1 "Cormorant Garamond", serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-nav {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  user-select: none;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); transform: scale(1.08); }
.lightbox-nav:disabled { opacity: 0.18; cursor: default; pointer-events: none; }
.lightbox-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.lightbox-dot.is-active {
  background: var(--gold);
  transform: scale(1.4);
}
.case-photos img { cursor: zoom-in; }
@media (max-width: 780px) {
  .lightbox { gap: 10px; }
  .lightbox-img { max-width: 88vw; max-height: 72vh; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 30px; }
}

/* ─── options pages (unchanged) ─────────────── */
.options-page { min-height: 100vh; }
.option-block { margin-top: 28px; }
.option-block h2 {
  margin: 0 0 10px;
  font: 700 clamp(24px, 3.6vw, 34px)/1.2 "Cormorant Garamond", serif;
}
.option-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.option-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.option-table th,
.option-table td {
  border-bottom: 1px solid #e5dac8;
  padding: 12px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.option-table th { background: #f6efe3; font-weight: 700; }
.option-table tr:last-child td { border-bottom: none; }
.text-link { color: var(--brand-dark); font-weight: 700; }
