:root {
  --color-base: #f8fafb;
  --color-forest: #4a6741;
  --color-forest-light: #6b8b62;
  --color-moss: #8fa888;
  --color-sage: #a8c4a0;
  --color-sunlight: #e8dcc8;
  --color-river: #6b9eb8;
  --color-river-light: #8fb8cc;
  --color-stone: #5a5f63;
  --color-stone-light: #8a8f93;
  --color-dawn: #f0d9cc;
  --color-white: #ffffff;
  --color-overlay: rgba(248, 250, 251, 0.85);
  --color-glass: rgba(255, 255, 255, 0.7);
  --color-error: #c45c5c;
  --color-success: #5c9c6c;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --line-tight: 1.2;
  --line-snug: 1.4;
  --line-normal: 1.6;
  --line-relaxed: 1.8;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.06);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-slower: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1280px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  line-height: var(--line-normal);
  color: var(--color-stone);
  background-color: var(--color-base);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid rgba(106, 139, 98, 0.1);
}

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

.logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-forest);
  letter-spacing: -0.02em;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-forest);
  transition: var(--transition-base);
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list {
  display: flex;
  gap: var(--space-xl);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-stone);
  position: relative;
  padding: var(--space-sm) 0;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-forest);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

main {
  padding-top: var(--header-height);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--color-base);
  background-image:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--color-base) 93%, transparent) 0%,
      color-mix(in srgb, var(--color-sage) 82%, transparent) 50%,
      color-mix(in srgb, var(--color-moss) 78%, transparent) 100%
    ),
    url('../images/bg-image-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-forest);
  background: var(--color-glass);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: var(--weight-bold);
  line-height: var(--line-tight);
  color: var(--color-forest);
  margin-bottom: var(--space-xl);
}

.hero-subtitle {
  font-size: var(--text-xl);
  line-height: var(--line-relaxed);
  color: var(--color-stone);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
}

.hero-visual {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 80%;
  opacity: 0.15;
  z-index: 1;
}

.hero-shape {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--color-forest) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

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

.btn-primary:hover {
  background: var(--color-forest-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--color-glass);
  color: var(--color-forest);
  border: 1px solid rgba(74, 103, 65, 0.2);
}

.btn-secondary:hover {
  background: var(--color-white);
  border-color: var(--color-forest);
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-river);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-forest);
  margin-bottom: var(--space-lg);
  line-height: var(--line-snug);
}

.section-description {
  font-size: var(--text-lg);
  color: var(--color-stone-light);
  line-height: var(--line-relaxed);
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.rhythm-card {
  background: var(--color-glass);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid rgba(106, 139, 98, 0.1);
  transition: all var(--transition-slow);
}

.rhythm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-sage);
}

.rhythm-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-sage), var(--color-moss));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  color: var(--color-white);
  font-size: var(--text-2xl);
}

.rhythm-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

.rhythm-card p {
  color: var(--color-stone-light);
  line-height: var(--line-relaxed);
}

.philosophy-section {
  background: linear-gradient(180deg, var(--color-base) 0%, var(--color-sunlight) 100%);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.philosophy-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-forest);
  margin-bottom: var(--space-xl);
  line-height: var(--line-snug);
}

.philosophy-content p {
  font-size: var(--text-lg);
  color: var(--color-stone);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-lg);
}

.philosophy-visual {
  position: relative;
}

.philosophy-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.feature-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--color-base);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background: var(--color-glass);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-river);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--text-xl);
}

.feature-content h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-forest);
  margin-bottom: var(--space-sm);
}

.feature-content p {
  color: var(--color-stone-light);
  line-height: var(--line-normal);
}

.environments-section {
  background: linear-gradient(135deg, var(--color-moss) 0%, var(--color-forest) 100%);
  color: var(--color-white);
}

.environments-section .section-label {
  color: var(--color-dawn);
}

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

.environments-section .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.environment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.environment-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-slow);
}

.environment-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.environment-card i {
  font-size: var(--text-3xl);
  color: var(--color-dawn);
  margin-bottom: var(--space-lg);
  display: block;
}

.environment-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-md);
}

.environment-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: var(--line-relaxed);
}

.testimonials-section {
  background: var(--color-base);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-forest);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-xl);
}

.testimonial-author {
  font-weight: var(--weight-semibold);
  color: var(--color-stone);
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--color-stone-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-sunlight) 0%, var(--color-dawn) 100%);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-forest);
  margin-bottom: var(--space-lg);
}

.cta-content p {
  font-size: var(--text-lg);
  color: var(--color-stone);
  margin-bottom: var(--space-2xl);
}

