/*
Theme Name: Roots & Rise Yoga
Theme URI: https://rootsandriseyoga.com
Author: Your Agency
Description: A full-bleed scroll-snap yoga studio theme for Roots & Rise Yoga in Kenmore, NY. Transparent overlay nav, scroll-snap sections, ACF Free editable.
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: business, yoga, wellness, single-page, scroll-snap, acf
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-terra:        #C4673A;
  --color-terra-light:  #D4825A;
  --color-terra-pale:   #F2E0D6;
  --color-teal:         #1D4E52;
  --color-teal-light:   #2D6E73;
  --color-teal-pale:    #D6E8E9;
  --color-sand:         #F5EDE0;
  --color-sand-dark:    #EAD9C6;
  --color-plum:         #3D2B3D;
  --color-bark:         #2C1810;
  --color-white:        #FFFFFF;
  --color-mist:         #E8E0D8;
  --color-slate:        #7A6E68;

  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;
  --radius-pill: 999px;

  --shadow-card:  0 8px 32px rgba(44,24,16,0.12);
  --shadow-hover: 0 16px 48px rgba(44,24,16,0.2);

  --nav-height: 76px;
  --max-width:  1200px;
}

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

html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-bark);
  background: var(--color-sand);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-terra); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--color-teal); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 600;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1em; color: inherit; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow-terra { color: var(--color-terra); }
.eyebrow-teal  { color: var(--color-teal); }
.eyebrow-sand  { color: var(--color-sand); opacity: 0.75; }
.eyebrow-white { color: rgba(255,255,255,0.65); }

.divider-line {
  width: 40px;
  height: 2px;
  border-radius: 1px;
  margin: 20px 0 36px;
}
.divider-terra { background: var(--color-terra); }
.divider-teal  { background: var(--color-teal); }
.divider-sand  { background: rgba(255,255,255,0.4); }
.divider-center { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-terra {
  background: var(--color-terra);
  color: var(--color-white);
  border-color: var(--color-terra);
}
.btn-terra:hover {
  background: var(--color-terra-light);
  border-color: var(--color-terra-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,103,58,0.35);
}

.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}
.btn-teal:hover {
  background: var(--color-teal-light);
  border-color: var(--color-teal-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,78,82,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-teal);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

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

/* ============================================================
   OVERLAY NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 200;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

/* Transparent on hero */
.site-header.transparent {
  background: transparent;
}

/* Solid once scrolled */
.site-header.solid {
  background: rgba(245,237,224,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(44,24,16,0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Left nav links */
.nav-left {
  display: flex;
  gap: 32px;
  align-items: center;
}

/* Centered logo */
.site-logo {
  text-align: center;
  line-height: 1;
}

.logo-primary {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.35s;
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  transition: color 0.35s;
}

/* Transparent state — light text */
.site-header.transparent .logo-primary { color: var(--color-white); }
.site-header.transparent .logo-sub    { color: rgba(255,255,255,0.6); }

/* Solid state — dark text */
.site-header.solid .logo-primary { color: var(--color-teal); }
.site-header.solid .logo-sub    { color: var(--color-terra); }

/* Right nav + CTA */
.nav-right {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: flex-end;
}

/* Nav links */
.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.site-header.transparent .nav-link {
  color: rgba(255,255,255,0.82);
}
.site-header.transparent .nav-link:hover {
  color: var(--color-white);
  border-bottom-color: rgba(255,255,255,0.5);
}

.site-header.solid .nav-link {
  color: var(--color-bark);
}
.site-header.solid .nav-link:hover {
  color: var(--color-terra);
  border-bottom-color: var(--color-terra);
}

.nav-book {
  font-size: 0.75rem;
  padding: 9px 22px;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all 0.3s;
}

.site-header.transparent .nav-toggle span { background: var(--color-white); }
.site-header.solid .nav-toggle span       { background: var(--color-bark); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(245,237,224,0.98);
  backdrop-filter: blur(16px);
  padding: 24px 48px 32px;
  border-bottom: 1px solid var(--color-mist);
  z-index: 190;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bark);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-mist);
}

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

/* ============================================================
   SCROLL-SNAP SECTIONS
   ============================================================ */
.snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#home {
  background: var(--color-teal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

/* Organic shape overlay */
.hero-shape {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--nav-height) 48px 80px;
  width: 100%;
}

.hero-content h1 {
  color: var(--color-white);
  max-width: 860px;
  margin: 0 auto 24px;
}

.hero-content h1 em {
  color: var(--color-terra-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-hint-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.35);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ============================================================
   CLASSES SECTION
   ============================================================ */
#classes {
  background: var(--color-sand);
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  min-height: 100vh;
}

.classes-header {
  text-align: center;
  margin-bottom: 56px;
}

.classes-header h2 { color: var(--color-teal); }

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

.class-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-mist);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

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

.class-card-top {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.class-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: var(--color-white);
}

.badge-beginner     { background: var(--color-teal); }
.badge-all          { background: var(--color-terra); }
.badge-intermediate { background: var(--color-plum); }
.badge-advanced     { background: var(--color-bark); }

.class-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.class-card-body h3 {
  font-size: 1.1rem;
  color: var(--color-teal);
  margin-bottom: 6px;
}

.class-card-body p {
  font-size: 0.85rem;
  color: var(--color-slate);
  flex: 1;
  margin-bottom: 14px;
}

.class-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.class-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-slate);
}

