/* ─────────────────────────────────────────
   AXIS GYM 共通スタイル
   烏丸御池の完全個室パーソナルジム
───────────────────────────────────────── */

/* ── Variables ── */
:root {
  --bg:         #ffffff;
  --bg-mid:     #f7f6f4;
  --bg-soft:    #f0ede9;
  --bg-dark:    #0a0a0a;
  --black:      #0a0a0a;
  --black-mid:  #1c1c1c;
  --text:       #0a0a0a;
  --text-dim:   #333333;
  --text-mute:  #888888;
  --border:     rgba(0,0,0,0.08);
  --border-dark:rgba(0,0,0,0.15);
  --gold:       #a07830;
  --gold-light: #c9a55a;
  --gold-dark:  #7a5c24;
  --font-serif: 'Cormorant Garamond','Noto Serif JP',serif;
  --font-sans:  'Noto Sans JP',sans-serif;
  --radius:     2px;
  --transition: 0.25s ease;
}

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

/* ── Typography ── */
.font-serif { font-family: var(--font-serif); }
h1,h2,h3,h4 { font-weight:400; line-height:1.4; }

/* ── Layout ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
}
.container--wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
}
.container--narrow {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
}
section { padding: clamp(64px,10vw,120px) 0; }

/* ── Gold line ── */
.gold-line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line--center { margin: 1.5rem auto; }

/* ── Eyebrow ── */
.eyebrow {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

/* ── Section title ── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem,4vw,2.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.section-title em { font-style:normal; color:var(--gold); }
.section-sub {
  font-size: clamp(0.85rem,2vw,1rem);
  color: var(--text-dim);
  letter-spacing: 0.04em;
  line-height: 1.9;
  margin-top: 1.2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--black);
  animation: cta-glow 2s ease-in-out infinite;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: cta-shimmer 2.4s ease-in-out infinite;
  pointer-events: none;
}
.btn--primary:hover { background: var(--gold-dark); }
.btn--primary.large { padding: 20px 48px; font-size: 0.9rem; }
.btn--line {
  position: relative;
  overflow: hidden;
  background: #06C755;
  color: #fff;
  animation: cta-glow-line 2s ease-in-out infinite;
}
.btn--line::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: cta-shimmer 2.4s ease-in-out infinite;
  pointer-events: none;
}
.btn--line:hover { opacity: 0.85; }
@keyframes cta-glow-line {
  0%,100% { box-shadow: 0 4px 24px rgba(6,199,85,0.3), 0 0 0 0 rgba(6,199,85,0); }
  50%      { box-shadow: 0 4px 32px rgba(6,199,85,0.6), 0 0 20px 6px rgba(6,199,85,0.4); }
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-dark);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--white {
  background: #fff;
  color: var(--black);
}
.btn--white:hover { background: var(--bg-soft); }

/* ── CTA block ── */
.cta-block {
  text-align: center;
  padding: 48px 0;
}
.cta-block .btn { min-width: 260px; }
.cta-note {
  font-size: 0.75rem;
  color: var(--text-mute);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  height: 120px;
  display: flex;
  align-items: flex-start;
  padding-top: 10px;
}
.site-nav__inner {
  width: 100%;
  padding: 0 clamp(8px,3vw,20px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.site-nav__logo {
  display: flex; align-items: center; gap: 10px;
  position: absolute;
  top: 6px;
  left: clamp(8px,3vw,20px);
}
.site-nav__logo img {
  height: 80px;
  width: auto;
}
.site-nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text);
  white-space: nowrap;
}
.site-nav__cta { display: flex; gap: 10px; }
.site-nav__cta .btn { padding: 10px 20px; font-size: 0.78rem; }
@media (max-width: 480px) {
  .site-nav__cta .btn--outline { display: none; }
}

/* ── Fixed bottom CTA ── */
.fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border);
  padding: 10px clamp(16px,4vw,48px);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.fixed-cta .btn { flex: 1; max-width: 220px; padding: 13px 20px; font-size: 0.8rem; }
@media (min-width: 769px) { .fixed-cta { display: none; } }

/* ── Hero ── */
#hero picture { position: absolute; inset: 0; display: block; }
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 0;
  background: #f0ede9;
  overflow: hidden;
}

