/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --cream: #F7F0E3;
  --parchment: #EFE4CC;
  --terracotta: #B5654A;
  --terracotta-dark: #8F4A32;
  --brown: #3D2010;
  --brown-mid: #6B3D22;
  --sage: #7A9070;
  --sage-light: #C5D4BC;
  --text: #2A1A0E;
  --text-mid: #5C3D24;
  --text-light: #8A6A50;
  --border: #D8C8B0;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --max-w: 1120px;
  --section-pad: 80px 24px;
  --radius: 4px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 500;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-pad);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(181, 101, 74, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 240, 227, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: -0.01em;
}
.nav-logo span {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ===== HERO ===== */
.hero {
  padding: 0;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-content {
  padding: 80px 48px 80px 0;
  padding-left: 0;
}

.hero-content-wrap {
  max-width: 520px;
  margin-left: auto;
  padding-left: 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-light);
  color: var(--sage);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.hero h1 {
  color: var(--brown);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}

.hero-image {
  height: 100%;
  min-height: calc(100vh - 64px);
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 12%);
  z-index: 1;
}

/* ===== INTRO / ABOUT COURSE ===== */
.intro {
  background: var(--parchment);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(61, 32, 16, 0.15);
}

.intro-text .section-label { margin-bottom: 16px; }
.intro-text h2 { color: var(--brown); margin-bottom: 20px; }
.intro-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.975rem;
}

.format-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text-mid);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 400;
}

/* ===== FOR WHOM ===== */
.for-whom { background: var(--cream); }

.for-whom-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.for-whom-header h2 { color: var(--brown); margin-bottom: 12px; }
.for-whom-header p { color: var(--text-mid); font-size: 0.975rem; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s;
}
.audience-card:hover { transform: translateY(-4px); }

.audience-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.audience-card h3 {
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.audience-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== CURRICULUM ===== */
.curriculum { background: var(--brown); }

.curriculum .section-label { color: var(--sage-light); }
.curriculum h2 { color: var(--cream); margin-bottom: 12px; }
.curriculum-intro {
  color: rgba(247, 240, 227, 0.7);
  font-size: 0.975rem;
  margin-bottom: 48px;
  max-width: 560px;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.module-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(247, 240, 227, 0.12);
  transition: background 0.2s;
}
.module-item:last-child { border-bottom: none; }

.module-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  opacity: 0.6;
}

.module-content h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.module-content p {
  color: rgba(247, 240, 227, 0.65);
  font-size: 0.875rem;
  line-height: 1.7;
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.module-tag {
  background: rgba(247, 240, 227, 0.08);
  border: 1px solid rgba(247, 240, 227, 0.15);
  color: rgba(247, 240, 227, 0.7);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
}

/* ===== GALLERY ===== */
.gallery { background: var(--parchment); }

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.gallery-header h2 { color: var(--brown); margin-bottom: 12px; }
.gallery-header p { color: var(--text-mid); font-size: 0.975rem; max-width: 520px; margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-wide {
  grid-column: span 2;
}
.gallery-item-wide img { aspect-ratio: 2/1; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(61, 32, 16, 0.7), transparent);
  padding: 24px 16px 16px;
  color: var(--cream);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-header h2 { color: var(--brown); margin-bottom: 12px; }
.testimonials-header p { color: var(--text-mid); font-size: 0.975rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--terracotta);
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.925rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--sage);
  font-weight: 500;
  flex-shrink: 0;
}

.review-name {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--brown);
}
.review-location {
  font-size: 0.775rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq { background: var(--parchment); }

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-header h2 { color: var(--brown); margin-bottom: 12px; }
.faq-header p { color: var(--text-mid); font-size: 0.975rem; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--terracotta); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--terracotta);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 0.925rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===== LEAD FORM ===== */
.lead-form-section {
  background: var(--terracotta);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.form-text .section-label { color: rgba(255,255,255,0.6); }
.form-text h2 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.form-text p { color: rgba(255,255,255,0.8); font-size: 0.975rem; line-height: 1.75; }

.form-text-points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
}

.form-point::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(61, 32, 16, 0.2);
}

.contact-form h3 {
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.contact-form .form-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--terracotta);
}

.form-field textarea { resize: vertical; min-height: 80px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--terracotta);
  flex-shrink: 0;
}

.form-consent a { color: var(--terracotta); text-decoration: underline; }

.contact-form .btn { width: 100%; }

/* ===== FOOTER ===== */
.site-footer {
  background: #fbc58e;
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 240, 227, 0.12);
  margin-bottom: 32px;
}

.footer-brand .nav-logo { font-size: 1.4rem; margin-bottom: 14px; display: inline-block; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--terracotta);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--terracotta);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--terracotta);
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: var(--terracotta);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(247, 240, 227, 0.65); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--brown);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  z-index: 9999;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-text { flex: 1; }
.cookie-text p {
  font-size: 0.85rem;
  color: rgba(247, 240, 227, 0.8);
  line-height: 1.6;
}
.cookie-text a { color: var(--terracotta); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-direction: column;
}

.cookie-accept {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--terracotta-dark); }

.cookie-close {
  background: transparent;
  color: rgba(247, 240, 227, 0.5);
  border: 1px solid rgba(247, 240, 227, 0.2);
  padding: 9px 18px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.cookie-close:hover {
  color: var(--cream);
  border-color: rgba(247, 240, 227, 0.4);
}

/* ===== LEGAL / INNER PAGES ===== */
.page-hero {
  background: var(--brown);
  padding: 80px 24px 60px;
  text-align: center;
}
.page-hero h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p {
  color: rgba(247, 240, 227, 0.6);
  margin-top: 12px;
  font-size: 0.9rem;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--brown);
  margin: 36px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  color: var(--text-mid);
  font-size: 0.925rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-mid);
  font-size: 0.925rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-content a { color: var(--terracotta); text-decoration: underline; }

/* ===== SUCCESS PAGE ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--cream);
}

.success-card {
  max-width: 520px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 2.2rem;
}

.success-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 16px;
}
.success-card p {
  color: var(--text-mid);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.success-card .btn { margin-top: 32px; }

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --section-pad: 60px 24px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 60px 24px;
    order: 2;
  }

  .hero-content-wrap {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-image {
    order: 1;
    min-height: 280px;
    height: 280px;
  }

  .hero-image::before { display: none; }

  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-wide { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  :root { --section-pad: 48px 20px; }

  .hero-stats { gap: 20px; }
  .audience-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-wide { grid-column: span 1; }
  .gallery-item-wide img { aspect-ratio: 4/3; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .contact-form { padding: 28px 20px; }
  .cookie-banner { flex-direction: column; bottom: 16px; left: 16px; right: 16px; }
  .cookie-actions { flex-direction: row; width: 100%; }
  .cookie-accept, .cookie-close { flex: 1; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
