/* =========================================
   PARADOX ゴルフスタジオ24 - Shared Styles
   v2.0 - Rich Visual Update
   ========================================= */

/* --- Variables --- */
:root {
  --navy:       #0d1f3c;
  --navy-mid:   #1a3362;
  --navy-light: #243d7a;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark:  #a07830;
  --white:      #ffffff;
  --off-white:  #f4f6fa;
  --gray:       #e8ecf2;
  --text-dark:  #1a1a2e;
  --text-muted: #6b7a99;
  --shadow:     0 4px 24px rgba(13,31,60,.15);
  --shadow-lg:  0 8px 48px rgba(13,31,60,.25);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography (Luxury Upgrade) --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
}
h1 { font-weight: 700; }
h2 { font-weight: 700; }
.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.section-desc.light { color: rgba(255,255,255,.75); }
.text-center { text-align: center; }

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 20px; }

/* --- Buttons (Enhanced) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
/* Shimmer effect on btn */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn:hover::after { left: 150%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201,168,76,.35);
  font-size: 1rem;
  letter-spacing: .03em;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #f0d890);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,168,76,.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,31,60,.3);
}
.btn-line {
  background: linear-gradient(135deg, #07d857, #06C755);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(6,199,85,.3);
}
.btn-line:hover {
  background: linear-gradient(135deg, #08e860, #07d857);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(6,199,85,.45);
}
.btn-tel {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-tel:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .88rem; }

/* Pulse animation for CTA gold button */
@keyframes btnPulse {
  0% { box-shadow: 0 4px 20px rgba(201,168,76,.35), 0 0 0 0 rgba(201,168,76,.4); }
  70% { box-shadow: 0 4px 20px rgba(201,168,76,.35), 0 0 0 12px rgba(201,168,76,0); }
  100% { box-shadow: 0 4px 20px rgba(201,168,76,.35), 0 0 0 0 rgba(201,168,76,0); }
}
.btn-gold.btn-lg { animation: btnPulse 2.5s ease-in-out infinite; }
.btn-gold.btn-lg:hover { animation: none; }

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  font-family: 'Noto Sans JP', sans-serif;
}
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-green { background: #06C755; color: #fff; }

/* --- Sections --- */
section { position: relative; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }
.bg-navy { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-off { background: var(--off-white); }
.bg-gold { background: var(--gold); }

/* Parallax section base */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  position: relative;
}
@media (max-width: 768px) {
  .parallax-section { background-attachment: scroll; }
}

/* ==========================================
   HEADER / NAV
   ========================================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 18px 0;
}
#header.scrolled {
  background: rgba(13,31,60,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 32px rgba(0,0,0,.35);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text .brand { font-size: 1.1rem; font-weight: 800; letter-spacing: .05em; color: var(--gold); }
.nav-logo-text .sub { font-size: .65rem; letter-spacing: .12em; color: rgba(255,255,255,.7); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  letter-spacing: .02em;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: center;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-reserve {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy) !important;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: .88rem !important;
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.nav-reserve::after { display: none !important; }
.nav-reserve:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  box-shadow: 0 6px 24px rgba(201,168,76,.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,31,60,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; }

/* ==========================================
   HERO  — Rich Parallax Version
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  opacity: .45;
  transform: scale(1.08);
  transition: transform 10s ease;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,18,38,.9) 0%,
    rgba(13,31,60,.75) 50%,
    rgba(8,18,38,.6) 100%
  );
}
/* Gold shimmer line at top */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  color: var(--white);
  margin-bottom: 14px;
  animation: fadeUp .8s .15s ease both;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
  line-height: 1.2;
}
.hero h1 span {
  color: var(--gold);
  position: relative;
}
.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(.9rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeUp .8s .25s ease both;
}
.hero-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 44px;
  animation: fadeUp .8s .35s ease both;
  line-height: 1.9;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,168,76,.25);
  animation: fadeUp .8s .55s ease both;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Cormorant Garamond', 'Montserrat', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .unit { font-size: 1rem; color: var(--gold-light); }
.hero-stat .label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  letter-spacing: .02em;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  letter-spacing: .15em;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(rgba(201,168,76,.6), transparent);
}