/* 人物写真：フルスクリーン背景 */
.hero__people {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

/* 白グラデーションオーバーレイ：下から上（テキスト可読性） */
.hero__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(
    to top,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.85) 25%,
    rgba(255,255,255,0.5) 55%,
    rgba(255,255,255,0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* テキストコンテンツ：写真下部に絶対配置 */
.hero__content {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  z-index: 2;
  padding: 0 clamp(20px,6vw,48px);
  text-align: center;
}
.hero__tag {
  position: absolute;
  top: clamp(92px,16vw,120px);
  left: 0; right: 0;
  z-index: 2;
  text-align: center;
  font-size: clamp(0.85rem,4vw,1.1rem);
  color: var(--text);
  letter-spacing: 0.14em;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(255,255,255,0.7);
}
.hero__tag em { font-style: normal; color: var(--gold); font-weight: 700; }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem,7vw,3.4rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
  letter-spacing: 0.04em;
  margin-bottom: 0;
}
.hero__title em { font-style: normal; color: var(--gold); }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: clamp(12px,2.5vw,20px);
}
.hero__badge {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border: 1px solid var(--border-dark);
  padding: 4px 12px;
  border-radius: 2px;
}

/* CTAバー */
.hero__cta-bar {
  position: absolute;
  bottom: 160px;
  left: 0; right: 0;
  z-index: 3;
  padding: 12px clamp(16px,5vw,28px) 12px;
}
@keyframes cta-glow {
  0%,100% { box-shadow: 0 4px 24px rgba(160,120,48,0.4), 0 0 0 0 rgba(201,165,90,0); }
  50%      { box-shadow: 0 4px 32px rgba(160,120,48,0.7), 0 0 20px 6px rgba(201,165,90,0.5); }
}
@keyframes cta-shimmer {
  0%   { left: -100%; }
  100% { left: 150%; }
}
.hero__cta-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: clamp(0.85rem,3.5vw,1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 56px 16px 56px;
  border-radius: 60px;
  gap: 8px;
  text-decoration: none;
  transition: background var(--transition);
  box-sizing: border-box;
  animation: cta-glow 2s ease-in-out infinite;
}
.hero__cta-btn::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: cta-shimmer 2.4s ease-in-out infinite;
  pointer-events: none;
}
.hero__cta-btn:hover { background: var(--gold-dark); }
.hero__cta-arrow {
  position: absolute;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.28);
  border-radius: 50%;
  font-size: 1rem;
}

/* ── Hero PC Override ── */
@media (min-width: 600px) {
  #hero {
    justify-content: flex-end;
  }
  .hero__tag {
    top: clamp(60px, 6vw, 80px);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
  }
  .hero__people { object-position: center 30%; }
  .hero__content {
    position: relative;
    bottom: auto;
    padding: 0 clamp(40px, 8vw, 120px) 0;
  }
  .hero__title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
  }
  .hero__title br:nth-of-type(1) { display: inline; }
  .hero__title br:nth-of-type(2) { display: none; }
  .hero__cta-bar {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    padding: 0;
    max-width: none;
  }
  .hero__cta-btn {
    width: 100%;
    padding: 22px 56px;
  }
}

/* コピーライト */
.site-copy {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-mute);
  padding: 16px;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(20px,6vw,80px);
}
.trust-bar__inner {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.trust-bar__cross {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 0; height: 0;
  pointer-events: none;
}
.trust-bar__cross::before,
.trust-bar__cross::after {
  content: '';
  position: absolute;
  transform: translate(-50%,-50%);
}
.trust-bar__cross::before {
  width: 1px; height: 160px;
  background: linear-gradient(to bottom, transparent 0%, var(--border-dark) 25%, var(--border-dark) 75%, transparent 100%);
}
.trust-bar__cross::after {
  width: 240px; height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--border-dark) 25%, var(--border-dark) 75%, transparent 100%);
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 32px;
  text-align: center;
}
.trust-bar__num {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem,3.5vw,1.9rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  line-height: 1;
}
.trust-bar__num small { font-size: 0.6em; letter-spacing: 0.08em; }
.trust-bar__label { font-size: 0.68rem; letter-spacing: 0.14em; color: var(--text-mute); }

/* ── Problems section ── */
#problems { background: var(--bg); }
.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.problems__item {
  background: var(--bg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.problems__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: rgba(160,120,48,0.35);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.problems__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-dim);
}
.problems__em {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
}

