/* ===== Variables & Reset ===== */
:root {
  --sage: #7a9e7e;
  --sage-dark: #4a7c59;
  --sage-light: #c5d8c7;
  --sand: #ece3d4;
  --sand-dark: #ddd2c1;
  --charcoal: #2c2c2c;
  --warm-gray: #6b6560;
  --white: #ffffff;
  --mist: #dbe8d5;
  --cream: #f5ebda;
  --cinnabar: #c4503d;
  --cinnabar-light: #e8a49b;
  --gold: #c9a96e;
  --gold-light: #f0e4cc;
  --ink: #1a2a1a;
  --font-title: 'Marcellus', 'Georgia', serif;
  --font-heading: 'Lora', 'Georgia', serif;
  --font-subheading: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Bitter', 'Georgia', serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.3;
}

h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.3;
}

.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cinnabar), transparent);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--warm-gray);
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Ink brush accent on section titles */
.section-title::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--cinnabar);
  border-radius: 50%;
  opacity: 0.6;
}

.philosophy-card .section-title::before {
  background: var(--gold);
}

.section-subtitle-chinese {
  text-align: center;
  color: var(--warm-gray);
  font-size: 0.095rem;
  margin: -32px auto 48px;
  letter-spacing: 0.15em;
}

/* ===== Wave Dividers ===== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  display: block;
}

.wave-hero {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
}

.wave-hero svg {
  height: 80px;
}

.wave-up {
  margin-top: -1px;
}

.wave-up svg {
  height: 60px;
}

.wave-down {
  margin-bottom: -1px;
}

.wave-down svg {
  height: 60px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: var(--font-subheading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sage-dark), #588157);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74,124,89,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  margin-left: 12px;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* ===== Navigation ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

#navbar.scrolled .nav-logo {
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-subheading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cinnabar);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

#navbar.scrolled .nav-links a {
  color: var(--warm-gray);
}

#navbar.scrolled .nav-links a:hover {
  color: var(--sage-dark);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

#navbar.scrolled .nav-toggle span {
  background: var(--charcoal);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Photo Placeholders ===== */
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--sand-dark);
  border: 2px dashed var(--sage-light);
  border-radius: var(--radius);
  color: var(--warm-gray);
  font-size: 0.9rem;
  font-style: italic;
}

.photo-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.4;
}

.portrait-placeholder {
  aspect-ratio: 3 / 4;
  max-height: 440px;
}

.portrait-frame {
  position: relative;
  display: inline-block;
}

.portrait-photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Chinese ink corner ornaments */
.frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

.frame-corner::before,
.frame-corner::after {
  content: '';
  position: absolute;
  background: var(--cinnabar);
  border-radius: 1px;
}

.frame-tl {
  top: -8px;
  left: -8px;
}

.frame-tl::before {
  top: 0;
  left: 0;
  width: 28px;
  height: 2.5px;
}

.frame-tl::after {
  top: 0;
  left: 0;
  width: 2.5px;
  height: 28px;
}

.frame-br {
  bottom: -8px;
  right: -8px;
}

.frame-br::before {
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2.5px;
}

.frame-br::after {
  bottom: 0;
  right: 0;
  width: 2.5px;
  height: 28px;
}

.card-placeholder {
  height: 180px;
  margin-bottom: 20px;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ===== Hero ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(160deg, var(--ink) 0%, #2d4a35 25%, #3a5a40 40%, #588157 65%, #7a9e7e 85%, #a3b18a 100%);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(196,80,61,0.06) 0%, transparent 70%);
  animation: drift 25s ease-in-out infinite;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.05) 0%, transparent 60%);
  animation: drift 20s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33% { transform: translate(30px, -20px) rotate(3deg) scale(1.05); }
  66% { transform: translate(-20px, 30px) rotate(-2deg) scale(0.95); }
}

/* Floating cloud shapes */
.hero-clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  filter: blur(1px);
}

.cloud-1 {
  width: 400px;
  height: 120px;
  top: 15%;
  right: -5%;
  border-radius: 100px;
  animation: cloudFloat 30s ease-in-out infinite;
}

.cloud-2 {
  width: 300px;
  height: 80px;
  top: 60%;
  left: -8%;
  border-radius: 80px;
  animation: cloudFloat 25s ease-in-out infinite 5s;
}

