@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sage: #7a9e7e;
  --sage-light: #a8c5aa;
  --sage-dark: #4e7254;
  --cream: #f5f0e8;
  --cream-dark: #ede5d5;
  --slate: #2c3e35;
  --slate-mid: #4a5e54;
  --text: #2c3e35;
  --text-light: #6b7c74;
  --white: #ffffff;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 2px 16px rgba(44, 62, 53, 0.1);
  --shadow-lg: 0 8px 40px rgba(44, 62, 53, 0.14);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
}

.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad {
  padding: 64px 0;
}
.section-pad-sm {
  padding: 42px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 40px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}
.btn-primary:hover {
  background: var(--slate);
  border-color: var(--slate);
}
.btn-outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}
.btn-outline:hover {
  background: var(--sage-dark);
  color: var(--white);
}
.btn-light {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--cream);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage-dark);
  background: rgba(122, 158, 126, 0.12);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}
.section-title p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 10px auto 0;
}

.divider {
  width: 44px;
  height: 2px;
  background: var(--sage);
  margin: 12px auto;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    transform 0.4s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}
header.header-hidden {
  transform: translateY(-100%);
}
header.header-scrolled {
  background: rgba(245, 240, 232, 0.97);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.01em;
}
.logo span {
  color: var(--sage-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 40px;
  color: var(--slate-mid);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--sage-dark);
  color: var(--white);
}
.nav-cta {
  margin-left: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.hamburger:hover {
  background: rgba(122, 158, 126, 0.15);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(245, 240, 232, 0.98);
  padding: 12px 20px 20px;
  border-top: 1px solid var(--cream-dark);
  max-width: 1060px;
  margin: 0 auto;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--slate-mid);
  transition: var(--transition);
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: var(--sage-dark);
  padding-left: 8px;
}

.page-top {
  padding-top: 72px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--slate);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 53, 0.72) 0%,
    rgba(78, 114, 84, 0.38) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 100px 20px 80px;
  margin: 0 auto;
  text-align: center;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-style: italic;
}
.hero-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.stats-bar {
  background: var(--sage-dark);
  color: var(--white);
  padding: 18px 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
}
.stat-item span {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid var(--sage-light);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(122, 158, 126, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
  color: var(--sage-dark);
}
.feature-card h4 {
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--sage-dark);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}
.about-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.about-text .tag {
  display: block;
  margin-bottom: 10px;
}
.about-text h2 {
  margin-bottom: 14px;
}
.about-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.about-list {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-light);
}
.about-list i {
  color: var(--sage-dark);
  margin-top: 3px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonials {
  background: var(--cream-dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--sage-light);
  position: absolute;
  top: 10px;
  left: 18px;
  line-height: 1;
}
.testimonial-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
  padding-top: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.82rem;
  font-weight: 500;
}
.author-role {
  font-size: 0.72rem;
  color: var(--text-light);
}
.stars {
  color: #c9a84c;
  font-size: 0.75rem;
  margin-bottom: 2px;
}