/* ── マスコット ── */
.hero-mascot {
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: 3;
  width: clamp(160px, 18vw, 280px);
  pointer-events: none;
  animation: mascotIn 1s .6s ease both;
}
.hero-mascot img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
}
@keyframes mascotIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* マスコット紹介セクション */
.mascot-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.mascot-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1530028828-25e4d9e4ef25?auto=format&fit=crop&w=1920&q=80') center/cover;
  opacity: .05;
}
.mascot-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.mascot-img-wrap {
  flex-shrink: 0;
  width: 220px;
  filter: drop-shadow(0 8px 32px rgba(201,168,76,.3));
}
.mascot-img-wrap img { width: 100%; height: auto; }
.mascot-body .section-label { font-size: .78rem; }
.mascot-body h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.mascot-body h2 span { color: var(--gold); }
.mascot-body p { font-family: 'Noto Sans JP', sans-serif; color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.8; margin-bottom: 20px; }
.mascot-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  padding: 8px 20px;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-mascot { width: clamp(120px, 20vw, 200px); right: 2%; }
}
@media (max-width: 768px) {
  .hero-mascot { display: none; }
  .mascot-inner { flex-direction: column; text-align: center; }
  .mascot-img-wrap { width: 160px; }
}

/* ==========================================
   ANNOUNCEMENT BAND
   ========================================== */
.announce-band {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  animation: shimmerBg 4s linear infinite;
  padding: 12px 20px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
@keyframes shimmerBg {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}
.announce-band span { margin: 0 12px; }

/* ==========================================
   FEATURE SECTION — with image bg
   ========================================== */
.features-section-wrap {
  position: relative;
  overflow: hidden;
}
.features-section-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?auto=format&fit=crop&w=1920&q=80') center/cover;
  opacity: .04;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform .4s ease;
  transform-origin: left;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  box-shadow: 0 6px 20px rgba(13,31,60,.2);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 28px rgba(13,31,60,.3);
}
.feature-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; font-family: 'Noto Serif JP', serif; }
.feature-card p { font-family: 'Noto Sans JP', sans-serif; font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ==========================================
   GUARANTEE SECTION — Parallax BG
   ========================================== */
.guarantee-section {
  background-image:
    linear-gradient(135deg, rgba(13,31,60,.93) 0%, rgba(26,51,98,.88) 100%),
    url('https://images.unsplash.com/photo-1587174486073-ae5e5cff23aa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover, cover;
  background-position: center, center;
  background-attachment: scroll, fixed;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .guarantee-section { background-attachment: scroll, scroll; }
}
.guarantee-section::before {
  content: '100';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20rem;
  font-weight: 900;
  color: rgba(255,255,255,.02);
  line-height: 1;
  pointer-events: none;
  font-family: 'Cormorant Garamond', serif;
}
.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.guarantee-badge-wrap {
  display: flex;
  justify-content: center;
}
.guarantee-seal {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 12px rgba(201,168,76,.2),
    0 0 0 24px rgba(201,168,76,.08),
    0 16px 48px rgba(201,168,76,.25);
  text-align: center;
  padding: 20px;
  animation: pulse 3s ease-in-out infinite;
}
.guarantee-seal .seal-top { font-family: 'Noto Sans JP', sans-serif; font-size: .75rem; font-weight: 700; color: var(--navy); letter-spacing: .1em; }
.guarantee-seal .seal-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: var(--navy); line-height: 1; }
.guarantee-seal .seal-unit { font-family: 'Noto Sans JP', sans-serif; font-size: .9rem; font-weight: 700; color: var(--navy); }
.guarantee-seal .seal-bottom { font-family: 'Noto Sans JP', sans-serif; font-size: .7rem; font-weight: 700; color: var(--navy); margin-top: 4px; }
.guarantee-text .section-label { font-size: .8rem; }
.guarantee-text h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--white); margin-bottom: 16px; }
.guarantee-text h2 span { color: var(--gold); }
.guarantee-desc { font-family: 'Noto Sans JP', sans-serif; color: rgba(255,255,255,.8); margin-bottom: 24px; font-size: .95rem; }
.guarantee-list { margin-bottom: 32px; }
.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  color: rgba(255,255,255,.85);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .92rem;
}
.guarantee-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee-price-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.guarantee-price-box .price-label { font-family: 'Noto Sans JP', sans-serif; font-size: .8rem; color: rgba(255,255,255,.6); }
.guarantee-price-box .price-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.guarantee-price-box .price-unit { font-family: 'Noto Sans JP', sans-serif; font-size: .9rem; color: rgba(255,255,255,.7); }