.cloud-3 {
  width: 200px;
  height: 60px;
  top: 35%;
  left: 20%;
  border-radius: 60px;
  animation: cloudFloat 35s ease-in-out infinite 10s;
}

@keyframes cloudFloat {
  0%, 100% { transform: translateX(0) translateY(0); opacity: 0.4; }
  25% { transform: translateX(40px) translateY(-10px); opacity: 0.7; }
  50% { transform: translateX(80px) translateY(5px); opacity: 0.5; }
  75% { transform: translateX(30px) translateY(-15px); opacity: 0.6; }
}

/* Floating calligraphy characters */
.hero-calligraphy {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cal-char {
  position: absolute;
  font-family: 'SimSun', 'STSong', 'Songti SC', serif;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  font-weight: 400;
}

.cal-char-1 {
  font-size: 18rem;
  top: 5%;
  right: 5%;
  animation: calFloat 30s ease-in-out infinite;
}

.cal-char-2 {
  font-size: 12rem;
  bottom: 15%;
  left: 3%;
  animation: calFloat 25s ease-in-out infinite 4s;
}

.cal-char-3 {
  font-size: 10rem;
  top: 40%;
  left: 60%;
  animation: calFloat 35s ease-in-out infinite 8s;
}

.cal-char-4 {
  font-size: 14rem;
  bottom: 5%;
  right: 25%;
  animation: calFloat 28s ease-in-out infinite 12s;
}

@keyframes calFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.04; }
  25% { transform: translate(15px, -10px) rotate(2deg); opacity: 0.06; }
  50% { transform: translate(-10px, 15px) rotate(-1deg); opacity: 0.03; }
  75% { transform: translate(8px, -5px) rotate(1deg); opacity: 0.05; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 750px;
  z-index: 1;
}

#hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-family: var(--font-subheading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.8;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.85;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== About ===== */
#about {
  padding: 100px 0;
  background: var(--mist);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
  max-width: 760px;
  margin: 0 auto;
}

.lead {
  font-size: 1.15rem;
  color: var(--warm-gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.credential {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.credential:hover {
  background: var(--sand);
  transform: translateX(6px);
}

.credential-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sage-light), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  transition: transform var(--transition);
}

.credential:hover .credential-icon {
  transform: rotate(10deg) scale(1.1);
}

.credential-icon svg {
  width: 22px;
  height: 22px;
}

.credential h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--charcoal);
}

.credential p {
  font-size: 0.95rem;
  color: var(--warm-gray);
}

.about-visual {
  position: sticky;
  top: 120px;
}

.visual-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
}

.visual-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  color: var(--sage);
}

.visual-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ===== Programs ===== */
#programs {
  padding: 100px 0 100px;
  background: var(--sand);
  position: relative;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-dark), var(--gold), var(--cinnabar));
  opacity: 0;
  transition: opacity var(--transition);
}

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

.program-card:hover::before {
  opacity: 1;
}

/* Subtle Chinese corner ornament */
.program-card::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--cinnabar);
  border-bottom: 2px solid var(--cinnabar);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 0 0 3px 0;
}

.program-card:hover::after {
  opacity: 0.3;
}

.program-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sage-light), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sage-dark);
  transition: transform var(--transition);
}

.program-card:hover .program-icon {
  transform: scale(1.1) rotate(5deg);
}

.program-icon svg {
  width: 28px;
  height: 28px;
}

.program-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.program-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.program-card p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Philosophy ===== */
#philosophy {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.philosophy-card {
  background: linear-gradient(160deg, var(--ink), #2d4a35, #3a5a40, #588157);
  border-radius: 16px;
  padding: 72px 56px;
  color: var(--white);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.08) 0%, transparent 60%);
  animation: drift 20s ease-in-out infinite;
}

.philosophy-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--cinnabar), var(--gold), transparent);
}

.philosophy-card .section-title {
  color: var(--white);
  margin-bottom: 32px;
}

.philosophy-card .section-title::after {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

blockquote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.9;
  font-style: italic;
  opacity: 0.95;
  position: relative;
}

blockquote p + p {
  margin-top: 20px;
}

.philosophy-chinese-chars {
  font-family: 'SimSun', 'STSong', 'Songti SC', serif;
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.75;
  letter-spacing: 0.4em;
  margin: 24px 0 8px;
  font-style: normal;
}

