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

:root {
  --bg: #FDFAF4;
  --surface: #F5EDE0;
  --surface-dark: #EAE0CF;
  --brown: #3E2009;
  --brown-mid: #7C5127;
  --amber: #C47A1E;
  --amber-hover: #A86516;
  --sage: #5D7050;
  --text: #2C2420;
  --text-muted: #7A6F65;
  --border: #DDD3C4;
  --white: #FFFFFF;
  --max-width: 1120px;
  --radius: 4px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  color: var(--brown);
}

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

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

ul, ol {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 122, 30, 0.35);
}

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

.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 250, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(62, 32, 9, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--amber);
}

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

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.header-cta {
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(62, 32, 9, 0.78) 0%,
    rgba(62, 32, 9, 0.55) 55%,
    rgba(62, 32, 9, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(196, 122, 30, 0.15);
  border: 1px solid rgba(196, 122, 30, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--amber);
  font-style: normal;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
}

/* ─── FOR WHOM ─── */
.for-whom {
  padding: 100px 0;
  background: var(--surface);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.whom-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whom-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(62, 32, 9, 0.1);
}

.whom-icon {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.whom-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.whom-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── CURRICULUM ─── */
.curriculum {
  padding: 100px 0;
}

.curriculum-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 20px;
}

.curriculum-modules {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.module {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.module:first-child {
  padding-top: 0;
}

.module-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
  width: 36px;
  line-height: 1;
  padding-top: 4px;
}

.module-body h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.module:hover .module-body h4 {
  color: var(--amber);
}

.module-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.curriculum-image {
  position: sticky;
  top: 100px;
}

.curriculum-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.curriculum-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--surface);
  color: var(--brown-mid);
  border: 1px solid var(--border);
}

/* ─── FORMAT ─── */
.format {
  padding: 100px 0;
  background: var(--brown);
  color: var(--white);
}

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

.format .section-tag {
  color: rgba(196, 122, 30, 0.9);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.format-item {
  padding: 36px 32px;
  background: var(--brown);
  transition: background 0.2s;
}

.format-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.format-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 12px;
}

.format-item h4 {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
}

.format-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ─── INSTRUCTOR ─── */
.instructor {
  padding: 100px 0;
  background: var(--surface);
}

.instructor-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}

.instructor-photo {
  position: relative;
}

.instructor-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.instructor-photo::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--amber);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.instructor-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.instructor-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.instructor-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.instructor-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown-mid);
}

.fact-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ─── RESULTS ─── */
.results {
  padding: 100px 0;
}

.results-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.before-after {
  margin-bottom: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(62, 32, 9, 0.15);
}

.before-after img {
  width: 100%;
  display: block;
}

.before-after-label {
  display: flex;
  background: var(--brown);
}

.label-side {
  flex: 1;
  padding: 14px 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.label-side.after {
  color: var(--amber);
  border-left: 1px solid rgba(255,255,255,0.1);
}

.results-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(62, 32, 9, 0.1);
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ─── PRICING ─── */
.pricing {
  padding: 100px 0;
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(62, 32, 9, 0.12);
}

.pricing-card.featured {
  border-color: var(--amber);
  background: var(--brown);
  color: var(--white);
}

.pricing-card.featured h3 {
  color: var(--white);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-name {
  color: var(--amber);
}

.pricing-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(196, 122, 30, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pricing-card.featured .check {
  background: rgba(196, 122, 30, 0.3);
}

.check::after {
  content: '✓';
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--amber);
}

.pricing-cta {
  width: 100%;
}

/* ─── LEAD FORM ─── */
.lead-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brown) 0%, #5C3010 100%);
  position: relative;
  overflow: hidden;
}

.lead-form-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(196, 122, 30, 0.08);
}

.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(196, 122, 30, 0.05);
}

.lead-form-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.lead-form-inner .section-title {
  color: var(--white);
  margin-bottom: 14px;
}

.lead-form-inner .section-lead {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 48px;
}

.lead-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.12);
}

.form-group select {
  color: rgba(255, 255, 255, 0.7);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-group select option {
  background: #3E2009;
  color: #FFFFFF;
}

.form-submit {
  width: 100%;
  padding: 16px 32px;
  font-size: 0.9375rem;
  margin-top: 8px;
}

.form-privacy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.form-privacy a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-error {
  font-size: 0.78rem;
  color: #FF7B7B;
  margin-top: 4px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #FF7B7B;
}

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

/* ─── FAQ ─── */
.faq {
  padding: 100px 0;
}

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

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown);
  transition: color 0.2s;
  user-select: none;
}

.faq-question:hover {
  color: var(--amber);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.faq-icon svg {
  transition: transform 0.3s;
  width: 12px;
  height: 12px;
}

.faq-item.open .faq-icon {
  background: var(--amber);
  border-color: var(--amber);
}

.faq-item.open .faq-icon svg path {
  stroke: white;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

/* ─── TRUST BLOCK ─── */
.trust {
  padding: 60px 0;
  background: var(--surface-dark);
  border-top: 1px solid var(--border);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-icon {
  font-size: 1.25rem;
  opacity: 0.7;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.65);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 14px;
  display: inline-block;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: right;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--brown);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
}

.cookie-text a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.btn-cookie-decline {
  padding: 10px 20px;
  font-size: 0.8rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}

.btn-cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.85);
}

/* ─── SUCCESS PAGE ─── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
}

.success-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  max-width: 520px;
  box-shadow: 0 24px 64px rgba(62, 32, 9, 0.12);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(196, 122, 30, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}

.success-card h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.success-card p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ─── LEGAL PAGES ─── */
.legal-page {
  padding-top: 68px;
}

.legal-hero {
  background: var(--brown);
  padding: 60px 0 50px;
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.legal-content {
  padding: 64px 0 80px;
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 36px 0 14px;
  color: var(--brown);
}

.legal-content h2:first-child {
  margin-top: 0;
}

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

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .curriculum-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .curriculum-image {
    position: static;
    order: -1;
  }

  .instructor-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .instructor-photo::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 28px 24px;
  }

  .results-gallery {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .footer-copy {
    text-align: left;
  }

  .success-card {
    padding: 40px 28px;
  }

  .trust-inner {
    gap: 28px;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .for-whom-grid {
    grid-template-columns: 1fr;
  }
}
