/* CSS Document */

:root {
  --gold: #A9956D;
  --gold-light: #C2B08A;
  --gold-pale: #F0EBE0;
  --crimson: #B8A6BC;
  --crimson-light: #C9BACC;
  --cream: #FAF9F5;
  --cream-dark: #EFEDF2;
  --charcoal: #30302E;
  --charcoal-light: #4A4A47;
  --text: #333333;
  --text-light: #6E6E6E;
  --white: #FFFFFF;
  --pink: #F395A6;
  --teal: #9BC0C5;
  --font-serif: 'Noto Serif JP', serif;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --darkbrown: #70644a;
}

/* ===== PREMIUM ANIMATIONS ===== */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes badgeGlow {
  0%, 100% { border-color: rgba(212,168,67,0.4); }
  50% { border-color: rgba(212,168,67,0.7); }
}
@keyframes floatParticle1 { 0%{transform:translateY(0) rotate(0);opacity:0}10%{opacity:0.7}90%{opacity:0.3}100%{transform:translateY(-90vh) rotate(360deg);opacity:0} }
@keyframes floatParticle2 { 0%{transform:translateY(0) rotate(0);opacity:0}15%{opacity:0.5}85%{opacity:0.2}100%{transform:translateY(-85vh) rotate(-300deg);opacity:0} }
@keyframes ribbonWave { 0%,100%{transform:rotate(-45deg) translateX(0)}50%{transform:rotate(-45deg) translateX(2px)} }

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--gold-light)); border-radius: 3px; }

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

/* ===== UTILITY ===== */
.container { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; position: relative; }
.section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.08em;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.8;
}
.section-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 48px;
  letter-spacing: 0.06em;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto 28px;
  position: relative;
  opacity: 0.5;
}
.divider::after {
  display: none;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: block;
  max-width: 400px;
  margin: 0 auto;
  padding: 18px 32px;
  background: linear-gradient(135deg, #D4849A 0%, #E8A0B2 100%);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(212,132,154,0.25);
}
.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.cta-btn:hover::before { left: 100%; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,132,154,0.3); }
.cta-btn small { display: block; font-size: 0.75rem; font-weight: 300; margin-top: 4px; opacity: 0.85; }

.cta-sub {
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.cta-sub a { color: #C4708A; text-decoration: none; border-bottom: 1px solid #C4708A; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.header-logo {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.1em;
}
.header-logo span { display: none; }
.header-cta {
  padding: 8px 20px;
  background: var(--charcoal);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  border-radius: 3px;
  letter-spacing: 0.08em;
  transition: all 0.3s;
}
.header-cta:hover { opacity: 0.85; }

/* ===== SEC1: HERO ===== */
.hero {
  margin-top: 56px;
  position: relative;
  background: var(--charcoal);
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* ▼ ファーストビュー画像：下記URLを差し替えてください */
  background: url('../images/fv_main.jpg') center center / cover no-repeat;
  opacity: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,40,37,0.82) 0%, rgba(61,46,46,0.6) 50%, rgba(44,40,37,0.78) 100%);
}
/* Vignette */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(44,40,37,0.45) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184,134,11,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(139,34,82,0.07) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(184,134,11,0.05) 0%, transparent 40%);
}
/* Floating gold particles */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(2px 2px at 8% 25%, rgba(212,168,67,0.7) 50%, transparent 50%),
    radial-gradient(2px 2px at 22% 65%, rgba(212,168,67,0.5) 50%, transparent 50%),
    radial-gradient(3px 3px at 38% 12%, rgba(212,168,67,0.6) 50%, transparent 50%),
    radial-gradient(2px 2px at 52% 78%, rgba(212,168,67,0.4) 50%, transparent 50%),
    radial-gradient(2px 2px at 68% 32%, rgba(212,168,67,0.7) 50%, transparent 50%),
    radial-gradient(3px 3px at 82% 58%, rgba(212,168,67,0.5) 50%, transparent 50%),
    radial-gradient(2px 2px at 92% 15%, rgba(212,168,67,0.6) 50%, transparent 50%);
  animation: floatParticle1 20s linear infinite;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 640px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  font-family: var(--font-serif);
  animation: badgeGlow 3s ease-in-out infinite;
  background: rgba(184,134,11,0.04);
  backdrop-filter: blur(4px);
}
.hero-catch {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.13em;
  line-height: 1.7;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3), 0 0 60px rgba(184,134,11,0.08);
}
.hero-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 2;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.hero-cta {
  display: inline-block;
  padding: 16px 48px;
  background: rgba(255,255,255,0.95);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border-radius: 3px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  font-family: var(--font-serif);
}
.hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.hero-cta:hover::before { left: 100%; }
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.hero-cta small { display: block; font-size: 0.65rem; opacity: 0.6; margin-top: 6px; letter-spacing: 0.04em; font-family: var(--font-sans); }

