* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #3B6B5E;
  --primary-dark: #2A4F45;
  --primary-light: #5A9485;
  --secondary: #C67B47;
  --secondary-light: #D99B6F;
  --accent: #D4A843;
  --bg-cream: #FBF8F3;
  --bg-light: #F2EDE5;
  --bg-warm: #EDE4D8;
  --text-dark: #2A2A2A;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --border: #E0D8CE;
  --shadow: 0 2px 12px rgba(42, 42, 42, 0.08);
  --shadow-lg: 0 8px 30px rgba(42, 42, 42, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--secondary);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 0.8rem;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(251, 248, 243, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--secondary), var(--accent), var(--primary));
}

.site-header.scrolled {
  background: rgba(251, 248, 243, 0.97);
  box-shadow: var(--shadow);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  z-index: 101;
}

.brand i {
  font-size: 1.35rem;
  color: var(--secondary);
}

.brand:hover {
  color: var(--primary);
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.main-nav .nav-list a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.3rem 0;
}

.main-nav .nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition);
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after {
  width: 100%;
}

.main-nav .nav-list a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
  width: 32px;
  height: 32px;
}

.toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle.active .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, var(--bg-warm) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  padding-right: 1rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  background: rgba(198, 123, 71, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.hero h1 span {
  color: var(--secondary);
}

.hero-text {
  font-size: 0.92rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  max-width: 440px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(198, 123, 71, 0.15);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: #b06a3a;
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-warm {
  background: var(--bg-warm);
}

.section-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-medium);
  max-width: 550px;
  margin: 0 auto;
  font-size: 0.88rem;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 107, 94, 0.08);
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  padding: 0.5rem 0;
}

.split-content h2 {
  margin-bottom: 0.8rem;
}

.split-content p {
  font-size: 0.87rem;
  color: var(--text-medium);
}

.split-content .btn {
  margin-top: 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.testimonial-quote {
  font-size: 1.8rem;
  color: var(--secondary);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 0.82rem;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 0.8rem;
  line-height: 1.55;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.7rem;
  color: var(--text-light);
}

.cta-section {
  padding: 3.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  padding: 2rem 1.4rem;
}

.package-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: var(--secondary);
  box-shadow: 0 4px 20px rgba(198, 123, 71, 0.15);
}

.package-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.package-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.package-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.package-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.8rem;
}

.package-price span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
}

.package-features {
  text-align: left;
  margin-bottom: 1.2rem;
}

.package-features li {
  font-size: 0.78rem;
  color: var(--text-medium);
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-features li i {
  color: var(--primary);
  font-size: 0.65rem;
}

.subpage-hero {
  padding: 6.5rem 0 2.5rem;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 50%, var(--bg-warm) 100%);
  text-align: center;
}

.subpage-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.subpage-hero p {
  font-size: 0.88rem;
  color: var(--text-medium);
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.breadcrumb a {
  color: var(--text-light);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  display: flex;
  gap: 1rem;
  padding: 1.3rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow);
}

.value-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 107, 94, 0.08);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1rem;
}

.value-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.value-card p {
  font-size: 0.78rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(59, 107, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.4rem;
  color: var(--primary);
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.team-card .team-role {
  font-size: 0.72rem;
  color: var(--secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.team-card p {
  font-size: 0.78rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--secondary);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.contact-form-wrap .form-subtitle {
  font-size: 0.82rem;
  color: var(--text-medium);
  margin-bottom: 1.2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-dark);
  background: var(--bg-cream);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(59, 107, 94, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.73rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  width: auto;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.contact-info-wrap {
  padding: 0.5rem 0;
}

.contact-info-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.contact-info-wrap .info-subtitle {
  font-size: 0.82rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 107, 94, 0.08);
  border-radius: 50%;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

.contact-info-item p {
  font-size: 0.78rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.contact-creative-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: var(--white);
  margin-top: 1rem;
}

.contact-creative-banner h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.contact-creative-banner p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.map-section {
  padding: 0 0 3rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 1.3rem 0;
  font-size: 0.73rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  z-index: 200;
  display: none;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
}

.cookie-popup.visible {
  display: block;
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.76rem;
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--accent);
}

.cookie-btn {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.cookie-btn:hover {
  background: #b06a3a;
}

.fullpage-main {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
}

.fullpage-content {
  max-width: 480px;
}

.fullpage-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.fullpage-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.fullpage-content p {
  color: var(--text-medium);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.policy-content h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.policy-content h3 {
  font-size: 1.1rem;
  margin-top: 1.3rem;
  margin-bottom: 0.4rem;
}

.policy-content p {
  font-size: 0.83rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.policy-content ul {
  margin: 0.5rem 0 1rem 1.2rem;
  list-style: disc;
}

.policy-content ul li {
  font-size: 0.83rem;
  color: var(--text-medium);
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.policy-date {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.sessions-intro {
  padding: 3rem 0;
}

.sessions-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.sessions-intro-text h2 {
  margin-bottom: 0.6rem;
}

.sessions-intro-text p {
  font-size: 0.86rem;
  color: var(--text-medium);
}

.sessions-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sessions-intro-image img {
  width: 100%;
  object-fit: cover;
}

.highlights-list {
  margin: 1rem 0;
}

.highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-medium);
  padding: 0.3rem 0;
}

.highlights-list li i {
  color: var(--primary);
  font-size: 0.7rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-story-image img {
  width: 100%;
  object-fit: cover;
}

.about-story-text h2 {
  margin-bottom: 0.6rem;
}

.about-story-text p {
  font-size: 0.86rem;
  color: var(--text-medium);
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 992px) {
  .hero-grid,
  .split-grid,
  .sessions-intro-grid,
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-text {
    margin: 0 auto 1.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .features-grid,
  .testimonials-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sessions-intro-image,
  .about-story-image {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(251, 248, 243, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 100;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .main-nav .nav-list a {
    font-size: 1.1rem;
  }

  .features-grid,
  .testimonials-grid,
  .packages-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .hero h1 { font-size: 1.9rem; }
  .subpage-hero h1 { font-size: 1.7rem; }

  .section { padding: 2.5rem 0; }
  .cta-section { padding: 2.5rem 0; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .stats-row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .hero { padding: 5rem 0 2rem; }
  .subpage-hero { padding: 5.5rem 0 2rem; }
  .header-inner { padding: 0.7rem 1rem; }
  .brand { font-size: 1.1rem; }
  .hero h1 { font-size: 1.65rem; }
  .btn { font-size: 0.75rem; padding: 0.55rem 1.2rem; }
  .contact-form-wrap { padding: 1.3rem; }
  .package-card { padding: 1.4rem 1rem; }
  .map-wrap iframe { height: 280px; }
}

@media (max-width: 320px) {
  html { font-size: 13px; }
  .container { padding: 0 0.8rem; }
  .header-inner { padding: 0.6rem 0.7rem; }
  .brand { font-size: 0.95rem; }
  .brand i { font-size: 1.1rem; }
  .hero h1 { font-size: 1.45rem; }
  .hero-badge { font-size: 0.6rem; }
  .btn { font-size: 0.7rem; padding: 0.5rem 1rem; }
  .map-wrap iframe { height: 230px; }
}
