/* ===========================
   ZEN FLOW 禪 — Zen Minimal Style
   Warm off-white, sage green accent
   =========================== */

:root {
  --bg: #f9f7f4;
  --bg-alt: #f0ece5;
  --bg-card: #ffffff;
  --text: #2d2a26;
  --text-muted: #7a756d;
  --accent: #7d9a7d;
  --accent-hover: #6b876b;
  --accent-light: #e8efe8;
  --purple: #9b8ec4;
  --blue: #6b9fc4;
  --orange: #c4a06b;
  --pink: #c48b9b;

  --font-heading: 'Cormorant', Georgia, serif;
  --font-body: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
}

/* ============ TYPOGRAPHY ============ */
.section-tag {
  display: block;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  text-align: center;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125, 154, 125, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 247, 244, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(249, 247, 244, 0.96);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo-icon {
  color: var(--accent);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav-logo-text em {
  font-style: normal;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ============ MOBILE MENU TOGGLE ============ */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  border-radius: 50%;
  border: 1px solid rgba(45, 42, 38, 0.15);
  transition: all 0.4s var(--ease);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: all 0.4s var(--ease);
}

.nav-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 5px)); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 5px)); }

body.menu-open .nav-toggle span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ============ MOBILE MENU OVERLAY ============ */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: var(--bg);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.menu-open { overflow: hidden; }
body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu ul {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  padding: 16px 40px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu .mobile-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 40px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
}

/* ============ HERO — Centered Zen ============ */
.hero {
  position: relative;
  padding: 160px 40px 80px;
  overflow: hidden;
  background: var(--bg);
  text-align: center;
}

/* Subtle mandala background pattern */
.hero-mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -55%);
  opacity: 0.04;
  background-image:
    radial-gradient(circle, transparent 60%, var(--accent) 60.5%, transparent 61%),
    radial-gradient(circle, transparent 40%, var(--accent) 40.5%, transparent 41%),
    radial-gradient(circle, transparent 20%, var(--accent) 20.5%, transparent 21%),
    radial-gradient(circle, transparent 79%, var(--accent) 79.5%, transparent 80%);
  background-size: 700px 700px;
  background-position: center;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-image {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 64px auto 0;
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

/* ============ ABOUT ============ */
.about {
  background: var(--bg-alt);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 72px;
}

.about-feature {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-card);
  border-radius: 12px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.about-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.about-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 50%;
  color: var(--accent);
}

.about-feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.about-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============ SCHEDULE ============ */
.schedule {
  background: var(--bg);
}

.schedule-wrapper {
  margin-top: 56px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--bg-card);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  min-width: 760px;
}

.schedule-cell {
  padding: 14px 10px;
  font-size: 13px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 72px;
  transition: background 0.2s;
}

.schedule-cell:nth-child(8n) {
  border-right: none;
}

.schedule-header {
  background: var(--bg-alt);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  min-height: 48px;
  letter-spacing: 0.04em;
}

.schedule-corner {
  background: var(--bg-alt);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 12px;
}

.schedule-time {
  background: var(--bg-alt);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.schedule-cell strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.schedule-cell span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Schedule type colors */
.type-hatha {
  background: rgba(125, 154, 125, 0.1);
}
.type-hatha strong { color: var(--accent); }

.type-flow {
  background: rgba(107, 159, 196, 0.1);
}
.type-flow strong { color: var(--blue); }

.type-yin {
  background: rgba(155, 142, 196, 0.1);
}
.type-yin strong { color: var(--purple); }

.type-meditation {
  background: rgba(196, 160, 107, 0.1);
}
.type-meditation strong { color: var(--orange); }

.type-aerial {
  background: rgba(196, 139, 155, 0.1);
}
.type-aerial strong { color: var(--pink); }

/* Hover effect on class cells */
.type-hatha:hover { background: rgba(125, 154, 125, 0.18); }
.type-flow:hover { background: rgba(107, 159, 196, 0.18); }
.type-yin:hover { background: rgba(155, 142, 196, 0.18); }
.type-meditation:hover { background: rgba(196, 160, 107, 0.18); }
.type-aerial:hover { background: rgba(196, 139, 155, 0.18); }

/* Legend */
.schedule-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

.dot-hatha { background: var(--accent); }
.dot-flow { background: var(--blue); }
.dot-yin { background: var(--purple); }
.dot-meditation { background: var(--orange); }
.dot-aerial { background: var(--pink); }

/* ============ INSTRUCTORS ============ */
.instructors {
  background: var(--bg-alt);
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}

.instructor-card {
  text-align: center;
  padding: 48px 28px;
  background: var(--bg-card);
  border-radius: 16px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.instructor-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-light);
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instructor-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.instructor-title {
  display: block;
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.instructor-exp {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.instructor-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============ PHILOSOPHY — Full-width Quote ============ */
.philosophy {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.philosophy-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}

.philosophy-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(20, 18, 15, 0.72);
}

.philosophy-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px;
}

.philosophy-content blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.philosophy-content blockquote cite {
  display: block;
  margin-top: 28px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* ============ PRICING ============ */
.pricing {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 44px 32px;
  text-align: center;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.pricing-popular {
  border: 2px solid var(--accent);
  padding-top: 56px;
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 24px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.06em;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-price {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-currency {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-features li svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-top: 56px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-detail p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-detail a {
  color: var(--accent);
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: var(--accent-hover);
}

.contact-map {
  margin-top: 8px;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px;
  background: var(--bg);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

.map-placeholder svg {
  color: var(--accent);
  opacity: 0.6;
}

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a756d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(125, 154, 125, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 117, 109, 0.5);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg);
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer-logo em {
  font-style: normal;
  font-weight: 400;
  color: var(--text-muted);
}

.footer-logo .nav-logo-icon {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE — 1024px ============ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  .section { padding: 96px 0; }

  .hero { padding: 140px 32px 64px; }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .instructors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .instructor-photo {
    width: 160px;
    height: 160px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .pricing-card { padding: 36px 24px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============ RESPONSIVE — 768px ============ */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .nav-inner {
    padding: 0 24px;
    height: 64px;
  }

  .container { padding: 0 24px; }

  .section { padding: 80px 0; }

  .section-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .section-subtitle {
    font-size: 15px;
  }

  /* Hero mobile */
  .hero {
    padding: 120px 24px 48px;
  }

  .hero-title {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-image {
    margin-top: 48px;
  }

  .hero-image img {
    height: 260px;
    border-radius: 12px;
  }

  .hero-mandala {
    width: 400px;
    height: 400px;
    background-size: 400px 400px;
  }

  /* About mobile */
  .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .about-feature { padding: 28px 16px; }

  /* Schedule mobile: horizontal scroll */
  .schedule-wrapper {
    margin-left: -24px;
    margin-right: -24px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* Instructors mobile */
  .instructors-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
  }

  .instructor-photo {
    width: 180px;
    height: 180px;
  }

  /* Philosophy mobile */
  .philosophy { min-height: 360px; }

  .philosophy-content blockquote p {
    font-size: clamp(24px, 7vw, 36px);
  }

  .philosophy-content { padding: 60px 24px; }

  /* Pricing mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Contact mobile */
  .contact-form { padding: 32px 24px; }

  /* Footer mobile */
  .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
}

/* ============ RESPONSIVE — 480px ============ */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(36px, 13vw, 48px);
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .schedule-legend {
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .pricing-card { padding: 32px 20px; }

  .price-amount { font-size: 40px; }

  .footer-links { gap: 16px; }
}