/* ==========================================
   PRICING — Golf BG
   ========================================== */
.pricing-section-wrap {
  background-image:
    linear-gradient(to bottom, rgba(244,246,250,0) 0%, rgba(244,246,250,.97) 15%, rgba(244,246,250,.97) 85%, rgba(244,246,250,0) 100%),
    url('https://images.unsplash.com/photo-1593111774240-d529f12cf4bb?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 16px 60px rgba(13,31,60,.2); }
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  color: var(--white);
  box-shadow: 0 8px 40px rgba(201,168,76,.2);
}
.price-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 16px; right: -24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-size: .65rem;
  font-weight: 800;
  padding: 4px 32px;
  transform: rotate(35deg);
  font-family: 'Montserrat', sans-serif;
}
.price-card .plan-icon { font-size: 2rem; margin-bottom: 12px; }
.price-card .plan-name { font-family: 'Noto Sans JP', sans-serif; font-size: .9rem; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.price-card.featured .plan-name { color: var(--gold); }
.price-card .plan-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.price-card.featured .plan-price { color: var(--gold); }
.price-card .plan-unit { font-family: 'Noto Sans JP', sans-serif; font-size: .8rem; color: var(--text-muted); margin-bottom: 12px; }
.price-card.featured .plan-unit { color: rgba(255,255,255,.6); }
.price-card .plan-desc { font-family: 'Noto Sans JP', sans-serif; font-size: .82rem; color: var(--text-muted); line-height: 1.6; }
.price-card.featured .plan-desc { color: rgba(255,255,255,.75); }
.campaign-note {
  background: linear-gradient(135deg, #fff8e7, #fff3cc);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-top: 32px;
}
.campaign-note .campaign-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.campaign-note .campaign-desc { font-family: 'Noto Sans JP', sans-serif; font-size: .88rem; color: var(--text-muted); }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--gold);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,168,76,.25);
}
.testimonial-meta .name { font-weight: 700; font-size: .95rem; color: var(--navy); }
.testimonial-meta .info { font-family: 'Noto Sans JP', sans-serif; font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.testimonial-result {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-result .arrow { color: var(--gold); font-size: 1.1rem; }
.testimonial-result .before { font-family: 'Noto Sans JP', sans-serif; font-size: .8rem; color: rgba(255,255,255,.6); }
.testimonial-result .after { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.testimonial-result .months { font-family: 'Noto Sans JP', sans-serif; font-size: .75rem; color: rgba(255,255,255,.6); margin-left: auto; }
.testimonial-text { font-family: 'Noto Sans JP', sans-serif; font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.stars { color: var(--gold); font-size: .9rem; margin-bottom: 6px; }

/* ==========================================
   CTA SECTION — Rich BG
   ========================================== */
.cta-section {
  background-image:
    linear-gradient(135deg, rgba(8,18,38,.92) 0%, rgba(13,31,60,.88) 100%),
    url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-section { background-attachment: scroll; }
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.08) 0%, transparent 70%);
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  font-family: 'Noto Sans JP', sans-serif;
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 40px;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ==========================================
   ACCESS / MAP
   ========================================== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.access-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray);
}
.access-item:last-child { border-bottom: none; }
.access-item-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.access-item-body dt { font-family: 'Noto Sans JP', sans-serif; font-size: .8rem; color: var(--text-muted); font-weight: 500; margin-bottom: 2px; }
.access-item-body dd { font-family: 'Noto Sans JP', sans-serif; font-size: .95rem; font-weight: 600; color: var(--navy); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ==========================================
   BLOG
   ========================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card:hover .blog-image img { transform: scale(1.07); }
.blog-image { height: 200px; overflow: hidden; position: relative; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-body { padding: 20px; }
.blog-cats { display: flex; gap: 6px; margin-bottom: 10px; }
.blog-cat { font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; background: var(--off-white); color: var(--navy); font-family: 'Noto Sans JP', sans-serif; }
.blog-cat.beginner { background: #e8f5e9; color: #2e7d32; }
.blog-cat.intermediate { background: #e3f2fd; color: #1565c0; }
.blog-card h3 { font-family: 'Noto Serif JP', serif; font-size: 1rem; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-family: 'Noto Sans JP', sans-serif; font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-top: 14px; font-size: .78rem; color: var(--text-muted); font-family: 'Noto Sans JP', sans-serif; }

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: linear-gradient(135deg, #060f1e 0%, var(--navy) 100%);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.footer-brand .logo-sub { font-family: 'Montserrat', sans-serif; font-size: .7rem; color: rgba(255,255,255,.4); letter-spacing: .12em; }
.footer-brand p { font-family: 'Noto Sans JP', sans-serif; font-size: .85rem; margin-top: 14px; line-height: 1.7; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 800; color: var(--gold); margin-bottom: 14px; letter-spacing: .1em; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-family: 'Noto Sans JP', sans-serif; font-size: .85rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col address { font-style: normal; font-family: 'Noto Sans JP', sans-serif; font-size: .85rem; line-height: 1.9; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ==========================================
   FIXED CTA BAR (Mobile)
   ========================================== */
.cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(13,31,60,.97);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
  border-top: 1px solid rgba(201,168,76,.2);
}
.cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.cta-bar .cta-line { background: #06C755; }
.cta-bar .cta-tel { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--navy); }

/* ==========================================
   PAGE HERO (Inner Pages)
   ========================================== */
.page-hero {
  background: linear-gradient(135deg, rgba(8,18,38,.9) 0%, rgba(13,31,60,.85) 100%);
  padding: 120px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1535131749006-b7f58c99034b?auto=format&fit=crop&w=1920&q=80') center/cover;
  opacity: .15;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero .section-label { margin-bottom: 8px; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; text-shadow: 0 4px 16px rgba(0,0,0,.4); }
.page-hero p { font-family: 'Noto Sans JP', sans-serif; color: rgba(255,255,255,.7); margin-top: 12px; font-size: 1rem; position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: 16px;
  position: relative;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ==========================================
   SCROLL TOP BUTTON
   ========================================== */
#scrollTop {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,168,76,.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,76,.5); }

/* ==========================================
   UTILITY / ANIMATIONS
   ========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Staggered delays */
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.zoom-in {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .8s ease, transform .8s ease;
}
.zoom-in.visible { opacity: 1; transform: scale(1); }

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 12px auto 0;
  border-radius: 2px;
}
.divider.left { margin-left: 0; }

/* ==========================================
   KEYFRAMES
   ========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(201,168,76,.2), 0 0 0 24px rgba(201,168,76,.08), 0 16px 48px rgba(201,168,76,.2); }
  50%       { box-shadow: 0 0 0 18px rgba(201,168,76,.15), 0 0 0 36px rgba(201,168,76,.04), 0 16px 64px rgba(201,168,76,.3); }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .guarantee-inner { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-badge-wrap { order: -1; }
  .access-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cta-bar { display: flex; }
  body { padding-bottom: 64px; }
  .section-pad { padding: 56px 0; }
  .hero-stats { gap: 24px; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #scrollTop { bottom: 76px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .price-grid { grid-template-columns: 1fr; }
  .guarantee-seal { width: 180px; height: 180px; }
  .guarantee-seal .seal-num { font-size: 2.8rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================
   RESERVE PAGE
   ========================================== */
.reserve-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.reserve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}
.reserve-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.reserve-card-icon { font-size: 2.8rem; margin-bottom: 16px; }
.reserve-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.reserve-card p { font-family: 'Noto Sans JP', sans-serif; font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; }

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-family: 'Noto Sans JP', sans-serif; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray);
  border-radius: 10px;
  font-size: .95rem;
  font-family: 'Noto Sans JP', inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #66bb6a;
  border-radius: 10px;
  padding: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #2e7d32;
  text-align: center;
  margin-top: 16px;
}

/* plan detail (price.html) */
.plan-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  transition: var(--transition);
  border: 2px solid transparent;
}
.plan-detail-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.plan-detail-card.highlight { border-color: var(--gold); }
.plan-detail-head {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.plan-detail-card.highlight .plan-detail-head {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.plan-detail-icon { font-size: 2.4rem; }
.plan-detail-head-text .plan-type { font-family: 'Noto Sans JP', sans-serif; font-size: .8rem; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: .1em; }
.plan-detail-card.highlight .plan-detail-head-text .plan-type { color: rgba(13,31,60,.7); }
.plan-detail-head-text h3 { font-size: 1.4rem; color: var(--white); font-weight: 700; }
.plan-detail-card.highlight .plan-detail-head-text h3 { color: var(--navy); }
.plan-detail-price { margin-left: auto; text-align: right; }
.plan-detail-price .amount { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold); }
.plan-detail-card.highlight .plan-detail-price .amount { color: var(--navy); }
.plan-detail-price .unit { font-family: 'Noto Sans JP', sans-serif; font-size: .85rem; color: rgba(255,255,255,.6); }
.plan-detail-card.highlight .plan-detail-price .unit { color: rgba(13,31,60,.7); }
.plan-detail-body { padding: 28px 32px; }
.plan-detail-body p { font-family: 'Noto Sans JP', sans-serif; color: var(--text-muted); margin-bottom: 20px; line-height: 1.75; }
.plan-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .88rem;
  color: var(--navy);
}
.plan-feature-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* voice page specifics */
.voice-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  transition: var(--transition);
  border-left: 5px solid var(--gold);
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.voice-card-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.voice-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.voice-meta { flex: 1; }
.voice-meta .v-name { font-family: 'Noto Serif JP', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.voice-meta .v-info { font-family: 'Noto Sans JP', sans-serif; font-size: .82rem; color: var(--text-muted); margin: 2px 0 6px; }
.voice-meta .stars { color: var(--gold); }
.voice-plan-badge { font-family: 'Noto Sans JP', sans-serif; font-size: .75rem; font-weight: 700; padding: 3px 12px; border-radius: 50px; background: var(--off-white); color: var(--navy); display: inline-block; margin-top: 4px; }
.before-after {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.before-after .ba-before, .before-after .ba-after { text-align: center; }
.before-after .ba-label { font-family: 'Noto Sans JP', sans-serif; font-size: .7rem; color: rgba(255,255,255,.5); display: block; margin-bottom: 2px; letter-spacing: .05em; }
.before-after .ba-score { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.before-after .ba-before .ba-score { color: rgba(255,255,255,.6); }
.before-after .ba-after .ba-score { color: var(--gold); }
.before-after .ba-arrow { font-size: 1.5rem; color: var(--gold); }
.before-after .ba-result { margin-left: auto; text-align: center; }
.before-after .ba-result .ba-months { font-family: 'Noto Sans JP', sans-serif; font-size: .75rem; color: rgba(255,255,255,.5); }
.before-after .ba-result .ba-change { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: #4cff8f; }
.voice-quote {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .92rem;
  color: var(--text-dark);
  line-height: 1.85;
  position: relative;
  padding-left: 20px;
}
.voice-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}
.voice-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.voice-tag { font-family: 'Noto Sans JP', sans-serif; font-size: .75rem; padding: 3px 12px; border-radius: 50px; background: var(--off-white); color: var(--text-muted); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.stats-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1530028828-25e4d9e4ef25?auto=format&fit=crop&w=1920&q=80') center/cover;
  opacity: .04;
}
.stats-row .stat { text-align: center; position: relative; }
.stats-row .stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stats-row .stat .label { font-family: 'Noto Sans JP', sans-serif; font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 6px; }
@media(max-width:768px){
  .stats-row { grid-template-columns: 1fr 1fr; }
  .voice-card-header { flex-direction: column; align-items: center; text-align: center; }
  .before-after { justify-content: center; }
  .before-after .ba-result { margin-left: 0; }
}
