
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');
:root {
  --clr-bg:         #f5f3ef;
  --clr-bg-alt:     #edeae3;
  --clr-surface:    #ffffff;
  --clr-border:     #dedad2;
  --clr-text:       #1c1c1a;
  --clr-text-muted: #6b6860;
  --clr-accent:     #3d6b5e;
  --clr-accent-lt:  #5a8f7f;
  --clr-accent-dk:  #2a4d43;
  --clr-gold:       #b8975a;
  --clr-gold-lt:    #d4b87a;
  --clr-white:      #ffffff;
  --clr-dark:       #111210;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  4rem;
  --fs-5xl:  5.5rem;

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

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1240px;
  --header-h: 80px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section--alt { background: var(--clr-bg-alt); }
.section--dark { background: var(--clr-dark); color: var(--clr-bg); }
.section--accent { background: var(--clr-accent); color: var(--clr-white); }

.text-center { text-align: center; }
.text-muted { color: var(--clr-text-muted); }
.display-tag {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-gold);
}
h1,h2,h3,h4,h5 { font-family: var(--ff-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 6vw, var(--fs-5xl)); }
h2 { font-size: clamp(1.8rem, 4vw, var(--fs-3xl)); }
h3 { font-size: clamp(1.3rem, 2.5vw, var(--fs-xl)); }
h4 { font-size: var(--fs-lg); }
p { font-size: var(--fs-md); color: var(--clr-text-muted); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--clr-gold);
}

.section-heading { margin-bottom: 20px; }
.section-intro { max-width: 560px; font-size: var(--fs-md); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border: 2px solid var(--clr-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-dk);
  border-color: var(--clr-accent-dk);
}
.btn-outline {
  background: transparent;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
}
.btn-outline:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}
.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--clr-white);
}
.btn-gold {
  background: var(--clr-gold);
  color: var(--clr-white);
  border: 2px solid var(--clr-gold);
}
.btn-gold:hover {
  background: var(--clr-gold-lt);
  border-color: var(--clr-gold-lt);
}
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(245,243,239,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.site-header--dark {
  background: transparent;
}
.site-header--dark.scrolled {
  background: rgba(17,18,16,0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--clr-text);
  line-height: 1;
}
.site-header--dark .logo-text { color: var(--clr-white); }
.site-header--dark.scrolled .logo-text { color: var(--clr-white); }
.main-nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--clr-text);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--clr-accent);
  transition: width var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--clr-accent); }

