/* ============================================================
   Антилагерь на реке Реж — Design System & Styles
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* --- Colors --- */
  --color-bg: #FDF6EC;
  --color-bg-alt: #F5EDE0;
  --color-bg-card: #FFFBF4;
  --color-primary: #D46A3D;
  --color-primary-dark: #B8552E;
  --color-primary-light: #E8895E;
  --color-secondary: #2D5A3D;
  --color-secondary-dark: #1E3D28;
  --color-secondary-light: #3D7A52;
  --color-accent: #E8B84B;
  --color-accent-dark: #D4A234;
  --color-accent-light: #F0D07A;
  --color-text: #2C2420;
  --color-text-light: #7A6A5E;
  --color-text-lighter: #A89888;
  --color-border: #EDE3D6;
  --color-border-light: #F5EDE0;
  --color-white: #FFFFFF;
  --color-danger: #C0392B;
  --color-success: #27AE60;

  /* --- Typography --- */
  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* --- Spacing Scale (8px base) --- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* --- Border Radius --- */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  /* --- Shadows --- */
  --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 36, 32, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 36, 32, 0.12);
  --shadow-xl: 0 12px 60px rgba(44, 36, 32, 0.16);
  --shadow-button: 0 4px 16px rgba(212, 106, 61, 0.35);
  --shadow-button-hover: 0 6px 24px rgba(212, 106, 61, 0.45);

  /* --- Transitions --- */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* --- Layout --- */
  --max-width: 1200px;
  --header-height: 72px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

.heading--xl {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

.heading--lg {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: -0.01em;
}

.heading--md {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.heading--sm {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.section__title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.7;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ===== SECTION ===== */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.section--dark .section__title,
.section--dark .section__subtitle {
  color: var(--color-white);
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  height: var(--header-height);
}

.header--scrolled {
  background: rgba(253, 246, 236, 0.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-text);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.logo:hover {
  color: var(--color-primary);
}

.nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(253, 246, 236, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  padding: var(--space-lg);
  gap: var(--space-md);
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}

.nav--open {
  display: flex;
}

.nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

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

.nav a:hover::after {
  width: 100%;
}

.header__cta {
  display: none;
}

.header__phone {
  display: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition-fast);
}

.header__phone:hover {
  opacity: 0.7;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger--active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-button);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-button);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(232, 184, 75, 0.35);
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 184, 75, 0.45);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

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

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

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

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 106, 61, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(232, 184, 75, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(45, 90, 61, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #FDF6EC 0%, #F5EDE0 50%, #FDF6EC 100%);
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232C2420' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-accent);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  margin-bottom: var(--space-lg);
  line-height: 1.05;
  color: var(--color-white);
  font-weight: 900;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero__title .emoji {
  display: inline-block;
  font-size: 0.9em;
  animation: float 3s ease-in-out infinite;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--color-white);
  line-height: 1.65;
  max-width: 650px;
  margin: 0 auto var(--space-xl);
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero__description {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-3xl);
}

.hero__actions .btn--secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__actions .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  box-shadow: none;
}

/* ===== HERO STATS ===== */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

.stat-card__icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.stat-card__text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1.3;
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.section-divider--flip svg {
  transform: scaleY(-1);
}

/* ===== IDEOLOGY SECTION ===== */
.ideology__quote {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.ideology__quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.ideology__quote p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.comparison-card--bad {
  background: linear-gradient(135deg, #FFF5F0, #FFF0E8);
  border: 1px solid rgba(192, 57, 43, 0.1);
}

.comparison-card--good {
  background: linear-gradient(135deg, #F0F8F0, #E8F4E8);
  border: 1px solid rgba(39, 174, 96, 0.1);
}

.comparison-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-border);
}

.comparison-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.comparison-card__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-card__item-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

/* ===== DISCIPLINE SECTION ===== */
.discipline__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .discipline__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.discipline__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.discipline__card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-border);
}

.discipline__card-icon {
  font-size: 1.8rem;
}