.class-meta-item .meta-icon { font-size: 0.85rem; }

/* ============================================================
   SCHEDULE SECTION
   ============================================================ */
#schedule {
  background: var(--color-teal);
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  min-height: 100vh;
}

.schedule-header { text-align: center; margin-bottom: 52px; }
.schedule-header h2 { color: var(--color-white); }

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

.schedule-day {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.schedule-day-header {
  background: rgba(255,255,255,0.08);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.schedule-day-header h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-terra-light);
}

.schedule-classes {
  padding: 12px 0;
}

.schedule-class-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.schedule-class-item:last-child { border-bottom: none; }
.schedule-class-item:hover { background: rgba(255,255,255,0.04); }

.sched-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-terra-light);
  min-width: 52px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sched-info { flex: 1; }

.sched-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
}

.sched-instructor {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.sched-duration {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ============================================================
   INSTRUCTORS SECTION
   ============================================================ */
#instructors {
  background: var(--color-sand);
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  min-height: 100vh;
}

.instructors-header { text-align: center; margin-bottom: 56px; }
.instructors-header h2 { color: var(--color-teal); }

.instructors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.instructor-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-mist);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.instructor-photo-wrap { position: relative; }

.instructor-photo-wrap img,
.instructor-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.instructor-placeholder {
  background: var(--color-terra-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--color-slate);
  font-size: 0.78rem;
  text-align: center;
  padding: 16px;
}

.instructor-placeholder span { font-size: 2.5rem; }

.instructor-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-teal);
  margin-bottom: 4px;
  line-height: 1.1;
}

.instructor-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terra);
  margin-bottom: 16px;
  display: block;
}

.instructor-bio {
  font-size: 0.88rem;
  color: var(--color-slate);
  line-height: 1.7;
  margin-bottom: 16px;
}

.instructor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.specialty-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-teal-pale);
  color: var(--color-teal);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
#pricing {
  background: var(--color-terra-pale);
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  min-height: 100vh;
}

.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header h2 { color: var(--color-teal); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid var(--color-mist);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
}

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

.pricing-card.featured {
  border-color: var(--color-terra);
  transform: scale(1.04);
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-featured-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-terra);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.pricing-price {
  margin: 20px 0 8px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--color-bark);
  line-height: 1;
}

.pricing-amount sup {
  font-size: 1.4rem;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--color-slate);
  margin-top: 4px;
  display: block;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--color-slate);
  margin: 16px 0 24px;
  line-height: 1.6;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--color-bark);
}

.pricing-features li::before {
  content: '✓';
  color: var(--color-terra);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--color-plum);
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Organic background shape */
#contact::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,103,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}

#contact::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29,78,82,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-header { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }
.contact-header h2 { color: var(--color-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }

.contact-info-item .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-terra-light);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.6;
}

.contact-info-item a:hover { color: var(--color-white); }

/* Contact form */
.rr-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.rr-form-wrap h3 {
  color: var(--color-white);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.rr-form-intro {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

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

.rr-form .form-group { margin-bottom: 14px; }

.rr-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.rr-form input,
.rr-form select,
.rr-form textarea {
  width: 100%;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--color-white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.rr-form input::placeholder,
.rr-form textarea::placeholder { color: rgba(255,255,255,0.3); }

.rr-form input:focus,
.rr-form select:focus,
.rr-form textarea:focus {
  outline: none;
  border-color: var(--color-terra-light);
  box-shadow: 0 0 0 3px rgba(196,103,58,0.15);
}

.rr-form select option { background: var(--color-plum); color: var(--color-white); }
.rr-form textarea { height: 100px; resize: vertical; }

.form-notice { font-size: 0.76rem; color: rgba(255,255,255,0.35); margin-top: 12px; }

.form-success {
  background: rgba(196,103,58,0.12);
  border: 1px solid rgba(196,103,58,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--color-terra-light);
  font-size: 0.92rem;
  display: none;
}

.form-error {
  color: #FF6B6B;
  font-size: 0.76rem;
  margin-top: 4px;
  display: none;
}

/* ============================================================
   FOOTER (inside contact section)
   ============================================================ */
.site-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 1;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--color-terra-light); }

/* ============================================================
   SECTION INDICATOR DOTS (right edge)
   ============================================================ */
.section-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 150;
}

.section-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}

.section-dot.active {
  background: var(--color-terra);
  transform: scale(1.4);
}

.section-dot:hover { background: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .instructors-grid { grid-template-columns: 1fr; max-width: 600px; }
  .instructor-card { grid-template-columns: 160px 1fr; gap: 24px; }
}

@media (max-width: 900px) {
  :root { --nav-height: 64px; }

  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-left, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .header-inner .nav-left  { display: none; }
  .header-inner .nav-right { display: none; }

  .container { padding: 0 24px; }

  .snap-section { scroll-snap-align: none; }
  html { scroll-snap-type: none; }

  .classes-grid   { grid-template-columns: 1fr 1fr; }
  .schedule-grid  { grid-template-columns: 1fr; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.featured { transform: none; }
  .contact-grid   { grid-template-columns: 1fr; }

  .instructor-card { grid-template-columns: 1fr; }
  .instructor-photo-wrap { max-width: 220px; }

  .section-dots { display: none; }

  .site-footer { position: relative; margin-top: 40px; }
  #contact { padding-bottom: 24px; }

  .rr-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .classes-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
}