.site-header--dark .nav-link { color: rgba(255,255,255,0.85); }
.site-header--dark .nav-link:hover { color: var(--clr-white); }
.site-header--dark .nav-link::after { background: var(--clr-gold); }
.site-header--dark.scrolled .nav-link { color: rgba(255,255,255,0.85); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.site-header--dark .hamburger span { background: var(--clr-white); }

.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;
  position: fixed;
  inset: 0;
  background: var(--clr-surface);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity var(--transition), transform var(--transition);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav .nav-link {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  color: var(--clr-text);
}
.mobile-nav .nav-link::after { display: none; }
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,18,16,0.72) 0%, rgba(61,107,94,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--clr-white);
  max-width: 720px;
}
.hero-content .display-tag { color: var(--clr-gold-lt); }
.hero-content h1 { color: var(--clr-white); margin-bottom: 24px; font-style: italic; }
.hero-content p { color: rgba(255,255,255,0.82); font-size: var(--fs-lg); margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}
.card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 28px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: var(--fs-base); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.split-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.split-img-badge .big { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 600; color: var(--clr-accent); line-height: 1; }
.split-img-badge small { font-size: var(--fs-xs); color: var(--clr-text-muted); display: block; margin-top: 4px; }
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--clr-accent);
  padding: 48px 0;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 32px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 300;
  color: var(--clr-white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--clr-accent);
  flex-shrink: 0;
}
.feature-icon ph-icon, .feature-icon i { font-size: 26px; }
.testimonial {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 5rem;
  color: var(--clr-gold);
  line-height: 0.5;
  position: absolute;
  top: 28px; left: 28px;
  opacity: 0.4;
}
.testimonial p { font-size: var(--fs-md); color: var(--clr-text); padding-top: 20px; }
.testimonial-author { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong { display: block; font-size: var(--fs-base); font-weight: 500; }
.testimonial-author span { font-size: var(--fs-sm); color: var(--clr-text-muted); }
.program-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.program-card-img { width: 100%; height: 240px; object-fit: cover; }
.program-card-body { padding: 28px; }
.program-card-tag {
  display: inline-block;
  background: var(--clr-bg-alt);
  color: var(--clr-accent);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.program-card-body h3 { margin-bottom: 10px; }
.program-card-body p { font-size: var(--fs-base); margin-bottom: 20px; }
.program-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.program-meta-item { display: flex; align-items: center; gap: 6px; font-size: var(--fs-sm); color: var(--clr-text-muted); }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.schedule-table th {
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 14px 20px;
  text-align: left;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.schedule-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--clr-border);
  font-size: var(--fs-sm);
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--clr-bg-alt); }
.schedule-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 500;
}
.badge-yoga    { background: #e8f5f1; color: #2a8060; }
.badge-pt      { background: #f0ede5; color: #7a6030; }
.badge-mind    { background: #edf0f7; color: #3d5080; }
.contact-form { max-width: 640px; }
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--clr-text);
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: var(--clr-surface);
  font-size: var(--fs-base);
  color: var(--clr-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(61,107,94,0.12);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-check { display: flex; align-items: flex-start; gap: 12px; }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check label { margin-bottom: 0; font-weight: 400; font-size: var(--fs-sm); color: var(--clr-text-muted); }

.form-msg { padding: 14px 20px; border-radius: var(--radius-md); margin-top: 16px; font-size: var(--fs-sm); }
.form-msg.success { background: #e8f5f0; color: #1f7a56; border: 1px solid #b3dece; }
.form-msg.error   { background: #fde8e8; color: #b33030; border: 1px solid #f5b3b3; }
.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--clr-bg-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 22px;
}
.contact-info-item h4 { margin-bottom: 4px; font-family: var(--ff-body); font-weight: 500; font-size: var(--fs-base); }
.contact-info-item p { font-size: var(--fs-sm); margin: 0; }
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 80px;
  background: var(--clr-bg-alt);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(61,107,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-img {
  position: relative;
  margin: 48px auto 0;
  max-width: 1100px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 20px;
  justify-content: center;
}
.breadcrumb a { color: var(--clr-accent); }
.breadcrumb span { font-size: 10px; }
.team-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card-img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-card-body { padding: 24px; }
.team-card-body h3 { margin-bottom: 4px; font-size: var(--fs-lg); }
.team-card-role { color: var(--clr-gold); font-size: var(--fs-sm); font-weight: 500; margin-bottom: 12px; display: block; }
.team-card-body p { font-size: var(--fs-sm); }
.value-item { text-align: center; padding: 32px 24px; }
.value-item .feature-icon { margin: 0 auto 20px; }
.faq-item {
  border-bottom: 1px solid var(--clr-border);
  padding: 24px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--clr-text);
}
.faq-question .faq-icon { color: var(--clr-accent); flex-shrink: 0; font-size: 20px; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-top: 16px; }
.steps { position: relative; }
.step { display: flex; gap: 28px; margin-bottom: 48px; }
.step:last-child { margin-bottom: 0; }
.step-num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--clr-gold);
  line-height: 1;
  width: 60px;
  flex-shrink: 0;
}
.step-body h3 { margin-bottom: 8px; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text-muted);
  background: var(--clr-surface);
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
.cta-banner {
  background: var(--clr-dark);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,107,94,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-text h2 { color: var(--clr-white); margin-bottom: 12px; }
.cta-banner-text p { color: rgba(255,255,255,0.65); max-width: 440px; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: var(--fs-xl); margin: 48px 0 16px; }
.legal-content h3 { font-size: var(--fs-lg); margin: 32px 0 12px; font-family: var(--ff-body); font-weight: 500; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 24px; list-style: disc; }
.legal-content ul li { margin-bottom: 8px; font-size: var(--fs-md); color: var(--clr-text-muted); }
.legal-meta { font-size: var(--fs-sm); color: var(--clr-text-muted); margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--clr-border); }
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  background: var(--clr-dark);
  color: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  max-width: 620px;
  width: calc(100% - 40px);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  animation: slideUp 0.4s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner.hidden { display: none; }
.cookie-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; color: var(--clr-gold); }
.cookie-body { flex: 1; }
.cookie-body p { font-size: var(--fs-sm); color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.cookie-body p a { color: var(--clr-gold-lt); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 22px; font-size: var(--fs-xs); }
.site-footer {
  background: var(--clr-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: var(--clr-white); }
.footer-brand p { font-size: var(--fs-sm); margin: 16px 0 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--clr-accent); border-color: var(--clr-accent); color: var(--clr-white); }

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover { color: var(--clr-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
}
.footer-bottom p { font-size: var(--fs-xs); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: var(--fs-xs); color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--clr-white); }
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section { padding: 72px 0; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }

  .cta-banner { flex-direction: column; padding: 48px 32px; text-align: center; }
  .stats-bar { padding: 32px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-hero-img { height: 240px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .cookie-banner { flex-direction: column; gap: 12px; bottom: 16px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
}