/* ── Why fail ── */
#why-fail { background: var(--bg-mid); }
.why-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.why-item__icon {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
}
.why-item__body {}
.why-item__title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.why-item__desc { font-size: 0.875rem; color: var(--text-dim); line-height: 1.75; }

/* ── Brand section ── */
#brand { background: var(--black); color: #fff; }
#brand .eyebrow { color: var(--gold-light); }
#brand .section-title { color: #fff; }
#brand .gold-line { background: var(--gold-light); }
#brand .section-sub { color: rgba(255,255,255,0.7); }
.brand__statement {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-top: 2.5rem;
  letter-spacing: 0.04em;
}
.brand__statement em { font-style:normal; color: var(--gold-light); }
.brand__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2.5rem;
}
.brand__value {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 16px;
}

/* ── Method section ── */
#method { background: var(--bg-soft); }
.method__flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.method__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.method__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  width: 1px;
  height: calc(100% - 16px);
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.method__step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
  background: var(--bg-soft);
  position: relative;
  z-index: 1;
}
.method__step-body { padding: 8px 0 32px; }
.method__step-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text);
}
.method__step-desc { font-size: 0.84rem; color: var(--text-dim); line-height: 1.7; }

/* ── Reasons ── */
#reasons { background: var(--bg); }
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}
.reasons__card {
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.reasons__card:hover { border-color: var(--gold); }
.reasons__icon {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.reasons__title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.reasons__desc { font-size: 0.84rem; color: var(--text-dim); line-height: 1.75; }

/* ── Results / Before-After ── */
#results { background: var(--bg-mid); }
.results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px;
  margin-top: 3rem;
}
.results__card {
  background: var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.results__photo {
  aspect-ratio: 4/3;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.results__photo img { width:100%; height:100%; object-fit:cover; }
.results__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-mute);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px;
}
.results__body { padding: 20px; }
.results__meta {
  font-size: 0.72rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.results__change {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.results__comment { font-size: 0.84rem; color: var(--text-dim); line-height: 1.75; }
.results__notice {
  margin-top: 1.5rem;
  padding: 16px 20px;
  background: var(--bg-soft);
  font-size: 0.78rem;
  color: var(--text-mute);
  line-height: 1.7;
  border-left: 2px solid var(--border-dark);
}

/* ── Reviews ── */
#reviews { background: var(--bg); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px;
  margin-top: 3rem;
}
.reviews__card { border: 1px solid var(--border); padding: 28px 24px; }
.reviews__stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.reviews__headline {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.reviews__body { font-size: 0.84rem; color: var(--text-dim); line-height: 1.8; margin-bottom: 16px; }
.reviews__meta { font-size: 0.72rem; color: var(--text-mute); letter-spacing: 0.08em; }
.reviews__notice {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mute);
}

/* ── Trainer ── */
#trainer { background: var(--bg-mid); }
.trainer__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 3rem;
}
.trainer__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-soft);
}
.trainer__photo img { width:100%; height:100%; object-fit:cover; object-position:top; }
.trainer__name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.trainer__name-kana { font-size: 0.78rem; color: var(--text-mute); letter-spacing: 0.15em; margin-bottom: 1.5rem; }
.trainer__title { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1.5rem; }
.trainer__message { font-size: 0.9rem; color: var(--text-dim); line-height: 1.9; margin-bottom: 1.5rem; }
.trainer__certs {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.trainer__certs-title { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--text-mute); margin-bottom: 10px; }
.trainer__cert-list { display: flex; flex-direction: column; gap: 6px; }
.trainer__cert { font-size: 0.84rem; color: var(--text-dim); display: flex; gap: 8px; }
.trainer__cert::before { content: '—'; color: var(--gold); flex-shrink: 0; }
@media (max-width: 640px) {
  .trainer__layout { grid-template-columns: 1fr; }
  .trainer__photo { max-width: 320px; margin: 0 auto; }
}

/* ── Facility ── */
#facility { background: var(--bg-soft); }
.facility__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
  margin-top: 3rem;
}
.facility__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-mid);
  position: relative;
}
.facility__photo img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s ease; }
.facility__photo:hover img { transform: scale(1.04); }
.facility__photo--large { grid-column: span 2; aspect-ratio: 16/7; }
.facility__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 20px 12px 10px;
}
.facility__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--text-mute);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 10px;
}
@media (max-width: 560px) {
  .facility__grid { grid-template-columns: 1fr; }
  .facility__photo--large { grid-column: span 1; aspect-ratio: 4/3; }
}

