/* ============================================
   Haradance Japan - Ballet Specialized Gym
   Design: White & Sage Green, Natural, Elegant
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-dark: #3a5a40;
  --green: #588157;
  --green-light: #a3b18a;
  --green-pale: #dad7cd;
  --green-bg: #f5f3ee;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-dark: #4a4a4a;
  --gray: #7a7a7a;
  --gray-light: #b0b0b0;
  --gray-bg: #f9f9f7;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --font-heading: "Cormorant Garamond", "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", "Helvetica Neue", sans-serif;
  --font-accent: "Cormorant Garamond", serif;
  --transition: 0.3s ease;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
  --max-width: 1200px;
  --header-height: 80px;
}

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

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
.heading-en {
  font-family: var(--font-accent);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.heading-jp {
  font-family: var(--font-heading);
  font-weight: 400;
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section--gray {
  background: var(--gray-bg);
}

.section--green {
  background: var(--green-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .heading-en {
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 8px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.05em;
}

.section-header .divider {
  width: 40px;
  height: 1px;
  background: var(--green);
  margin: 20px auto 0;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  width: 90%;
  margin: 0 auto;
}

.header__logo a {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 60px;
  width: auto;
}

@media (max-width: 768px) {
  .header__logo img {
    height: 44px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--gray-dark);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: var(--transition);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header__nav a:hover {
  color: var(--green-dark);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1599901860904-17e6ed7083a0?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.hero__logo {
  width: auto;
  height: clamp(120px, 20vw, 220px);
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  animation: fadeUp 1s ease 0.2s both;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--green-light);
  margin-bottom: 24px;
  text-transform: uppercase;
  animation: fadeUp 1s ease 0.3s both;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  animation: fadeUp 1s ease 0.6s both;
}

.hero__copy {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 2;
  animation: fadeUp 1s ease 0.9s both;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: var(--transition);
  animation: fadeUp 1s ease 1.2s both;
}

.hero__cta:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Concept Section (Home) ---------- */
.concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.concept__image {
  aspect-ratio: 4/5;
  background: var(--green-bg);
  overflow: hidden;
}

.concept__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.concept__image:hover img {
  transform: scale(1.03);
}

.concept__text .heading-en {
  font-size: 0.8rem;
  color: var(--green);
  margin-bottom: 8px;
}

.concept__text h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.6;
}

.concept__text p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 2;
  margin-bottom: 16px;
}

.concept__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

.concept__link::after {
  content: '→';
  transition: var(--transition);
}

.concept__link:hover::after {
  transform: translateX(4px);
}

/* ---------- Target Section ---------- */
.target-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.target-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.target-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.target-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.target-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.target-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ---------- News Section ---------- */
.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.news-item:hover {
  padding-left: 8px;
}

