/* ============================================================
   Dr.Jena — Modern Site Stylesheet
   Design: Minimal Luxury
============================================================ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:           #FFFFFF;
  --bg-alt:       #F8F6F2;
  --bg-dark:      #1A1814;
  --primary:      #8A6A14;
  --primary-lt:   #C9A84C;
  --primary-dk:   #6A5010;
  --accent:       #9A9490;
  --accent-lt:    #EAE6DF;
  --text:         #1A1814;
  --text-lt:      #7A7470;
  --text-muted:   #ABA7A3;
  --white:        #FFFFFF;
  --border:       #E8E4DE;

  --serif:  'Shippori Mincho', 'Noto Serif JP', Georgia, serif;
  --sans:   'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm:  0px;
  --r-md:  0px;
  --r-lg:  0px;
  --r-xl:  0px;

  --sh-sm: 0 1px 4px rgba(26,24,20,.04);
  --sh-md: 0 4px 20px rgba(26,24,20,.07);
  --sh-lg: 0 12px 40px rgba(26,24,20,.10);

  --ease: cubic-bezier(.4,0,.2,1);
  --t:    .4s var(--ease);
  --ts:   .7s var(--ease);

  --hh:   72px;
  --w:    1200px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Utilities ──────────────────────────────────────────── */
.container { max-width: var(--w); margin-inline: auto; padding-inline: 48px; }

.section { padding-block: 120px; }

.section__label {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.section__head { text-align: center; margin-bottom: 64px; }
.section__head .section__title { margin-top: .5rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .5s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--text);
  color: var(--white);
  border: 1px solid var(--text);
}
.btn--primary:hover { background: transparent; color: var(--text); }

.btn--outline {
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
}
.btn--outline:hover { background: var(--text); color: var(--white); }

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); }

.btn--white {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--white);
}
.btn--white:hover { background: transparent; color: var(--white); }

.btn--ghost-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn--ghost-white:hover { background: rgba(255,255,255,.1); }

/* ── Reveal animation ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--hh);
  transition: background var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.header__inner {
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .1em;
  flex-shrink: 0;
}
.logo-dr { color: #1A1814; }
.logo-jena { color: var(--text); }

.header__nav { margin-left: auto; }
.nav__list {
  display: flex;
  gap: 0;
  align-items: center;
}
.nav__list a {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #1A1814;
  padding: 8px 16px;
  transition: color var(--t);
}
.nav__list a:hover { color: #1A1814; opacity: .6; }

.header__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 20px;
  border: 1px solid var(--border);
  transition: all var(--t);
  flex-shrink: 0;
}
.header__tel:hover { background: var(--text); color: var(--white); border-color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all var(--t);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--hh); left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.99);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 48px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 0; }
.mobile-nav a {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  display: block;
}
.mobile-nav .mobile-tel {
  margin-top: 32px;
  padding: 14px;
  background: var(--text);
  color: var(--white);
  text-align: center;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 1px solid var(--text);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--hh);
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: url('img/Gemini_Generated_Image_ahvhpjahvhpjahvh.png') center/cover no-repeat;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.12) translate(-2%, 1%); }
  100% { transform: scale(1.0)  translate(2%, -1%); }
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(26,24,20,.62) 0%, rgba(26,24,20,.36) 50%, rgba(26,24,20,.10) 100%),
    linear-gradient(rgba(160,120,40,.10), rgba(160,120,40,.10));
  z-index: 1;
}

/* Ken Burns + Warm Grain overlay */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .55;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 220px 220px;
  animation: grainShift .4s steps(1) infinite;
}
.hero__grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(180,140,50,.08);
  mix-blend-mode: screen;
}
@keyframes grainShift {
  0%   { background-position:   0%   0%; }
  20%  { background-position: -15%  -8%; }
  40%  { background-position:  -5%  14%; }
  60%  { background-position:  10%  -5%; }
  80%  { background-position: -12%   6%; }
  100% { background-position:   8%  -9%; }
}