/* Chinese seal / chop stamp */
.chinese-seal {
  display: inline-block;
  margin-top: 32px;
  width: 56px;
  height: 56px;
  border: 2.5px solid var(--cinnabar);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transform: rotate(3deg);
  opacity: 0.7;
  transition: all var(--transition);
}

.philosophy-card:hover .chinese-seal {
  opacity: 1;
  transform: rotate(0deg);
}

.chinese-seal span {
  font-family: 'SimSun', 'STSong', 'Songti SC', serif;
  font-size: 1.8rem;
  color: var(--cinnabar);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

/* ===== In Practice ===== */
#in-practice {
  padding: 80px 0;
  background: var(--mist);
  position: relative;
}

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

.practice-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.practice-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.practice-photo img[src="image_yoga2.png"],
.practice-photo img[src="image_yoga3.png"]{
  object-position: center calc(50% - 15px);
}

.practice-photo img[src="image_yoga1.png"] {
  object-position: center calc(50% - 120px);
} 

@media (max-width: 650px) {
  .practice-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Offerings ===== */
#offerings {
  padding: 100px 0;
  background: var(--mist);
  position: relative;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.offering {
  text-align: center;
  padding: 44px 28px;
  background: var(--sand);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.offering::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-dark), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.offering:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.offering:hover::before {
  opacity: 1;
}

.offering-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--sage-light), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--sage-dark);
  transition: transform var(--transition);
}

.offering:hover .offering-icon {
  transform: scale(1.1) rotate(-5deg);
}

.offering-icon svg {
  width: 26px;
  height: 26px;
}

.offering h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.offering p {
  color: var(--warm-gray);
  font-size: 0.95rem;
}

/* ===== Pricing ===== */
#pricing {
  padding: 100px 0;
  background: var(--sand);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 0 auto;
}

.pricing-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-per {
  font-size: 0.8rem;
  color: var(--warm-gray);
  font-family: var(--font-subheading);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-dark), var(--gold));
}

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

.pricing-card h3 {
  font-size: 1.25rem;
  color: var(--charcoal);
}

.pricing-description {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
  flex: 1;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin: 4px 0 8px;
}

.pricing-card-highlight {
  border: 2px solid var(--gold);
}

.pricing-card-highlight::before {
  background: linear-gradient(90deg, var(--gold), var(--cinnabar), var(--gold));
}

.pricing-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--cinnabar));
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 20px;
  line-height: 1.4;
}

.pricing-note {
  text-align: center;
  color: var(--warm-gray);
  font-size: 0.85rem;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-note svg {
  flex-shrink: 0;
  color: var(--sage-dark);
}

/* ===== Contact ===== */
#contact {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,126,0.15);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4em;
}

.info-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-dark), var(--gold), var(--cinnabar));
}

.info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.info-card > p {
  color: var(--warm-gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--charcoal);
  font-size: 0.95rem;
  transition: transform var(--transition);
}

.info-item:hover {
  transform: translateX(4px);
}

.info-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--sage-dark);
}

/* ===== Testimonials ===== */
#testimonials {
  padding: 100px 0;
  background: var(--sand);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--cinnabar));
  opacity: 0;
  transition: opacity var(--transition);
}

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

.testimonial:hover::before {
  opacity: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal);
  flex: 1;
}

.testimonial-author {
  border-top: 1px solid var(--sand-dark);
  padding-top: 16px;
}

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.author-detail {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-top: 2px;
}

/* ===== Footer ===== */
footer {
  padding: 56px 0;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  text-align: center;
  position: relative;
}

footer::before {
  display: none;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-chinese {
  font-family: 'SimSun', 'STSong', 'Songti SC', serif;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--cinnabar);
  opacity: 0.5;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.5;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.35;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger cards */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    position: static;
  }

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

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

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

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

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

  #hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .wave-hero svg {
    height: 50px;
  }

  .wave-up svg,
  .wave-down svg {
    height: 40px;
  }
}

@media (max-width: 650px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--charcoal) !important;
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
  }

  #hero h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 12px;
  }

  .hero-content .btn {
    display: block;
    text-align: center;
  }

  .philosophy-card {
    padding: 40px 24px;
  }

  blockquote {
    font-size: 1.1rem;
  }

  .cloud { display: none; }
  .hero-calligraphy { display: none; }

  #about, #programs, #philosophy, #testimonials, #offerings, #pricing, #contact {
    padding: 72px 0;
  }
}