.site-footer {
  background: var(--color-forest);
  color: var(--color-white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--line-relaxed);
  max-width: 300px;
}

.footer-column h4 {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  color: var(--color-sage);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.footer-contact i {
  color: var(--color-sage);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
  color: var(--color-white);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: var(--space-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cookie-text h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-forest);
  margin-bottom: var(--space-sm);
}

.cookie-text p {
  color: var(--color-stone-light);
  font-size: var(--text-sm);
  max-width: 600px;
}

.cookie-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-settings {
  display: none;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-settings.visible {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-info h4 {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-forest);
  margin-bottom: var(--space-xs);
}

.cookie-category-info p {
  font-size: var(--text-xs);
  color: var(--color-stone-light);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-stone-light);
  transition: var(--transition-base);
  border-radius: var(--radius-full);
}

.toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  transition: var(--transition-base);
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--color-forest);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-hero {
  padding: var(--space-5xl) 0 var(--space-4xl);
  background: linear-gradient(135deg, var(--color-base) 0%, var(--color-sage) 100%);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  color: var(--color-forest);
  margin-bottom: var(--space-lg);
}

.page-hero p {
  font-size: var(--text-xl);
  color: var(--color-stone);
  max-width: 600px;
  margin: 0 auto;
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.practice-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.practice-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.practice-content {
  padding: var(--space-xl);
}

.practice-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

.practice-content p {
  color: var(--color-stone-light);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-lg);
}

.practice-meta {
  display: flex;
  gap: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-stone-light);
}

.practice-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.practice-meta i {
  color: var(--color-river);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-forest);
  margin-bottom: var(--space-lg);
}

.contact-info > p {
  color: var(--color-stone);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-2xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-sage);
  color: var(--color-forest);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-forest);
  margin-bottom: var(--space-xs);
}

.contact-item-content p {
  color: var(--color-stone-light);
  font-size: var(--text-sm);
}

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

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

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-forest);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 1px solid rgba(106, 139, 98, 0.2);
  border-radius: var(--radius-md);
  background: var(--color-base);
  color: var(--color-stone);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(74, 103, 65, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-error);
}

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

.error-message {
  font-size: var(--text-xs);
  color: var(--color-error);
  margin-top: var(--space-xs);
  display: none;
}

.form-group.has-error .error-message {
  display: block;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-forest);
}

.checkbox-group label {
  font-size: var(--text-sm);
  color: var(--color-stone);
  line-height: var(--line-normal);
}

.checkbox-group a {
  color: var(--color-forest);
  text-decoration: underline;
}

.thank-you-section {
  min-height: calc(100vh - var(--header-height) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 500px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-success);
  color: var(--color-white);
  border-radius: 50%;
  font-size: var(--text-3xl);
  margin: 0 auto var(--space-xl);
}

.thank-you-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-forest);
  margin-bottom: var(--space-lg);
}

.thank-you-content p {
  color: var(--color-stone);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-2xl);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-lg);
}

.policy-content h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-forest);
  margin-bottom: var(--space-md);
}

.policy-meta {
  font-size: var(--text-sm);
  color: var(--color-stone-light);
  margin-bottom: var(--space-3xl);
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--color-forest);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

.policy-content h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-forest);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-content p {
  color: var(--color-stone);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-lg);
}

.policy-content ul {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.policy-content li {
  color: var(--color-stone);
  line-height: var(--line-relaxed);
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.policy-content a {
  color: var(--color-forest);
  text-decoration: underline;
}

.disclaimer {
  background: var(--color-sunlight);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-3xl);
  margin-top: var(--space-4xl);
  margin-bottom: var(--space-4xl);
  margin-left: auto;
  margin-right: auto;
}

.disclaimer h3 {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-forest);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.disclaimer p {
  font-size: var(--text-sm);
  color: var(--color-stone);
  line-height: var(--line-relaxed);
  margin-bottom: 0;
}

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

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--color-white);
  font-size: var(--text-sm);
}

@media (max-width: 1024px) {
  :root {
    --text-6xl: 3.5rem;
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
  }

  .rhythm-grid,
  .environment-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .philosophy-visual {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.5rem;
    --header-height: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-xl);
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-md);
  }

  .nav-link {
    font-size: var(--text-lg);
    padding: var(--space-md) 0;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-group {
    justify-content: center;
  }

  .rhythm-grid,
  .environment-cards,
  .features-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --space-4xl: 4rem;
    --space-5xl: 5rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .btn {
    width: 100%;
  }

  .btn-group {
    flex-direction: column;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .practices-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