.news-item__date {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.news-item__tag {
  font-size: 0.7rem;
  padding: 2px 10px;
  border: 1px solid var(--green-light);
  color: var(--green);
  white-space: nowrap;
}

.news-item__title {
  font-size: 0.9rem;
  color: var(--black);
}

.news-item__title:hover {
  color: var(--green-dark);
}

.news-more {
  text-align: center;
  margin-top: 40px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--green-dark);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.cta-banner p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--outline {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.btn--outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn--primary {
  background: var(--green-dark);
  color: var(--white);
  border: 1px solid var(--green-dark);
}

.btn--primary:hover {
  background: var(--green);
  border-color: var(--green);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__logo {
  margin-bottom: 12px;
}

.footer__logo img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__address {
  font-size: 0.8rem;
  line-height: 1.8;
  opacity: 0.6;
  margin-top: 16px;
}

.footer__nav h4 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.4;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--green-light);
}

.footer__sns {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer__sns a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer__sns a:hover {
  opacity: 1;
  border-color: var(--green-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 0.75rem;
  opacity: 0.4;
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.75rem;
  opacity: 0.4;
}

.footer__legal a:hover {
  opacity: 0.7;
}

/* ---------- Image Banner ---------- */
.image-banner {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-banner--parallax img {
  height: 120%;
  transform: translateY(-10%);
}

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--green-bg);
}

.page-hero--image {
  position: relative;
  background: #1a1a1a;
  padding: 180px 0 100px;
}

.page-hero--image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero--image .heading-en,
.page-hero--image h1 {
  position: relative;
  z-index: 1;
}

.page-hero--image .heading-en { color: rgba(255,255,255,0.9); }
.page-hero--image h1 { color: rgba(255,255,255,0.7); }
.page-hero--image .divider { background: rgba(255,255,255,0.4); position: relative; z-index: 1; }

.page-hero--classes::before { background-image: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920&q=80'); }
.page-hero--about::before { background-image: url('https://images.unsplash.com/photo-1518834107812-67b0b7c58434?w=1920&q=80'); }

.page-hero .heading-en {
  font-size: 2.5rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.page-hero h1 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.1em;
}

.page-hero .divider {
  width: 40px;
  height: 1px;
  background: var(--green);
  margin: 20px auto 0;
}

/* ---------- About Page ---------- */
.philosophy {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.philosophy__mvv {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--green-dark);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  line-height: 1.6;
}

.philosophy p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 2.2;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story__image {
  aspect-ratio: 3/4;
  background: var(--green-bg);
  overflow: hidden;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.story__text p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 2;
  margin-bottom: 16px;
}

.story__name {
  font-size: 0.85rem;
  color: var(--green-dark);
  margin-top: 24px;
  font-style: italic;
}

/* Mission Cards */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card {
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.mission-card__num {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--green-light);
  margin-bottom: 16px;
}

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
}

/* Staff */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.staff-card {
  text-align: center;
}

.staff-card__photo {
  aspect-ratio: 1;
  background: var(--green-bg);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.staff-card h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.staff-card p {
  font-size: 0.75rem;
  color: var(--gray);
}

/* Why Section */
.why-section {
  max-width: 800px;
  margin: 0 auto;
}

.why-section__lead {
  text-align: center;
  margin-bottom: 56px;
}

.why-section__lead p {
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 2.2;
}

.why-section__lead .highlight {
  color: var(--green-dark);
  font-weight: 500;
}

.why-block {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.why-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-block__num {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.why-block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}

.why-block p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 2.2;
  margin-bottom: 14px;
}

.why-block .emphasis {
  background: linear-gradient(transparent 60%, rgba(163, 177, 138, 0.2) 60%);
  padding: 0 2px;
}

.why-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}

.why-compare__item {
  padding: 24px;
  font-size: 0.85rem;
  line-height: 1.9;
}

.why-compare__item--overseas {
  background: rgba(163, 177, 138, 0.1);
  border-left: 3px solid var(--green);
}

.why-compare__item--japan {
  background: rgba(0, 0, 0, 0.02);
  border-left: 3px solid var(--gray-light);
}

.why-compare__item h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.why-compare__item--japan h4 {
  color: var(--gray);
}

.why-compare__item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .why-compare {
    grid-template-columns: 1fr;
  }
}

/* Staff Detail */
.staff-detail {
  margin-bottom: 80px;
}

.staff-detail:last-child {
  margin-bottom: 0;
}

.staff-detail__header {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}

.staff-detail__photo {
  aspect-ratio: 3/4;
  background: var(--green-bg);
  overflow: hidden;
}

.staff-detail__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-detail__info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.staff-detail__info .staff-detail__name-en {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.staff-detail__info .staff-detail__role {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.staff-detail__message {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 2.2;
}

.staff-detail__message p {
  margin-bottom: 12px;
}

.staff-detail__career {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.staff-detail__career h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 12px;
}

.staff-detail__career p,
.staff-detail__career li {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.9;
}

.staff-detail__career ul {
  padding-left: 16px;
}

.staff-detail__career ul li {
  list-style: disc;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .staff-detail__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .staff-detail__photo {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ---------- Classes Page ---------- */
.flow-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--green-pale);
}

.flow-step {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}

.flow-step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flow-step__content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 8px;
  padding-top: 8px;
}

.flow-step__content p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px 32px;
  transition: var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-hover);
}