/* ── Pricing ── */
#pricing { background: var(--bg); }
.pricing__trial {
  margin-top: 2.5rem;
  background: var(--black);
  color: #fff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing__trial-label { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold-light); margin-bottom: 6px; }
.pricing__trial-name { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; margin-bottom: 4px; }
.pricing__trial-price {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.pricing__trial-price small { font-size: 0.9rem; }
.pricing__trial-note { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
}
.pricing__card {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
}
.pricing__card:last-child { border-right: none; }
.pricing__tier { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; display: block; }
.pricing__name { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 4px; }
.pricing__tagline { font-size: 0.8rem; color: var(--text-mute); margin-bottom: 16px; line-height: 1.5; }
.pricing__price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.pricing__price .currency { font-size: 1rem; }
.pricing__price-note { font-size: 0.72rem; color: var(--text-mute); margin-bottom: 16px; }
.pricing__divider { height: 1px; background: var(--border); margin: 16px 0; }
.pricing__features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-dim);
}
.pricing__features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.pricing__cta {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: all var(--transition);
  background: none;
  font-family: var(--font-sans);
  cursor: pointer;
}
.pricing__cta:hover { border-color: var(--gold); color: var(--gold); }
.pricing__note {
  margin-top: 1.5rem;
  padding: 16px 20px;
  background: var(--bg-soft);
  font-size: 0.78rem;
  color: var(--text-mute);
  line-height: 1.8;
}
@media (max-width: 640px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__card { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing__card:last-child { border-bottom: none; }
}

/* ── Flow ── */
#flow { background: var(--bg-mid); }
.flow__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.flow__step {
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  border-right: none;
  position: relative;
}
.flow__step:last-child { border-right: 1px solid var(--border); }
.flow__step:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  z-index: 1;
  background: var(--bg);
  padding: 2px;
}
.flow__num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.flow__title { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.flow__desc { font-size: 0.78rem; color: var(--text-mute); line-height: 1.6; }
@media (max-width: 600px) {
  .flow__steps { grid-template-columns: 1fr; }
  .flow__step { border-right: 1px solid var(--border); border-top: none; }
  .flow__step:first-child { border-top: 1px solid var(--border); }
  .flow__step::after { display: none; }
}

/* ── FAQ ── */
#faq { background: var(--bg); }
.faq__list { margin-top: 2.5rem; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}
.faq__q-text {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
}
.faq__q-text::before { content: 'Q. '; color: var(--gold); font-family: var(--font-serif); }
.faq__icon {
  width: 24px; height: 24px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color var(--transition);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
}
.faq__icon::before { width: 10px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__icon::after { width: 1px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: opacity 0.2s; }
.faq__item.open .faq__icon { border-color: var(--gold); }
.faq__item.open .faq__icon::after { opacity: 0; }
.faq__a { display: none; padding: 0 0 20px 28px; }
.faq__item.open .faq__a { display: block; }
.faq__a-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.85;
}
.faq__a-text::before { content: 'A. '; color: var(--gold); font-family: var(--font-serif); }

/* ── Access ── */
#access { background: var(--bg-soft); }
.access__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 3rem;
  align-items: start;
}
.access__map {
  aspect-ratio: 1;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-mid);
}
.access__map iframe { width: 100%; height: 100%; border: 0; }
.access__map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-mute);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 20px;
  min-height: 300px;
}
.access__info { display: flex; flex-direction: column; gap: 20px; }
.access__row { display: flex; gap: 16px; align-items: flex-start; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.access__row:last-child { border-bottom: none; }
.access__row-label { font-size: 0.72rem; letter-spacing: 0.15em; color: var(--text-mute); flex-shrink: 0; min-width: 72px; padding-top: 3px; }
.access__row-value { font-size: 0.9rem; line-height: 1.7; }
.access__row-value a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 640px) {
  .access__layout { grid-template-columns: 1fr; }
}

/* ── Final CTA ── */
#final-cta {
  background: var(--black);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(160,120,48,0.15) 0%, transparent 70%);
}
#final-cta > * { position: relative; z-index: 1; }
#final-cta .eyebrow { color: var(--gold-light); }
#final-cta .section-title { color: #fff; }
#final-cta .gold-line { background: var(--gold-light); }
.final-cta__sub { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 2rem; line-height: 1.8; }
.final-cta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.final-cta__btns .btn { min-width: 220px; }