.cta-band {
  background: linear-gradient(120deg, var(--sage-dark) 0%, var(--slate) 100%);
  color: var(--white);
  text-align: center;
  padding: 56px 20px;
}
.cta-band h2 {
  font-style: italic;
  margin-bottom: 12px;
}
.cta-band p {
  opacity: 0.82;
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.step {
  text-align: center;
  padding: 24px 16px;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.step h4 {
  margin-bottom: 6px;
}
.step p {
  font-size: 0.82rem;
  color: var(--text-light);
}

.page-hero {
  background: linear-gradient(135deg, var(--slate) 0%, var(--sage-dark) 100%);
  color: var(--white);
  padding: 90px 20px 56px;
  text-align: center;
}
.page-hero h1 {
  font-style: italic;
  margin-bottom: 12px;
}
.page-hero p {
  opacity: 0.8;
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.session-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.session-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.session-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.session-body {
  padding: 20px 18px;
}
.session-body h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.session-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.session-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.session-meta span {
  font-size: 0.75rem;
  background: rgba(122, 158, 126, 0.12);
  color: var(--sage-dark);
  padding: 3px 9px;
  border-radius: 20px;
}

.programs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.program-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.program-item:hover {
  box-shadow: var(--shadow-lg);
}
.program-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(122, 158, 126, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.program-body h3 {
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.program-body p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.program-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.program-tags span {
  font-size: 0.72rem;
  background: rgba(122, 158, 126, 0.1);
  color: var(--sage-dark);
  padding: 2px 8px;
  border-radius: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.product-card:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card.featured {
  border-color: var(--sage-dark);
  position: relative;
}
.product-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-dark);
  color: var(--white);
  font-size: 0.68rem;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-icon {
  font-size: 2.2rem;
  color: var(--sage-dark);
  margin-bottom: 14px;
}
.product-card h3 {
  margin-bottom: 6px;
}
.product-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 16px;
}
.product-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}
.product-features {
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-features li {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.product-features i {
  color: var(--sage-dark);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.78rem;
}

.about-page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  box-shadow: var(--shadow);
}
.value-item i {
  font-size: 1.2rem;
  color: var(--sage-dark);
  margin-bottom: 8px;
}
.value-item h4 {
  margin-bottom: 4px;
}
.value-item p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 14px;
}
.team-card h4 {
  margin-bottom: 4px;
}
.team-card span {
  font-size: 0.78rem;
  color: var(--sage-dark);
}
.team-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
}

.contact-hero {
  background: var(--slate);
  color: var(--white);
  padding: 90px 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 30%,
    rgba(122, 158, 126, 0.25) 0%,
    transparent 70%
  );
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}
.contact-hero h1 {
  font-style: italic;
  margin-bottom: 12px;
}
.contact-hero p {
  opacity: 0.8;
  font-size: 0.95rem;
}
.contact-wave {
  height: 54px;
  display: block;
}

.contact-section {
  background: var(--cream);
  padding: 48px 0 64px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(122, 158, 126, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 2px;
}
.contact-info-text span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--slate);
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 18px;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--sage-dark);
  flex-shrink: 0;
}
.form-consent a {
  color: var(--sage-dark);
  text-decoration: underline;
}

.map-section {
  background: var(--cream-dark);
  padding: 48px 0;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 340px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.thankyou-main,
.notfound-main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 20px;
}
.thankyou-icon,
.notfound-icon {
  font-size: 3.5rem;
  color: var(--sage-dark);
  margin-bottom: 18px;
}
.notfound-icon {
  color: var(--sage-light);
}
.thankyou-main h1,
.notfound-main h1 {
  margin-bottom: 12px;
}
.thankyou-main p,
.notfound-main p {
  color: var(--text-light);
  font-size: 0.92rem;
  max-width: 420px;
  margin-bottom: 24px;
}

.policy-content {
  max-width: 780px;
  margin: 0 auto;
}
.policy-content h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.policy-content h3 {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--slate-mid);
}
.policy-content p,
.policy-content li {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}
.policy-content ul {
  padding-left: 18px;
  list-style: disc;
}
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.82rem;
}
.policy-content th,
.policy-content td {
  padding: 8px 12px;
  border: 1px solid var(--cream-dark);
  text-align: left;
}
.policy-content th {
  background: var(--cream-dark);
  font-weight: 500;
}

footer {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.72);
  padding: 24px 0 16px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
}
.footer-logo span {
  color: var(--sage-light);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--sage-light);
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--slate);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.8rem;
  line-height: 1.5;
}
.cookie-popup p {
  flex: 1;
  min-width: 160px;
  opacity: 0.85;
}
.cookie-popup a {
  color: var(--sage-light);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 8px;
}
.cookie-popup.hidden {
  display: none;
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-split,
  .about-page-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-badge {
    right: 0;
    bottom: -20px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-inner {
    gap: 22px;
  }
  .hero-content {
    padding: 80px 20px 60px;
  }
  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .features-grid,
  .sessions-grid,
  .products-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .cookie-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .form-card {
    padding: 22px 16px;
  }
}

@media (max-width: 360px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .stats-inner {
    gap: 14px;
  }
}
