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

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #FAF6EF;
  --parchment: #EDE3D3;
  --parchment-light: #F5EFE4;
  --clay: #B5673B;
  --clay-dark: #8B4526;
  --clay-light: #D4956A;
  --clay-pale: #F0DDD0;
  --bark: #3D2314;
  --bark-soft: #5C3520;
  --sand: #C9A882;
  --stone: #8B7355;
  --stone-light: #B09A7E;
  --leaf: #7A9E76;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition: 0.3s ease;
  --radius: 4px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 8px rgba(61, 35, 20, 0.08);
  --shadow-md: 0 4px 20px rgba(61, 35, 20, 0.12);
  --shadow-lg: 0 8px 40px rgba(61, 35, 20, 0.16);
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--bark-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 0.75rem;
}

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.section--dark {
  background-color: var(--bark);
  color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--parchment);
}

.section--clay {
  background-color: var(--clay-pale);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  background-color: var(--clay-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-ghost {
  background-color: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250, 246, 239, 0.4);
}

.btn-ghost:hover {
  background-color: rgba(250, 246, 239, 0.1);
  border-color: var(--cream);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--parchment);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--bark-soft);
  transition: color var(--transition);
}

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

.nav-cta {
  margin-left: 1rem;
}

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

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

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.25rem;
  border-top: 1px solid var(--parchment);
  background-color: var(--cream);
}

.mobile-nav a {
  font-size: 1rem;
  color: var(--bark-soft);
  padding: 0.3rem 0;
}

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

/* ===== HERO ===== */
.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--clay);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--bark-soft);
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-note::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--stone);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

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

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(181, 103, 59, 0.08) 0%, transparent 60%);
}

.hero-bg-strip {
  height: 120px;
  background: linear-gradient(to bottom, var(--cream) 0%, var(--parchment-light) 100%);
  margin-top: 3rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background-color: var(--parchment);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 168, 130, 0.3);
  border-bottom: 1px solid rgba(201, 168, 130, 0.3);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.trust-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--clay);
}

.trust-label {
  font-size: 0.78rem;
  color: var(--stone);
  text-align: center;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--sand);
  opacity: 0.5;
}

/* ===== FOR WHOM ===== */
.for-whom-header {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.for-whom-header h2 {
  margin-bottom: 0.75rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--parchment);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--clay-light);
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--clay-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.card h4 {
  margin-bottom: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.card p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===== GALLERY / RESULTS ===== */
.gallery-header {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 420px;
  gap: 1.25rem;
  align-items: stretch;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item:first-child {
  grid-row: auto;
  height: 420px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(61, 35, 20, 0.7) 0%, transparent 100%);
  padding: 2rem 1.25rem 1.25rem;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* ===== PROCESS ===== */
.process-header {
  max-width: 580px;
  margin: 0 auto 4rem;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  position: relative;
}

.process-step {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.process-step + .process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 1px;
  background: var(--parchment);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--clay-pale);
  line-height: 1;
  user-select: none;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bark);
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--bark-soft);
}

/* ===== CURRICULUM ===== */
.curriculum-header {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.modules-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.module-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--parchment);
  align-items: start;
}

.module-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--clay);
  padding-top: 0.1rem;
}

.module-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.module-content p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== MATERIALS ===== */
.materials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.materials-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

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

.materials-content h2 {
  margin-bottom: 1rem;
}

.materials-content > p {
  margin-bottom: 2rem;
}

.materials-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.material-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--bark-soft);
  line-height: 1.5;
}

.material-item::before {
  content: '—';
  color: var(--clay);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ===== INSTRUCTOR ===== */
.instructor-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.instructor-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  position: relative;
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.instructor-photo::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--clay-light);
  border-radius: calc(var(--radius-lg) + 8px);
  z-index: -1;
}

.instructor-bio .section-label {
  margin-bottom: 1rem;
}

.instructor-bio h2 {
  margin-bottom: 0.5rem;
}

.instructor-title {
  font-size: 1rem;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.instructor-bio p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.instructor-facts {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.instructor-fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.fact-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--clay);
}

.fact-label {
  font-size: 0.8rem;
  color: var(--stone);
}

/* ===== FAQ ===== */
.faq-header {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--bark);
  gap: 1rem;
  user-select: none;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
  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-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--bark-soft);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

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

.lead-form-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.lead-form-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(61, 35, 20, 0.08);
  pointer-events: none;
}

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

.lead-form-inner .section-label {
  color: rgba(250, 246, 239, 0.7);
}

.lead-form-inner h2 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.lead-form-inner > p {
  color: rgba(250, 246, 239, 0.8);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-group label {
  font-size: 0.8rem;
  color: rgba(250, 246, 239, 0.7);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(250, 246, 239, 0.25);
  border-radius: var(--radius);
  background: rgba(250, 246, 239, 0.1);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 246, 239, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(250, 246, 239, 0.6);
  background: rgba(250, 246, 239, 0.15);
}

.form-agreement {
  font-size: 0.78rem;
  color: rgba(250, 246, 239, 0.55);
  text-align: center;
  line-height: 1.5;
}

.form-agreement a {
  color: rgba(250, 246, 239, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  background: var(--cream);
  color: var(--clay-dark);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--parchment);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(61, 35, 20, 0.3);
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--bark);
  color: var(--parchment);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(237, 227, 211, 0.6);
  line-height: 1.6;
  max-width: 280px;
}

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

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(237, 227, 211, 0.65);
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(237, 227, 211, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(237, 227, 211, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

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

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: var(--bark);
  color: var(--parchment);
  padding: 1.25rem 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(201, 168, 130, 0.2);
}

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

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(237, 227, 211, 0.8);
  line-height: 1.5;
  min-width: 240px;
}

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

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--clay);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept:hover {
  background: var(--clay-dark);
}

.cookie-decline {
  background: transparent;
  color: rgba(237, 227, 211, 0.6);
  border: 1px solid rgba(237, 227, 211, 0.2);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-decline:hover {
  color: var(--parchment);
  border-color: rgba(237, 227, 211, 0.4);
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: 4rem 0 3rem;
  background: var(--parchment-light);
  border-bottom: 1px solid var(--parchment);
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.85rem;
  color: var(--stone);
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--bark-soft);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

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

.success-inner {
  max-width: 520px;
}

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

.success-inner h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.success-inner p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image {
    max-height: 380px;
  }

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

  .gallery-item:first-child {
    grid-row: auto;
    height: 420px;
  }

  .materials-inner,
  .instructor-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .instructor-photo {
    max-width: 300px;
    margin: 0 auto;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
  }

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

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

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

  .trust-bar-inner {
    gap: 1.5rem;
  }

  .trust-divider {
    display: none;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }

  .process-step + .process-step::before {
    display: none;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