/* Decorative blobs (hidden in minimal design) */
.hero__blob { display: none; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(20px,-20px) scale(1.05); }
  66%       { transform: translate(-10px,15px) scale(.97); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--w);
  margin-inline: auto;
  padding-inline: 24px;
  width: 100%;
  padding-block: 80px;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin: 0 0 2rem;
  display: block;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,.9);
}
.hero__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  max-width: 38ch;
  line-height: 2;
  margin-bottom: 3rem;
  letter-spacing: .02em;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #1A1814;
  font-size: .7rem;
  letter-spacing: .15em;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #1A1814, 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; }
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--bg); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__image-wrap { position: relative; }
.about__image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
}
.about__image-frame::before {
  display: none;
}
.about__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  font-family: var(--sans);
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.about__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 100px;
  height: 100px;
  background: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.about__badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}
.about__badge-num sup { font-size: .9rem; }
.about__badge-label {
  font-size: .6rem;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.4;
  margin-top: 4px;
}
.about__text .section__title { margin-top: .5rem; margin-bottom: 1.5rem; }
.about__body {
  color: var(--text-lt);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.about__stats {
  display: flex;
  gap: 48px;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat__num {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}
.stat__num sup { font-size: .9rem; }
.stat__label {
  display: block;
  font-family: var(--sans);
  font-size: .65rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--bg-alt); }
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid var(--border);
}
.service__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity var(--t);
}
.service__card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.service__card:hover::before { opacity: 1; }

.service__card--featured {
  background: var(--text);
  border-color: transparent;
  color: var(--white);
}
.service__card--featured::before { opacity: 1; }
.service__card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.service__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}
.service__icon--rose { background: var(--accent-lt); color: var(--accent); }
.service__icon--gold { background: #F0E8D0; color: var(--primary); }
.service__icon--sage { background: #E8E4D0; color: var(--primary-dk); }
.service__icon svg { width: 28px; height: 28px; }

.service__card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: .5rem;
}
.service__card-sub {
  font-family: var(--sans);
  font-size: .65rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.service__card--featured .service__card-sub { color: rgba(255,255,255,.45); }
.service__card-body {
  font-size: .875rem;
  line-height: 2;
  color: var(--text-lt);
  margin-bottom: 1.5rem;
}
.service__card--featured .service__card-body { color: rgba(255,255,255,.65); }
.service__card-link {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: .15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--t);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.service__card--featured .service__card-link { color: rgba(255,255,255,.7); }
.service__card-link:hover { gap: 14px; }

/* ============================================================
   PRODUCT HIGHLIGHT
============================================================ */
.product-highlight { background: var(--bg); }
.product-highlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-highlight__visual { order: 2; position: relative; }
.product-highlight__frame {
  aspect-ratio: 1;
  background: var(--bg-alt);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-highlight__deco { display: none; }
.product-highlight__text { order: 1; }
.product-highlight__price {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.product-highlight__price span { font-size: 1rem; margin-left: 4px; color: var(--text-muted); }

.features { display: flex; flex-direction: column; gap: 16px; margin: 2rem 0; }
.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.feature__num {
  width: 32px; height: 32px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: .85rem;
  flex-shrink: 0;
}
.feature__title {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.feature__desc { font-size: .825rem; color: var(--text-lt); line-height: 1.8; }

/* ============================================================
   SALON SECTION
============================================================ */
.salon-section { background: var(--bg-dark); color: var(--white); position: relative; overflow: hidden; }
.salon-section::before { display: none; }
.salon-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.salon-section .section__label { color: rgba(255,255,255,.45); }
.salon-section .section__title { color: var(--white); font-weight: 400; }

.salon__concepts {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2.5rem 0;
}
.salon__concept {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.salon__concept-icon {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-lt);
  font-size: .7rem;
  margin-top: 2px;
}
.salon__concept-text {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
}

.salon__info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 2rem 0;
}
.salon__info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.salon__info-row svg { width: 18px; height: 18px; color: var(--accent-lt); flex-shrink: 0; }

.salon__visual { position: relative; }
.salon__cards {
  position: relative;
  height: 480px;
}
.salon__card-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  aspect-ratio: 3/4;
  background: #2A2820;
  overflow: hidden;
}
.salon__card-sub {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  aspect-ratio: 1;
  background: #2A2820;
  overflow: hidden;
  border: 6px solid var(--bg-dark);
}
.salon__card-label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .75rem;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: 100px;
}
.salon__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
}

/* ============================================================
   MENU SECTION
============================================================ */
.menu-section { background: var(--bg-alt); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.menu__category { margin-bottom: 8px; }
.menu__category-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
  border: 1px solid var(--border);
  transition: border-color var(--t);
}
.menu__item:hover { border-color: var(--primary); }
.menu__item-name { font-size: .875rem; font-weight: 500; }
.menu__item-price {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--primary);
  white-space: nowrap;
  margin-left: 8px;
}
.menu__item-time {
  font-size: .75rem;
  color: var(--text-muted);
  margin-left: 8px;
}
.menu__note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--r-md);
  border-left: 3px solid var(--primary);
  font-size: .85rem;
  color: var(--text-lt);
  line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.voice-section { background: var(--bg); }