.discipline__card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.discipline__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.discipline__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.discipline__item-icon {
  font-size: 1.2rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.discipline__note {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(45, 90, 61, 0.06);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-weight: 600;
}

/* ===== DETOX SECTION ===== */
.detox {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 106, 61, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(232, 184, 75, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #F5EDE0 0%, #FDF6EC 100%);
}

.detox__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
}

@media (min-width: 600px) {
  .detox__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.detox__step {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: all var(--transition-base);
}

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

.detox__step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
  margin-bottom: var(--space-sm);
}

.detox__step-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.detox__step-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.detox__step-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.detox__statement {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 800px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.detox__statement::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.3'%3E%3Cpath d='M20 0v40M0 20h40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.detox__statement p {
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.detox__cta {
  text-align: center;
}

/* ===== TEAM SECTION ===== */
.team__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 600px) {
  .team__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: all var(--transition-base);
}

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

.team__card-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 16px rgba(212, 106, 61, 0.2);
}

.team__card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.team__card-role {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.team__card-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.team__info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 600px) {
  .team__info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .team__info-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team__info-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.team__info-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.team__info-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.team__info-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.team__invitation {
  background: linear-gradient(135deg, rgba(212, 106, 61, 0.08), rgba(232, 184, 75, 0.08));
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid rgba(212, 106, 61, 0.1);
}

.team__invitation p {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.6;
}

/* ===== PROGRAM SECTION ===== */
.program__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 500px) {
  .program__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .program__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.program__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.program__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.program__card-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.program__card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.program__card-link {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  margin-top: var(--space-sm);
  transition: opacity var(--transition-fast);
}

.program__card-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.food__cta-link {
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-decoration: none;
  margin-top: var(--space-sm);
  position: relative;
}

.food__cta-link:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.ideology__link {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.ideology__vk-link {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid rgba(212, 106, 61, 0.25);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.ideology__vk-link:hover {
  background: rgba(212, 106, 61, 0.06);
  border-color: var(--color-primary);
}

.schedule__vk-link {
  text-align: center;
  margin-top: var(--space-md);
}

.schedule__vk-link a {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.schedule__vk-link a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.program__card-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.program__cta-box {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1E3D28 100%);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  box-shadow: 0 8px 40px rgba(45, 90, 61, 0.3);
  position: relative;
  overflow: hidden;
}

.program__cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(232, 184, 75, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 106, 61, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.program__cta-icon {
  font-size: 2.8rem;
  margin-bottom: var(--space-md);
  position: relative;
}

.program__cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  position: relative;
}

.program__cta-desc {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  opacity: 0.9;
  max-width: 620px;
  margin: 0 auto var(--space-xl);
  position: relative;
}

.program__cta-footer {
  position: relative;
}

/* ===== FOOD SECTION ===== */
.food__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 600px) {
  .food__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.food__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.food__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.food__card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.food__card-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
}

.food__details {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 600px) {
  .food__details {
    grid-template-columns: repeat(2, 1fr);
  }
}

.food__detail-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.food__detail-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.food__detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.food__detail-tag {
  background: rgba(45, 90, 61, 0.08);
  color: var(--color-secondary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

.food__quote {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  margin-bottom: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.food__quote p {
  font-size: 1rem;
  line-height: 1.7;
}

.food__cta-box {
  background: linear-gradient(135deg, #D46A3D 0%, #B85A30 50%, #8A4520 100%);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: 0 8px 40px rgba(212, 106, 61, 0.3);
  position: relative;
  overflow: hidden;
}

.food__cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle at 30% 50%, #fff 0%, transparent 50%);
  pointer-events: none;
}

.food__cta-text {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  opacity: 0.95;
  position: relative;
}

.food__cta-box .btn--primary {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.food__cta-box .btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

.detox__cta {
  text-align: center;
}

.detox__cta-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== LOCATIONS SECTION ===== */
.locations__grid {
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.location__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

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

.location__card-header {
  padding: var(--space-2xl) var(--space-xl);
  color: var(--color-white);
  position: relative;
}

.location__card-header--aramashevo {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.location__card-header--glinskoe {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
}

.location__card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.location__card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.location__card-type {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 600;
}

.location__card-body {
  background: var(--color-bg-card);
  padding: var(--space-xl);
}

.location__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.location__amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  background: var(--color-bg-alt);
  padding: 6px 12px;
  border-radius: 100px;
  color: var(--color-text-light);
}

.location__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-top: var(--space-md);
}

.location__price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.location__price-note {
  font-size: 0.78rem;
  color: var(--color-text-lighter);
  margin-top: var(--space-xs);
  line-height: 1.5;
}

.location__price span {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ===== SCHEDULE SECTION ===== */
.schedule__table-wrapper {
  overflow-x: auto;
  margin-bottom: var(--space-2xl);
}

.schedule__table {
  width: 100%;
  min-width: 600px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.schedule__table th {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: var(--space-md);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
}

.schedule__table td {
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.9rem;
}

.schedule__table tr:last-child td {
  border-bottom: none;
}

.schedule__table tr:hover td {
  background: var(--color-bg-alt);
}

.schedule__badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.schedule__badge--green {
  background: rgba(39, 174, 96, 0.12);
  color: var(--color-success);
}

.schedule__badge--yellow {
  background: rgba(232, 184, 75, 0.2);
  color: var(--color-accent-dark);
}

.schedule__badge--red {
  background: rgba(192, 57, 43, 0.1);
  color: var(--color-danger);
}

.schedule__promos {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .schedule__promos {
    grid-template-columns: 1fr 1fr;
  }
}

.schedule__promo {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.schedule__promo-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.schedule__promo-text {
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 600;
}

.schedule__promo-price {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
}

.schedule__alert {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(212, 106, 61, 0.08);
  border: 1px solid rgba(212, 106, 61, 0.2);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
  text-align: center;
}

.schedule__alert strong {
  color: var(--color-primary);
}

/* ===== FAQ SECTION ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq__item {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq__item:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__question-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.faq__question-text {
  flex: 1;
}

.faq__question-arrow {
  font-size: 0.8rem;
  transition: transform var(--transition-base);
  color: var(--color-text-light);
  flex-shrink: 0;
}

.faq__item--open .faq__question-arrow {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq__item--open .faq__answer {
  max-height: 500px;
}

.faq__answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ===== FORM SECTION ===== */
.form__wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}

.form__group {
  margin-bottom: var(--space-lg);
}

.form__label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.form__input,
.form__select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: all var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 106, 61, 0.1);
}

.form__input::placeholder {
  color: var(--color-text-lighter);
}

.form__input--error {
  border-color: var(--color-danger);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form__error {
  display: none;
  font-size: 0.85rem;
  color: var(--color-danger);
  margin-top: var(--space-xs);
  font-weight: 600;
}

.form__error--visible {
  display: block;
}

.form__select-wrapper {
  position: relative;
}

.form__select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  pointer-events: none;
  font-size: 0.9rem;
}

.form__select {
  padding-right: 40px;
  cursor: pointer;
}

.form__submit {
  margin-top: var(--space-lg);
}

.form__privacy {
  font-size: 0.8rem;
  color: var(--color-text-lighter);
  text-align: center;
  margin-top: var(--space-md);
  line-height: 1.5;
}

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form__success--visible {
  display: block;
}

.form__success-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.form__success-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.form__success-text {
  color: var(--color-text-light);
}

/* ===== MARTIAL ARTS ===== */
.martial__content {
  max-width: 900px;
  margin: 0 auto;
}

.martial__trainer {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  margin-bottom: var(--space-2xl);
}

.martial__trainer-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.martial__trainer-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.martial__trainer-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.martial__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .martial__features {
    grid-template-columns: 1fr 1fr;
  }
}

.martial__feature {
  display: flex;
  gap: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

.martial__feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.martial__feature h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.martial__feature p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

.martial__badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .martial__badges {
    grid-template-columns: 1fr 1fr;
  }
}

.martial__badge {
  display: flex;
  gap: var(--space-md);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  align-items: flex-start;
}

.martial__badge--good {
  background: rgba(45, 90, 61, 0.08);
  border: 1px solid rgba(45, 90, 61, 0.2);
}

.martial__badge--bad {
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.12);
}

.martial__badge-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.martial__badge strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--color-text);
}

.martial__badge p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

.martial__badge--good strong { color: var(--color-secondary); }
.martial__badge--bad strong { color: var(--color-danger); }

/* ===== KILLER OFFER ===== */
.killer-offer {
  position: relative;
  padding: var(--space-5xl) 0;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1E3D28 50%, #0F261A 100%);
  color: var(--color-white);
  overflow: hidden;
}

.killer-offer__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(232, 184, 75, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 106, 61, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.killer-offer__content {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.killer-offer__badge {
  display: inline-block;
  background: rgba(232, 184, 75, 0.2);
  border: 1px solid rgba(232, 184, 75, 0.3);
  color: var(--color-accent);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.killer-offer__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.killer-offer__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.killer-offer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto var(--space-3xl);
}

@media (min-width: 768px) {
  .killer-offer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.killer-offer__card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  transition: all var(--transition-base);
}

.killer-offer__card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.killer-offer__card-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.killer-offer__card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.killer-offer__card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

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

.killer-offer__guarantee {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(232, 184, 75, 0.1);
  border: 1px solid rgba(232, 184, 75, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.killer-offer__guarantee-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.killer-offer__guarantee p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.killer-offer__guarantee strong {
  color: var(--color-accent);
}

.killer-offer__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-lg);
}

@media (min-width: 600px) {
  .killer-offer__buttons {
    flex-direction: row;
  }
}

.btn--offer {
  background: var(--color-accent);
  color: var(--color-secondary-dark);
  border-color: var(--color-accent);
  font-weight: 800;
  box-shadow: 0 4px 24px rgba(232, 184, 75, 0.35);
}

.btn--offer:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(232, 184, 75, 0.45);
}

.btn--offer-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--offer-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.killer-offer__footnote {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-secondary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
}

.footer__wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  line-height: 0;
  display: block;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 600px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  display: block;
  color: var(--color-white);
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.7;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity var(--transition-fast);
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

@media (min-width: 600px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ===== IMAGE BACKGROUNDS ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(44, 36, 32, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__pattern {
  display: none;
}

.detox {
  position: relative;
  overflow: hidden;
}

.detox__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.detox__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detox > .container {
  position: relative;
  z-index: 1;
}

.section--food {
  position: relative;
  overflow: hidden;
}

.food__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.food__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--food > .container {
  position: relative;
  z-index: 1;
}

.section--locations {
  position: relative;
  overflow: hidden;
}

.locations__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.locations__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--locations > .container {
  position: relative;
  z-index: 1;
}

/* Section with image overlay — dim bg for readability */
.detox::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(253, 246, 236, 0.92), rgba(245, 237, 224, 0.88));
}

.detox > .container { z-index: 2; }

.section--food::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(253, 246, 236, 0.92), rgba(245, 237, 224, 0.88));
}

.section--food > .container { z-index: 2; }

.section--locations::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(253, 246, 236, 0.9), rgba(245, 237, 224, 0.85));
}

