@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --cream: #FEFAF4;
  --cream-dark: #F5EDE0;
  --terracotta: #C4714A;
  --terracotta-dark: #A85C39;
  --brown: #2D1B0E;
  --brown-mid: #5C3A21;
  --text: #3A2412;
  --text-muted: #7A5C46;
  --border: #E8D5C0;
  --white: #FFFFFF;
  --pink-light: #FAF0E8;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(45, 27, 14, 0.08);
  --shadow-lg: 0 12px 48px rgba(45, 27, 14, 0.14);
}

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

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

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--terracotta-dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--brown);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { line-height: 1.75; }

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  background-color: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 113, 74, 0.35);
}

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

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

.btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* NAVIGATION */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 250, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    gap: 20px;
    align-items: flex-start;
  }

  .nav-mobile-open .nav-cta .btn {
    display: inline-flex;
  }
}

/* HERO */
.hero {
  padding: 72px 0 80px;
  overflow: hidden;
}

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

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  max-width: 400px;
}

.hero-form-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

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

.form-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-field input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 113, 74, 0.12);
}

.form-field input::placeholder {
  color: #BFA898;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
}

.form-submit:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 113, 74, 0.35);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.form-disclaimer a {
  color: var(--text-muted);
  text-decoration: underline;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.hero-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-image-badge-icon {
  font-size: 1.6rem;
}

.hero-image-badge-text {
  font-size: 0.8rem;
}

.hero-image-badge-text strong {
  display: block;
  font-weight: 600;
  color: var(--brown);
}

.hero-image-badge-text span {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 48px 0 60px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-badge {
    bottom: -16px;
    left: 16px;
  }
}

/* TRUST STRIP */
.trust-strip {
  background: var(--brown);
  padding: 20px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(254, 250, 244, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item-icon {
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .trust-strip-inner {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }
}

/* SECTIONS SHARED */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.for-whom-image img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}

.for-whom-content {}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--cream);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.audience-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.audience-check svg {
  width: 12px;
  height: 12px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-item-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .for-whom-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .for-whom-image {
    order: -1;
  }
}

/* WHAT YOU LEARN */
.what-learn {
  background: var(--pink-light);
}

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

.learn-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
}

.learn-card-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream-dark);
  margin-bottom: 8px;
}

.learn-card h4 {
  color: var(--brown);
  margin-bottom: 8px;
}

.learn-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .learn-grid {
    grid-template-columns: 1fr;
  }
}

/* COURSE FORMAT */
.format {
  background: var(--white);
}

.format-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 48px;
}

.format-step {
  text-align: center;
  padding: 32px 24px;
}

.format-step-icon {
  width: 64px;
  height: 64px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.format-step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.format-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .format-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .format-step {
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--border);
  }

  .format-step-icon {
    margin: 0;
    flex-shrink: 0;
  }
}

/* GALLERY */
.gallery {
  background: var(--cream);
  padding: 80px 0;
}

.gallery-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 48px;
}

.gallery-img-wrap img {
  width: 100%;
  object-fit: cover;
  max-height: 460px;
}

.gallery-caption {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* TEACHER */
.teacher {
  background: var(--white);
}

.teacher-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
}

.teacher-photo img {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  max-height: 480px;
  box-shadow: var(--shadow-lg);
}

.teacher-content h2 {
  margin-bottom: 6px;
}

.teacher-role {
  font-size: 0.9rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 20px;
}

.teacher-bio {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}

.teacher-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.teacher-fact {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}

.teacher-fact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.teacher-fact-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
}

@media (max-width: 900px) {
  .teacher-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .teacher-photo {
    max-width: 320px;
  }

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

/* FAQ */
.faq {
  background: var(--pink-light);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--brown);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--cream);
}

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

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--terracotta);
  color: white;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* LEAD FORM SECTION */
.lead-section {
  background: var(--brown);
  padding: 80px 0;
}

.lead-section-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.lead-section-text h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.lead-section-text p {
  color: rgba(254, 250, 244, 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
}

.lead-form-box {
  background: var(--cream);
  border-radius: 16px;
  padding: 36px;
}

.lead-form-box .hero-form-title {
  margin-bottom: 6px;
}

.lead-form-box .hero-form-sub {
  margin-bottom: 24px;
}

@media (max-width: 860px) {
  .lead-section-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* FOOTER */
footer {
  background: var(--brown);
  border-top: 1px solid rgba(254, 250, 244, 0.1);
  padding: 40px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
}

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

.footer-desc {
  font-size: 0.85rem;
  color: rgba(254, 250, 244, 0.5);
  margin-top: 8px;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(254, 250, 244, 0.6);
  transition: color 0.2s;
}

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

.footer-divider {
  border: none;
  border-top: 1px solid rgba(254, 250, 244, 0.1);
}

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

.footer-legal {
  font-size: 0.78rem;
  color: rgba(254, 250, 244, 0.35);
  line-height: 1.7;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(254, 250, 244, 0.35);
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brown);
  color: var(--cream);
  padding: 16px 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 2px solid var(--terracotta);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner p {
  font-size: 0.88rem;
  color: rgba(254, 250, 244, 0.8);
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: var(--terracotta);
}

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

.cookie-accept {
  padding: 9px 20px;
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

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

.cookie-dismiss {
  padding: 9px 16px;
  background: transparent;
  color: rgba(254, 250, 244, 0.5);
  border: 1px solid rgba(254, 250, 244, 0.2);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-dismiss:hover {
  color: var(--cream);
  border-color: rgba(254, 250, 244, 0.5);
}

/* SUCCESS PAGE */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.success-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* LEGAL PAGES */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--brown);
}

.legal-section h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--brown-mid);
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.75;
}

.legal-section ul, .legal-section ol {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-section li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}

/* UTILITIES */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
