@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* ===== VARIABLES ===== */
:root {
  --pink-deep:    #9a3055;
  --pink-main:    #b05070;
  --pink-mid:     #c87090;
  --pink-light:   #f2d4df;
  --pink-pale:    #fdf0f5;
  --pink-softest: #fdf8fa;
  --dark:         #2c1a22;
  --dark-mid:     #5a3040;
  --muted:        #8a6070;
  --muted-light:  #c0a0b0;
  --white:        #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Noto Sans JP', sans-serif;
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--pink-light);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  justify-content: space-between;
}
.header-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--pink-main);
}
.header-logo span { color: var(--dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--dark-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--pink-main); }
.nav-links a.active { color: var(--pink-main); }
.nav-cta {
  background: var(--pink-main);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--pink-deep) !important; color: var(--white) !important; }

/* ===== HAMBURGER (mobile) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--pink-main);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.hero-left {
  padding: 5rem 3rem 5rem 5rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--pink-main);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 0.5px;
  background: var(--pink-main);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--pink-main);
  display: block;
}
.hero-desc {
  font-size: 15px;
  color: var(--dark-mid);
  line-height: 2;
  margin-bottom: 2.5rem;
  max-width: 360px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--pink-main);
  color: var(--white);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  display: inline-block;
  transition: background var(--transition);
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--pink-deep); color: var(--white); }
.btn-outline {
  border: 0.5px solid var(--pink-main);
  color: var(--pink-main);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  display: inline-block;
  transition: all var(--transition);
  font-family: var(--sans);
}
.btn-outline:hover { background: var(--pink-pale); }

.hero-right {
  height: 44vh;
  max-height: 44vh;
  position: relative;
  overflow: hidden;
}
.hero-note-1 {
  position: absolute;
  top: 8%;
  left: 12%;
  font-size: 100px;
  color: rgba(176,80,112,0.12);
  font-family: var(--serif);
  line-height: 1;
  pointer-events: none;
}
.hero-note-2 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  font-size: 60px;
  color: rgba(176,80,112,0.15);
  font-family: var(--serif);
  line-height: 1;
  pointer-events: none;
}
.hero-note-3 {
  position: absolute;
  top: 40%;
  right: 20%;
  font-size: 40px;
  color: rgba(176,80,112,0.1);
  font-family: var(--serif);
  line-height: 1;
  pointer-events: none;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-img-placeholder {
  width: 75%;
  max-width: 320px;
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(154,48,85,0.2) 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-main);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.hero-illustration {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(160deg, var(--pink-pale) 0%, #fde0ec 100%);
  padding: 5rem 5rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: attr(data-note);
  position: absolute;
  right: 5%;
  bottom: -10%;
  font-size: 160px;
  color: rgba(176,80,112,0.07);
  font-family: var(--serif);
  line-height: 1;
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--pink-main);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--pink-main);
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
}
.page-hero-title em { font-style: italic; color: var(--pink-main); }

/* ===== SECTION ===== */
.section { padding: 5rem 5rem; }
.section-alt { background: var(--pink-softest); }
.section-dark { background: var(--dark); }

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--pink-main);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 0.5px;
  background: var(--pink-main);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.section-title em { font-style: italic; color: var(--pink-main); }
.section-title-white { color: var(--white); }
.section-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 480px;
}
.section-subtitle-white { color: var(--muted-light); }

/* ===== DIVIDER ===== */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 5rem;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--pink-light);
}
.ornament-divider-sym {
  color: var(--pink-mid);
  font-size: 16px;
  font-family: var(--serif);
}

/* ===== FEATURE CARDS ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.feat-card {
  background: var(--white);
  border: 0.5px solid var(--pink-light);
  border-radius: 4px;
  padding: 1.75rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.feat-card:hover {
  border-color: var(--pink-mid);
  transform: translateY(-2px);
}
.feat-note {
  font-size: 22px;
  color: var(--pink-light);
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  line-height: 1;
}
.feat-title {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.feat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}

/* ===== MERIT LIST ===== */
.merit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.merit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.merit-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--pink-light);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.merit-body {}
.merit-title {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.merit-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}

/* ===== PRICE ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.price-card {
  border: 0.5px solid var(--pink-light);
  border-radius: 4px;
  padding: 2rem 2rem;
  background: var(--white);
  transition: border-color var(--transition);
}
.price-card:hover { border-color: var(--pink-mid); }
.price-card.featured {
  border-color: var(--pink-main);
  border-width: 1px;
}
.price-badge {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.price-badge.featured-badge {
  background: var(--pink-main);
  color: var(--white);
}
.price-type {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.price-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 1rem;
}
.price-amount {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--pink-main);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price-unit {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1rem;
}
.price-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  border-top: 0.5px solid var(--pink-light);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* ===== PROFILE ===== */
.profile-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.profile-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}
.profile-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--pink-pale), var(--pink-light));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-mid);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.profile-name {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.profile-name em { font-style: italic; color: var(--pink-main); }
.profile-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--pink-main);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.profile-text {
  font-size: 14px;
  color: var(--dark-mid);
  line-height: 2;
  margin-bottom: 1.5rem;
}
.profile-highlight {
  border-left: 2px solid var(--pink-main);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.profile-highlight p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.5;
  font-weight: 300;
}

/* ===== TRIAL ===== */
.trial-box {
  background: var(--white);
  border: 0.5px solid var(--pink-light);
  border-radius: 4px;
  padding: 3rem;
  max-width: 700px;
  margin: 2.5rem auto 0;
}
.trial-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid var(--pink-light);
}
.trial-price {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--pink-main);
  line-height: 1;
}
.trial-price-unit {
  font-size: 13px;
  color: var(--muted);
}
.trial-steps { list-style: none; counter-reset: step-counter; }
.trial-step {
  counter-increment: step-counter;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--pink-softest);
}
.trial-step::before {
  content: counter(step-counter, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--pink-light);
  flex-shrink: 0;
  line-height: 1.4;
}
.trial-step-body {}
.trial-step-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.trial-step-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.trial-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* ===== ACCESS ===== */
.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.access-card {
  border: 0.5px solid var(--pink-light);
  border-radius: 4px;
  padding: 1.75rem;
  background: var(--white);
}
.access-line {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--pink-main);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.access-station {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.access-station em { font-style: italic; color: var(--pink-main); }
.access-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.access-badge {
  display: inline-block;
  margin-top: 0.875rem;
  padding: 0.3rem 0.75rem;
  background: var(--pink-main);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--pink-pale);
  border-top: 0.5px solid var(--pink-light);
  border-bottom: 0.5px solid var(--pink-light);
  padding: 4rem 5rem;
  text-align: center;
}
.cta-band-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.cta-band-title em { font-style: italic; color: var(--pink-main); }
.cta-band-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--pink-light);
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--pink-light); }
.footer-copy {
  font-size: 10px;
  color: #5a3a48;
  letter-spacing: 0.05em;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-center .section-eyebrow { justify-content: center; }
.text-center .section-eyebrow::before { display: none; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-right { height: 50vw; min-height: 260px; }
  .section { padding: 3rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem 2.5rem; }
  .ornament-divider { margin: 0 1.5rem; }
  .feat-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; gap: 2rem; }
  .trial-box { padding: 2rem 1.5rem; }
  .cta-band { padding: 3rem 1.5rem; }
  .site-footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
}