.pricing-card--featured {
  border-color: var(--green);
  position: relative;
}

.pricing-card--featured::before {
  content: 'おすすめ';
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  padding: 4px 12px;
  letter-spacing: 0.05em;
}

.pricing-card__label {
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.pricing-card__price {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 0.85rem;
  color: var(--gray);
}

.pricing-card__note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.pricing-card__features {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card__features li {
  font-size: 0.85rem;
  color: var(--gray-dark);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.75rem;
}

/* Dancer discount */
.dancer-discount {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  border: 2px solid var(--green-light);
  background: rgba(163, 177, 138, 0.05);
}

.dancer-discount h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.dancer-discount p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 8px;
}

.dancer-discount__price {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin: 16px 0;
}

.dancer-discount__note {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---------- News Page ---------- */
.news-page-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-page-item {
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.news-page-item__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 8px;
}

.news-page-item__date {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--gray);
}

.news-page-item__tag {
  font-size: 0.7rem;
  padding: 2px 10px;
  border: 1px solid var(--green-light);
  color: var(--green);
}

.news-page-item h3 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.news-page-item h3 a:hover {
  color: var(--green-dark);
}

.news-page-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 48px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 2;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 2;
  list-style: disc;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.legal-table th,
.legal-table td {
  font-size: 0.9rem;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

.legal-table th {
  background: var(--green-bg);
  font-weight: 400;
  width: 30%;
  color: var(--gray-dark);
}

.legal-table td {
  color: var(--gray-dark);
}

/* ---------- Pain & Benefit ---------- */
.pain-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.pain-section__lead {
  font-size: 1.15rem;
  color: var(--gray-dark);
  line-height: 2.2;
  margin-bottom: 40px;
}

.pain-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.pain-tag {
  padding: 10px 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: var(--gray-dark);
  background: var(--white);
  transition: var(--transition);
}

.pain-tag:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.pain-section__answer {
  font-size: 1rem;
  color: var(--green-dark);
  line-height: 2;
  margin-top: 32px;
  font-weight: 500;
}

/* Benefit Cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.benefit-card {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.benefit-card:last-child {
  border-right: none;
}

.benefit-card:hover {
  background: rgba(163, 177, 138, 0.06);
}

.benefit-card__icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.benefit-card__num {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 12px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.6;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.9;
}

/* Link Panels */
.link-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.link-panel {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
}

.link-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.link-panel:hover .link-panel__bg {
  transform: scale(1.05);
}

.link-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: var(--transition);
}

.link-panel:hover .link-panel__overlay {
  background: rgba(58, 90, 64, 0.6);
}

.link-panel__content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.link-panel__content .heading-en {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.link-panel__content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.link-panel__content p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.8;
}

.link-panel__content .btn {
  font-size: 0.8rem;
  padding: 10px 28px;
  border-color: rgba(255, 255, 255, 0.5);
}

.link-panel__content .btn:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

/* How it works mini */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.how-step {
  padding: 24px 16px;
}

.how-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1rem;
  margin: 0 auto 16px;
}

.how-step h4 {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.how-step p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.7;
}

.how-step__arrow {
  display: none;
}

@media (max-width: 1024px) {
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .benefit-card {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .link-panels {
    grid-template-columns: 1fr;
  }

  .link-panel {
    height: 300px;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pain-tags {
    gap: 8px;
  }

  .pain-tag {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible,
.no-js .fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: make visible after 3s even if observer fails */
@keyframes fallbackFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fallbackFadeIn 0.8s ease 2.5s both;
}

/* ---------- Mobile Navigation Overlay ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--gray-dark);
}

.mobile-nav a:hover {
  color: var(--green-dark);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .concept {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .header__nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .target-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
  }

  .news-item__meta {
    display: flex;
    gap: 12px;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero .heading-en {
    font-size: 1.8rem;
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .flow-steps::before {
    left: 20px;
  }

  .flow-step__num {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