/* ── Blog links ── */
#blog { background: var(--bg-mid); }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 24px;
  margin-top: 2.5rem;
}
.blog__card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.blog__card:hover { border-color: var(--gold); }
.blog__cat { font-size: 0.68rem; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 10px; }
.blog__title { font-size: 0.95rem; font-weight: 700; line-height: 1.5; margin-bottom: 12px; flex: 1; }
.blog__arrow { font-size: 0.78rem; color: var(--text-mute); letter-spacing: 0.1em; }

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 48px 0 32px;
}
.site-footer__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,60px);
}
.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.site-footer__logo img { height: 32px; width: auto; opacity: 0.75; }
.site-footer__name { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 12px; }
.site-footer__address { font-size: 0.78rem; line-height: 1.8; margin-top: 6px; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer__links a { font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.site-footer__links a:hover { color: var(--gold-light); }
.site-footer__copy { font-size: 0.72rem; text-align: center; letter-spacing: 0.08em; }

/* ── Breadcrumb ── */
.breadcrumb {
  padding: 10px 0;
  font-size: 0.75rem;
  color: var(--text-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: center;
}
.breadcrumb a { color: var(--text-mute); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--border-dark); }

/* ── Inner page header ── */
.page-header {
  padding: clamp(80px,12vw,120px) 0 clamp(40px,6vw,64px);
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  margin-top: 64px;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Hero Results Strip ── */
.hero__results {
  margin: 1.2rem 0 0;
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
}
.hero__results-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(255,255,255,0.8);
}
.hero__results-nums {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  backdrop-filter: blur(6px);
}
.hero__result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
.hero__result-num {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__result-num small {
  font-size: 0.55em;
  letter-spacing: 0;
}
.hero__result-label {
  font-size: 0.65rem;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}
.hero__result-sep {
  color: var(--border-dark);
  font-size: 1.1rem;
  align-self: center;
}

/* ── Problems × card grid ── */
.problems__grid--x {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  background: transparent !important;
  margin-top: 2rem;
}
.problems__item--x {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1rem;
}
.problems__x {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.problems__item--x .problems__text {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}
@media (max-width: 400px) {
  .problems__grid--x { grid-template-columns: 1fr; }
}

/* ── Before/After data tables ── */
.ba-block { margin-bottom: 3rem; }
.ba-data {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
}
.ba-data__header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.ba-data__person {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.ba-data__period {
  font-size: 0.8rem;
  color: var(--text-mute);
}
.ba-data__period em {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}
.ba-data__highlights {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.ba-data__hl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.ba-data__hl-val {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
}
.ba-data__hl-val small { font-size: 0.55em; }
.ba-data__hl-label {
  font-size: 0.68rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}
.ba-data__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.ba-data__table th {
  text-align: left;
  color: var(--text-mute);
  font-weight: 400;
  padding: 4px 6px;
  font-size: 0.72rem;
}
.ba-data__table td {
  padding: 5px 6px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
}
.ba-data__table td:first-child { font-weight: 700; color: var(--text); white-space: nowrap; }
.ba-data__table td.neg { color: var(--gold); font-weight: 700; }
.ba-data__table td.pos { color: #2a7a4a; font-weight: 700; }

/* ── Compare section ── */
#compare { background: var(--bg-mid); }
.compare__wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2rem;
}
.compare__col { padding: 1.8rem 1.6rem; }
.compare__col--bad { background: #fff; }
.compare__col--good { background: var(--bg-soft); }
.compare__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--border);
  color: var(--text-mute);
}
.compare__col--good .compare__col-title {
  border-color: var(--gold);
  color: var(--gold);
}
.compare__list { display: flex; flex-direction: column; gap: 0.6rem; }
.compare__item {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.compare__item--bad::before {
  content: '✕';
  color: #c0392b;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare__item--good::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.compare__result {
  margin-top: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 700;
}
.compare__result--bad { color: #c0392b; }
.compare__result--good { color: var(--gold); }
.compare__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-mute);
  background: var(--bg-mid);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
@media (max-width: 600px) {
  .compare__wrap {
    grid-template-columns: 1fr;
  }
  .compare__vs {
    padding: 0.8rem;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
}
