/* ============================================
   MMSA LUXURY THEME — DESIGN SYSTEM
   Minnesota Med Spa Association
   Palette: Soft White + Rose Gold
   Fonts: Cormorant Garamond + Raleway
============================================ */

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

:root {
  /* Colors */
  --rose-gold:        #C49A8A;
  --rose-gold-dark:   #A37B6B;
  --rose-gold-light:  #EDD8CF;
  --rose-gold-pale:   #F8EDE9;
  --cream:            #FDFAF8;
  --white:            #FFFFFF;
  --text-dark:        #2A2420;
  --text-mid:         #6B5E58;
  --text-light:       #A0918B;
  --border:           #EDD8CF;
  --shadow:           rgba(196, 154, 138, 0.15);

  /* Typography */
  --font-display:     'Cormorant Garamond', Georgia, serif;
  --font-body:        'Raleway', sans-serif;

  /* Spacing */
  --section-pad:      80px;
  --container:        1180px;

  /* Transitions */
  --ease:             cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--rose-gold); }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section-pad { padding: var(--section-pad) 0; }

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--rose-gold);
  margin: 24px auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--rose-gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--rose-gold);
  border: 1px solid var(--rose-gold);
}
.btn-outline:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--rose-gold-dark);
}
.btn-white:hover {
  background: var(--rose-gold-pale);
  color: var(--rose-gold-dark);
  transform: translateY(-2px);
}

/* ---- HEADER / NAV ---- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

#site-header.scrolled {
  box-shadow: 0 4px 40px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.site-logo span {
  display: block;
  font-size: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}

.main-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose-gold);
  transition: width 0.3s var(--ease);
}

.main-nav a:hover, .main-nav a.active {
  color: var(--rose-gold);
}
.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
}

.nav-cta { margin-left: 20px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all 0.3s var(--ease);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-gold-pale) 60%, var(--rose-gold-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,138,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,138,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rose-gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.4s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-gold);
}

.site-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mmsa-wordmark {
  display: block;
  overflow: visible;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.55s forwards;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 520px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease) 0.8s forwards;
}

.hero-decoration {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
}

.hero-decoration::before {
  content: 'MMSA';
  font-family: var(--font-display);
  font-size: 280px;
  font-weight: 300;
  color: rgba(196, 154, 138, 0.06);
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: var(--text-dark);
  padding: 28px 0;
}

.strip-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.strip-stat {
  text-align: center;
}

.strip-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--rose-gold-light);
  display: block;
  line-height: 1;
}

.strip-stat .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  display: block;
}

/* ---- VALUE PROPS ---- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 44px 36px;
  position: relative;
  transition: all 0.35s var(--ease);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow);
}

.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--rose-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.value-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 1.5;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ---- VIDEO SECTION ---- */
.video-section {
  background: var(--rose-gold-pale);
}

.video-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.video-text .section-title { text-align: left; }
.video-text .section-sub { text-align: left; margin-left: 0; }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--text-dark);
  box-shadow: 0 24px 80px rgba(42, 36, 32, 0.2);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2A2420, #4A3830);
  cursor: pointer;
}

.play-btn {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}

.play-btn:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  transform: scale(1.1);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: white;
  margin-left: 4px;
}

.video-placeholder p {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* ---- COURSES / TRAINING ---- */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 72px var(--shadow);
}

.course-badge {
  background: var(--rose-gold);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  display: inline-block;
  align-self: flex-start;
  margin: 32px 32px 0;
}

.course-body {
  padding: 24px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.course-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 20px;
  flex: 1;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.course-meta span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}

.course-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--rose-gold-dark);
  margin-bottom: 20px;
}

.course-price sup { font-size: 1rem; vertical-align: top; margin-top: 6px; display: inline-block; }

/* ---- NEWSLETTER ---- */
.newsletter-section {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3D2C26 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,138,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-section .eyebrow { color: var(--rose-gold-light); }

.newsletter-section .section-title { color: var(--white); }

.newsletter-section .section-sub { color: rgba(255,255,255,0.55); }

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border 0.3s var(--ease);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form input:focus { border-color: var(--rose-gold); }

.newsletter-form .btn { flex-shrink: 0; }

/* ---- ABOUT PAGE ---- */
.about-hero {
  padding: 160px 0 100px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--rose-gold-pale) 100%);
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-mission-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-mission-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-value-item {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--white);
}

.about-value-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--rose-gold-dark);
}

.about-value-item p {
  font-size: 0.825rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---- TEAM ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--rose-gold-pale);
  border: 2px solid var(--rose-gold-light);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--rose-gold);
  font-weight: 300;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.team-card .role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-gold);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ---- CONTACT ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rose-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--rose-gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text .label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.contact-detail-text a, .contact-detail-text span {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 400;
}

/* ---- FORM ---- */
.luxury-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s var(--ease);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose-gold);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 140px; }

/* ---- MEMBERS ---- */
.members-hero {
  padding: 160px 0 100px;
  text-align: center;
  background: linear-gradient(160deg, var(--rose-gold-pale) 0%, var(--cream) 100%);
}

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

.login-box, .register-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
}

.login-box h3, .register-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.login-box p, .register-box p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  font-weight: 300;
}

.wp-login-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--rose-gold-pale);
}

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

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border: 1px solid rgba(196,154,138,0.2);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--rose-gold-light);
  line-height: 0.6;
  display: block;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-gold-pale);
  border: 1px solid var(--rose-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--rose-gold);
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ---- FOOTER ---- */
#site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .site-logo { color: var(--white); margin-bottom: 20px; display: block; }
.footer-brand .site-logo span { color: var(--rose-gold-light); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.85;
  max-width: 260px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-gold-light);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s var(--ease);
}

.footer-col ul li a:hover { color: var(--rose-gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(160deg, var(--cream) 0%, var(--rose-gold-pale) 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .video-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .main-nav, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 32px;
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    z-index: 999;
    box-shadow: 0 20px 60px var(--shadow);
  }

  .mobile-menu.open { transform: translateY(0); }

  .mobile-menu ul { flex-direction: column; gap: 24px; }
  .mobile-menu ul a { font-size: 14px; }

  .hero { min-height: calc(100vh - 80px); padding-top: 80px; }
  .hero-decoration { display: none; }

  .value-grid { grid-template-columns: 1fr; gap: 24px; }
  .courses-grid { grid-template-columns: 1fr; }
  .about-mission { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .members-layout { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .luxury-form { padding: 28px; }

  .strip-inner { gap: 32px; }

  .about-values { grid-template-columns: 1fr; }
}

/* ---- WOOCOMMERCE COMPATIBILITY ---- */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info {
  border-top-color: var(--rose-gold);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--rose-gold);
  color: white;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 14px 28px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--rose-gold-dark);
  color: white;
}