.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform var(--t), box-shadow var(--t);
}
.voice__card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.voice__card--featured {
  background: var(--bg-alt);
  border-color: var(--border);
}
.voice__stars {
  color: var(--primary);
  letter-spacing: 2px;
  font-size: .9rem;
  margin-bottom: 16px;
}
.voice__text {
  font-size: .875rem;
  line-height: 1.9;
  color: var(--text-lt);
  margin-bottom: 20px;
  font-style: italic;
}
.voice__text::before { content: '\201C'; font-family: var(--serif); font-size: 1.5rem; color: var(--accent); vertical-align: -.25em; }
.voice__author { display: flex; align-items: center; gap: 12px; }
.voice__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.voice__avatar--1 { background: linear-gradient(135deg, #C9A84C, #A8862A); }
.voice__avatar--2 { background: linear-gradient(135deg, #555555, #333333); }
.voice__avatar--3 { background: linear-gradient(135deg, #DEC07A, #C9A84C); }
.voice__avatar--4 { background: linear-gradient(135deg, #666666, #444444); }
.voice__avatar--5 { background: linear-gradient(135deg, #C8B888, #A89868); }
.voice__name { display: block; font-weight: 600; font-size: .875rem; }
.voice__age  { display: block; font-size: .75rem; color: var(--text-muted); }

/* ============================================================
   RADIO
============================================================ */
.radio-section { background: var(--bg-alt); }
.radio__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.radio__card {
  background: linear-gradient(160deg, #1A1A1A 0%, #2F2F2F 100%);
  border-radius: var(--r-xl);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.radio__card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.3) 0%, transparent 70%);
}
.radio__waves {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-bottom: 24px;
}
.radio__waves span {
  display: block;
  width: 5px;
  border-radius: 3px;
  background: var(--accent);
  animation: wave 1.4s ease-in-out infinite;
}
.radio__waves span:nth-child(1) { height: 30%; animation-delay: 0s; }
.radio__waves span:nth-child(2) { height: 70%; animation-delay: .2s; }
.radio__waves span:nth-child(3) { height: 100%; animation-delay: .4s; }
.radio__waves span:nth-child(4) { height: 60%; animation-delay: .6s; }
.radio__waves span:nth-child(5) { height: 40%; animation-delay: .8s; }
.radio__waves span:nth-child(6) { height: 80%; animation-delay: .3s; }
.radio__waves span:nth-child(7) { height: 50%; animation-delay: .7s; }
@keyframes wave {
  0%,100% { transform: scaleY(.4); }
  50%      { transform: scaleY(1); }
}
.radio__fm   { font-size: .8rem; letter-spacing: .25em; color: var(--accent-lt); display: block; }
.radio__name { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin: 4px 0 20px; }
.radio__schedule {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.radio__time { color: var(--accent-lt); font-weight: 600; font-size: .95rem; }

.radio__text .section__title { margin-top: .5rem; margin-bottom: 1.5rem; }
.radio__body { color: var(--text-lt); line-height: 1.9; margin-bottom: 1rem; font-size: .9rem; }
.radio__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.radio__meta-row { display: flex; gap: 16px; font-size: .875rem; }
.radio__meta-label { color: var(--text-muted); min-width: 80px; }
.radio__meta-val { color: var(--text); font-weight: 500; }

/* ============================================================
   ACCESS
============================================================ */
.access-section { background: var(--bg); }
.access__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.access__map-wrap {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.access__map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
}
.access__map-pin { color: var(--primary); }
.access__map-label {
  font-size: .8rem;
  color: var(--text-lt);
  letter-spacing: .05em;
  text-align: center;
}
.access__dl {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
.access__dl-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.access__dl-row dt { color: var(--text-muted); font-weight: 500; }
.access__dl-row dd { color: var(--text); line-height: 1.6; }
.access__dl-row dd a { color: var(--primary); }
.access__dl-row dd a:hover { text-decoration: underline; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: var(--bg-alt);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-banner__inner { position: relative; }
.cta-banner__eyebrow {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}
.cta-banner__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-banner__sub {
  color: var(--text-lt);
  font-size: .875rem;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
  padding-bottom: 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: .08em;
  display: inline-block;
  margin-bottom: 20px;
}
.footer__logo .logo-dr { color: var(--primary-lt); }
.footer__logo .logo-jena { color: var(--white); }

.footer__tagline {
  font-size: .8rem;
  line-height: 2;
  color: rgba(255,255,255,.4);
  max-width: 26ch;
  margin-bottom: 28px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}
.footer__social a svg { width: 18px; height: 18px; }
.footer__social a:hover { background: var(--primary); border-color: var(--primary); }

.footer__nav-title {
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__nav-list li { margin-bottom: 12px; }
.footer__nav-list a {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
  letter-spacing: .03em;
}
.footer__nav-list a:hover { color: rgba(255,255,255,.9); }
.footer__nav-list span { font-size: .875rem; color: rgba(255,255,255,.45); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__links { display: flex; gap: 20px; }
.footer__links a { color: rgba(255,255,255,.3); transition: color var(--t); }
.footer__links a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  padding-top: calc(var(--hh) + 80px);
  padding-bottom: 80px;
  background: var(--bg-alt);
  text-align: center;
}
.page-hero__label {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1rem;
}
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}
.page-hero__sub {
  font-weight: 400;
  margin: 1rem 0 0;
  color: var(--text-lt);
  font-size: .95rem;
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: .75rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ============================================================
   CONTACT FORM
============================================================ */
.form-section { background: var(--bg); }
.form-wrap {
  max-width: 680px;
  margin-inline: auto;
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.form-label .req {
  color: var(--accent);
  margin-left: 4px;
  font-size: .75rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--text-muted); margin-top: 6px; line-height: 1.6; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  transition: all var(--t);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.form-submit:hover { background: var(--primary-dk); transform: translateY(-1px); box-shadow: var(--sh-md); }

/* ============================================================
   POLICY PAGE
============================================================ */
.policy-content {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 80px;
}
.policy-content h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.policy-content p {
  color: var(--text-lt);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: .9rem;
}
.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-content ul li {
  color: var(--text-lt);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: .5rem;
}

/* ============================================================
   VOICE PAGE
============================================================ */
.voice-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.voice-page__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
}
.voice-page__card--featured {
  grid-column: 1 / -1;
  background: var(--bg-alt);
  border-color: var(--accent-lt);
}
.voice-page__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.voice-page__text {
  font-size: .9rem;
  line-height: 1.9;
  color: var(--text-lt);
  font-style: italic;
  margin-bottom: 20px;
}
.voice-page__text::before { content: '\201C'; font-family: var(--serif); font-size: 1.5rem; color: var(--accent); vertical-align: -.25em; }
.voice-page__profile { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   PRODUCTS PAGE
============================================================ */
.products-hero__frame {
  background: var(--bg-alt);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t);
}
.product-card:hover { box-shadow: var(--sh-lg); }
.product-card__img {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(50,50,50,.35);
  letter-spacing: .1em;
}
.product-card__body { padding: 32px; }
.product-card__name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: .25rem;
}
.product-card__model { font-size: .8rem; color: var(--text-muted); margin-bottom: 1rem; }
.product-card__price {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.product-card__price span { font-size: .85rem; color: var(--text-muted); margin-left: 4px; font-family: var(--sans); }
.product-card__desc { font-size: .875rem; color: var(--text-lt); line-height: 1.85; margin-bottom: 1.5rem; }

.functions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.function-card {
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  text-align: center;
}
.function-card__num {
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-inline: auto;
  margin-bottom: 16px;
}
.function-card__title { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.function-card__subtitle { font-size: .75rem; color: var(--primary); margin-bottom: 12px; letter-spacing: .05em; }
.function-card__desc { font-size: .8rem; color: var(--text-lt); line-height: 1.75; }

/* ============================================================
   MENU PAGE — DETAILED
============================================================ */
.menu-page__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.menu-page__category {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.menu-page__cat-header {
  background: var(--text);
  color: var(--white);
  padding: 20px 32px;
}
.menu-page__cat-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.menu-page__cat-sub { font-family: var(--sans); font-size: .65rem; color: rgba(255,255,255,.5); letter-spacing: .15em; text-transform: uppercase; margin-top: 4px; }
.menu-page__table { width: 100%; border-collapse: collapse; }
.menu-page__table th {
  background: var(--bg-alt);
  padding: 12px 20px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.menu-page__table th:not(:first-child) { text-align: right; }
.menu-page__table td {
  padding: 14px 20px;
  font-size: .875rem;
  border-bottom: 1px solid var(--border);
}
.menu-page__table tr:last-child td { border-bottom: none; }
.menu-page__table td:not(:first-child) { text-align: right; color: var(--primary); font-family: var(--serif); font-size: 1rem; }
.menu-page__table td:last-child { color: var(--accent); }
.menu-page__table tr:hover td { background: var(--bg-alt); }
.menu-page__detail { font-size: .8rem; color: var(--text-muted); display: block; margin-top: 2px; }

.vip-note {
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--accent-lt);
  margin-top: 32px;
}
.vip-note__title { font-family: var(--serif); font-size: 1.2rem; color: var(--accent); margin-bottom: 8px; }
.vip-note__text { font-size: .875rem; color: var(--text-lt); line-height: 1.8; }

/* ============================================================
   REAL IMAGES
============================================================ */
.about__image-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.salon__card-main img,
.salon__card-sub img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.product-highlight__frame img {
  max-width: 85%; max-height: 85%; object-fit: contain;
}
.products-hero__frame img {
  max-width: 85%; max-height: 85%; object-fit: contain;
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Hero image card */
.hero__img-card { display: none; }

/* Voice card image */
.voice-img {
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: 20px;
  display: block;
}
.voice-page__card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  border-radius: var(--r-md) var(--r-md) 0 0;
  display: block;
  margin: -36px -36px 20px;
  width: calc(100% + 72px);
}

@media (max-width: 768px) {
  .hero__img-card { display: none; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .about__grid,
  .product-highlight__grid,
  .salon-section__grid,
  .radio__grid,
  .access__grid { grid-template-columns: 1fr; gap: 48px; }
  .product-highlight__visual { order: -1; }
  .service__grid { grid-template-columns: 1fr; }
  .functions-grid { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr; }
  .voice__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.contact__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  :root { --hh: 64px; }
  .section { padding-block: 64px; }
  .contact__options { grid-template-columns: 1fr; }
  .header__nav, .header__tel { display: none; }
  .hamburger { display: flex; }
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .about__badge { width: 96px; height: 96px; right: 0; bottom: 0; }
  .about__stats { flex-wrap: wrap; gap: 20px; }
  .salon__cards { height: 320px; }
  .voice__grid { grid-template-columns: 1fr; }
  .voice-page__grid { grid-template-columns: 1fr; }
  .voice-page__card--featured { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .menu-page__table th:nth-child(3),
  .menu-page__table td:nth-child(3) { display: none; }
  .functions-grid { grid-template-columns: 1fr; }
}

.celcure4t-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

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

@media (max-width: 768px) {
  .celcure4t-grid { grid-template-columns: 1fr; gap: 40px; }
  .iw-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .btn { padding: 12px 24px; font-size: .9rem; }
}