.section--locations > .container { z-index: 2; }

/* ===== PROGRAM CARD DESCRIPTIONS ===== */
.program__card-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-top: var(--space-sm);
}

.program__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

/* ===== IDEOLOGY LEAD ===== */
.ideology__lead {
  text-align: center;
  font-size: 1.15rem;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  font-weight: 600;
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--scale {
  transform: scale(0.9);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delays for grid children */
.stagger-children > .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > .reveal:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > .reveal:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > .reveal:nth-child(8) { transition-delay: 0.4s; }

/* Float animation for emoji */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
}

/* Pulse animation for badges */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Fade in for header */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header__inner {
  animation: fadeInDown 0.6s ease;
}

/* Hero content animation */
.hero__content > * {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.2s; }
.hero__content > *:nth-child(3) { animation-delay: 0.3s; }
.hero__content > *:nth-child(4) { animation-delay: 0.4s; }
.hero__content > *:nth-child(5) { animation-delay: 0.5s; }
.hero__content > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
/* Tablet and up */
@media (min-width: 768px) {
  :root {
    --header-height: 80px;
  }

  .hamburger {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: none;
    backdrop-filter: none;
    padding: 0;
    gap: var(--space-lg);
    box-shadow: none;
    overflow: visible;
  }

  .nav a {
    font-size: 0.85rem;
    padding: 0;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__phone {
    display: inline;
  }

  .section {
    padding: var(--space-5xl) 0;
  }

  .section__title {
    margin-bottom: var(--space-xl);
  }

  .ideology__quote {
    padding: var(--space-3xl);
  }

  .comparison-card {
    padding: var(--space-3xl);
  }

  .detox__statement {
    padding: var(--space-3xl);
  }

  .program__cta-box {
    padding: var(--space-3xl);
  }

  .form__wrapper {
    padding: var(--space-3xl);
  }

  .location__card-header {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .food__quote {
    padding: var(--space-2xl);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.2rem;
  }

  .hero__stats {
    gap: var(--space-lg);
  }
}