/* Hero banner mode */
.hero--banner {
  margin-top: 40px;
  min-height: auto;
  background: var(--cream);
  display: block;
  overflow: hidden;
}
.hero--banner a { display: block; }
.hero-banner-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Stats bar */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.5;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 800px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 24px 8px;
  border-right: 1px solid var(--cream-dark);
  transition: background 0.3s;
}
.stat-item:hover { background: var(--cream); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #C4708A;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* ===== SEC2: CAMPAIGN ===== */
.campaign {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.campaign::after {
  content: '\6C38';
  position: absolute;
  right: -30px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 14rem;
  color: rgba(184,134,11,0.015);
  font-weight: 700;
  pointer-events: none;
}
.campaign-main {
  margin-bottom: 32px;
}
/*.campaign-main {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #FDFAF2 100%);
  border: 1px solid var(--gold-light);
  border-radius: 8px;
  padding: 44px 28px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.campaign-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184,134,11,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.campaign-main::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -15%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(139,34,82,0.05) 0%, transparent 70%);
  border-radius: 50%;
}*/
.campaign-label {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.campaign-amount {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  color: #C4708A;
  letter-spacing: 0.02em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  /* static — no pulse */
}
.campaign-amount span { font-size: 1.4rem; }
.campaign-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
	
/* Gift section */
.gift-box {
/*  background: var(--cream);*/
	width: 100%;
  border-radius: 8px;
  border: 1px solid var(--darkbrown);
  margin-bottom: 24px;	
}
.gift-box-includes {
  background: url("../images/gift_bg.jpg");
	background-size: cover;
  padding: 36px 24px;
  text-align: center;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}
.gift-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.gift-tximg {
	max-width: 627px;
	margin: 0 auto 36px;
}
.gift-tximg img {
	width: 100%;
	height: auto;
}
.gift-highlight {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #C4708A;
  margin-bottom: 20px;
}
.gift-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
}
.gift-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 20px 8px;
  text-align: center;
  transition: all 0.3s ease;
}
.gift-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-color: var(--gold-light);
}
.gift-card-icon { font-size: 0.7rem; margin-bottom: 8px; color: var(--gold); font-family: var(--font-serif); letter-spacing: 0.08em; }
.gift-card-name { font-size: 0.75rem; color: var(--text); font-weight: 500; }
.gift-card-amount { font-size: 0.72rem; color: #C4708A; margin-top: 4px; font-weight: 500; }

.gift-friend {
  background: var(--cream);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.gift-friend-icon { font-size: 1.4rem; }
.gift-friend-text { font-size: 0.85rem; color: var(--text); }
.gift-friend-text strong { color: var(--charcoal); }

/* ===== SEC3: WHY NAGAMI ===== */
.why { background: var(--cream); }
.why-cards { display: flex; flex-direction: column; gap: 20px; }
.why-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid var(--cream-dark);
  border-left: 2px solid var(--gold);
  transition: all 0.3s ease;
  box-shadow: none;
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  border-left-color: var(--gold);
}
.why-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.why-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-other, .why-nagami {
  font-size: 0.82rem;
  line-height: 1.7;
  padding: 14px;
  border-radius: 8px;
  transition: transform 0.3s;
}
.why-other {
  background: #F5F3F0;
  color: var(--text-light);
}
.why-other::before {
  content: '一般的に';
  display: block;
  font-size: 0.7rem;
  color: #AAA5A0;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.why-nagami {
  background: linear-gradient(135deg, var(--gold-pale) 0%, #FFF9ED 100%);
  color: var(--charcoal);
  border: 1px solid rgba(184,134,11,0.15);
}
.why-nagami::before {
  content: 'きもの永見なら';
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}

/* ===== SEC4: COLLECTION SLIDER ===== */
.collection { background: var(--white); }
.slider-wrap {
  overflow: hidden;
  padding: 0 0 8px;
}
.slider-row {
  overflow: hidden;
  margin-bottom: 12px;
  cursor: grab;
  position: relative;
}
.slider-row:last-child { margin-bottom: 0; }
.slider-row.grabbing { cursor: grabbing; }
.slider-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 0 20px;
}
.slider-row.grabbing .slider-track { transition: none; }
.slider-slide {
  flex: 0 0 200px;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-dark);
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.slider-slide:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 2;
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.slider-slide:hover img { transform: scale(1.05); }
.slider-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--text-light);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(184,134,11,0.2);
  font-size: 1.2rem;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s;
}
.slider-arrow:hover { background: var(--white); box-shadow: 0 6px 20px rgba(0,0,0,0.12); border-color: var(--gold); color: #C4708A; }
.slider-prev { left: 6px; }
.slider-next { right: 6px; }

@media (max-width: 600px) {
  .slider-slide { flex: 0 0 150px; height: 225px; }
  .slider-arrow { width: 28px; height: 28px; font-size: 1rem; }
}
.catalog-link {
  display: block;
  text-align: center;
  padding: 14px 32px;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border-radius: 4px;
  max-width: 320px;
  margin: 0 auto 24px;
  transition: all 0.2s;
}
.catalog-link:hover { background: var(--charcoal); color: var(--white); }

/* ===== SEC5: STUDIO (hows photo studio tone) ===== */
.studio {
  background: #F8F7F4;
  color: #4A4A47;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.studio::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 40%, rgba(177,185,187,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(177,185,187,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.studio-mainpic {
	margin-bottom: 48px;
}
.studio-mainpic img {
	border-radius: 8px;
}
.studio .section-title { color: #666666; font-weight: 400; letter-spacing: 0.18em; }
.studio .section-subtitle { color: #999999; letter-spacing: 0.08em; }
.studio .divider { background: linear-gradient(90deg, transparent, #B1B9BB, transparent); }
.studio .divider::after { color: #B1B9BB; background: #F8F7F4; }
.studio .section::before { display: none; }
.studio-intro {
  text-align: center;
  font-size: 0.9rem;
  color: #888885;
  margin-bottom: 48px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  font-family: var(--font-serif);
}
.studio-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.studio-feature {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid #E2E0DA;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.7);
}
.studio-feature:hover {
  border-color: #B1B9BB;
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.studio-feature-icon { font-size: 0.65rem; margin-bottom: 10px; color: #999; font-family: var(--font-display); letter-spacing: 0.15em; text-transform: uppercase; }
.studio-feature-text { font-size: 0.78rem; color: #777774; line-height: 1.7; letter-spacing: 0.02em; }

.studio-quality {
  background: rgba(255,255,255,0.6);
  border: 1px solid #E2E0DA;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 40px;
}
.studio-quality-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #666666;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.studio-quality-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.studio-quality-list li {
  font-size: 0.82rem;
  color: #777774;
  padding-left: 20px;
  position: relative;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.studio-quality-list li::before {
  content: '\25C6';
  position: absolute;
  left: 0;
  color: #B1B9BB;
  font-size: 0.5rem;
  top: 5px;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-align: center;
  color: #666666;
  margin-bottom: 24px;
  letter-spacing: 0.12em;
  font-weight: 400;
}
.studio .cta-btn { background: linear-gradient(135deg, #B8A6BC 0%, #C9BACC 100%); box-shadow: 0 4px 16px rgba(184,166,188,0.25); }
.studio .cta-btn:hover { box-shadow: 0 8px 24px rgba(184,166,188,0.35); }
.studio .slider-arrow { background: rgba(255,255,255,0.85); border-color: #E2E0DA; color: #999; }
.studio .slider-arrow:hover { background: #FFFFFF; box-shadow: 0 4px 12px rgba(0,0,0,0.08); color: #666; }
.studio .slider-img-placeholder { color: #CCCCCC; }
.studio .slider-slide { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }

/* ===== SEC6: PLANS ===== */
.plans { background: var(--cream); }
.plan-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.plan-card {
  position: relative;
  transition: all 0.3s ease;
}
.plan-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.plan-card.popular { border-color: var(--pink); border-width: 2px; box-shadow: 0 4px 16px rgba(243,149,166,0.12); }
.plan-popular-badge {
  position: absolute;
	width: 110px;
	height: 110px;
  top: -20px;
  right: -20px;
  padding: 0;
}
@media screen and (max-width: 600px) {
	.plan-popular-badge {
		width: 55px;
		height: 55px;
		top: -10px;
		right: -10px;
	}
}
.plan-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.plan-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: #C4708A;
  margin-bottom: 12px;
}
.plan-price span { font-size: 0.85rem; font-weight: 400; }
.plan-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 16px;
  background-image: -moz-linear-gradient( 135deg, rgb(252,241,225) 0%, rgb(249,212,200) 100%);
  background-image: -webkit-linear-gradient( 135deg, rgb(252,241,225) 0%, rgb(249,212,200) 100%);
  background-image: -ms-linear-gradient( 135deg, rgb(252,241,225) 0%, rgb(249,212,200) 100%);
  position: absolute;
	padding: 32px 28px;
}

.plan-includes li {
  font-size: 1rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.plan-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
 background-color: rgba(255, 255, 255, 0.651);
	padding: 3px;
}

.plan-campaign-remind {
  margin-bottom: 30px;
}

/* ===== SEC7: VOICE ===== */
.voice { background: var(--white); }
.voice-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.voice-stat {
  text-align: center;
  padding: 24px;
  background: var(--cream);
  border-radius: 12px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.voice-stat:hover {
  border-color: var(--gold-light);
  background: var(--gold-pale);
}
.voice-stat-number {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: #C4708A;
}
.voice-stat-label {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 4px;
}
.voice-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.voice-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  border: 1px solid var(--cream-dark);
}
.voice-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.voice-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.voice-card-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}
.voice-card-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.voice-card-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}
.voice-card-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-pale);
  font-size: 0.7rem;
  color: var(--gold);
  border-radius: 3px;
  letter-spacing: 0.04em;
}

/* ===== SEC8: PARENTS ===== */
.parents { background: var(--cream); }
.parents-message {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 36px;
}
.parents-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.parents-point {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--cream-dark);
}
.parents-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border-color: var(--gold-light);
}
.parents-point-icon { font-size: 0.6rem; margin-bottom: 8px; color: var(--gold); font-family: var(--font-display); letter-spacing: 0.12em; text-transform: uppercase; }
.parents-point-title {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.parents-point-desc {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ===== SEC9: FLOW ===== */
.flow { background: var(--white); }
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.flow-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 56px;
  bottom: -4px;
  width: 1px;
  background: var(--cream-dark);
}
.flow-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: all 0.3s;
}
.flow-step:hover .flow-num {
  background: #C4708A;
}
.flow-content {}
.flow-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.flow-desc {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== SEC10: ACCESS + FORM ===== */
/* VENUE INFO (compact, after hero) */
.venue-info {
  background: var(--white);
  padding: 56px 0 48px;
  text-align: center;
  background-image: url("../images/bg01.jpg");
	background-position: bottom;
}
.venue-info .section-title { margin-bottom: 8px; }
.venue-info-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px;
}
.venue-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.venue-floor {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.venue-address {
  font-size: 0.82rem;
  color: #C4708A;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.venue-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.venue-badge {
  font-size: 0.75rem;
  padding: 8px 18px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.venue-badge--pink {
  background: rgba(196,112,138,0.12);
  color: #C4708A;
}
.venue-badge--gray {
  background: var(--cream);
  color: var(--text-light);
  border: 1px solid var(--cream-dark);
}
.venue-date {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #C4708A;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.venue-date strong {
  font-size: 1.6rem;
  font-weight: 600;
}
.venue-scroll-link {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-light);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 8px 24px;
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.04em;
}
.venue-scroll-link:hover {
  background: var(--cream);
  border-color: var(--gold-light);
}
.venue-scroll-link::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.access { background: var(--cream); }
.access-info {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 24px;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.access-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.access-detail {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.9;
}
.access-map {
  width: 100%;
  height: 240px;
  background: var(--cream-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 0.85rem;
}
.access-times {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.access-time {
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 4px;
}
.access-time strong { color: var(--text); }

/* Form */
.form-box {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 24px;
  border: 1px solid var(--cream-dark);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.form-subtitle {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  color: var(--charcoal);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-label .required {
  font-size: 0.65rem;
  color: #C4708A;
  margin-left: 4px;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  background: var(--cream);
}
.form-input:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: var(--cream);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237A7370' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-submit {
  width: 100%;
  padding: 18px;
  background: #D4849A;
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}
.form-submit:hover { background: #E8A0B2; }




/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--charcoal), #1A1715);
  padding: 48px 20px;
  text-align: center;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.3;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.footer-since {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
}

/* ===== FIXED BOTTOM BAR (MOBILE) ===== */
.fixed-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
}
.fixed-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  text-decoration: none;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.fixed-bar a:nth-child(1) { background: var(--charcoal); color: var(--white); }
.fixed-bar a:nth-child(2) { background: transparent; color: var(--charcoal); }
.fixed-bar a:nth-child(3) { background: transparent; color: var(--text-light); }
.fixed-bar a:nth-child(2):hover,
.fixed-bar a:nth-child(3):hover { background: var(--cream); }
.fixed-bar-icon { font-size: 1rem; margin-bottom: 3px; }

/* Bottom padding for fixed bar */
body { padding-bottom: 68px; }



/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero-title { font-size: 1.55rem; }
  .campaign-amount { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: repeat(5, 1fr); }
  .stat-number { font-size: 1rem; }
  .stat-label { font-size: 0.58rem; }
  .why-compare { grid-template-columns: 1fr; }
  .studio-features { grid-template-columns: 1fr; }
  .voice-stats { grid-template-columns: repeat(3, 1fr); }
  .voice-stat-number { font-size: 1.2rem; }
  .parents-points { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .access-times { grid-template-columns: 1fr; }
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Staggered animation for cards */
  .why-card.fade-in:nth-child(1) { transition-delay: 0s; }
  .why-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
  .why-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
  .why-card.fade-in:nth-child(4) { transition-delay: 0.3s; }
  .why-card.fade-in:nth-child(5) { transition-delay: 0.4s; }
  .voice-card.fade-in:nth-child(1) { transition-delay: 0s; }
  .voice-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
  .voice-card.fade-in:nth-child(3) { transition-delay: 0.15s; }
  .voice-card.fade-in:nth-child(4) { transition-delay: 0.2s; }
  .flow-step.fade-in:nth-child(1) { transition-delay: 0s; }
  .flow-step.fade-in:nth-child(2) { transition-delay: 0.08s; }
  .flow-step.fade-in:nth-child(3) { transition-delay: 0.16s; }
  .flow-step.fade-in:nth-child(4) { transition-delay: 0.24s; }
  .flow-step.fade-in:nth-child(5) { transition-delay: 0.32s; }
  .flow-step.fade-in:nth-child(6) { transition-delay: 0.4s; }
}

/* Divider diamond background fix for different sections */
.campaign .divider::after,
.collection .divider::after,
.voice .divider::after,
.flow .divider::after { background: var(--white); }
.studio .divider::after { background: transparent; color: var(--gold-light); }

/* ===== SELECTION COLOR ===== */
::selection {
  background: rgba(184,134,11,0.2);
  color: var(--charcoal);
}