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

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

:root {
  --cream: #F8F3EC;
  --cream-light: #FDF9F4;
  --cream-mid: #EDE4D6;
  --brown: #5C3317;
  --brown-mid: #7A4528;
  --brown-light: #A0633E;
  --caramel: #C8956C;
  --caramel-light: #E8C4A0;
  --text-dark: #2C1A0E;
  --text-mid: #5A3E2A;
  --text-light: #8C6A50;
  --white: #FFFFFF;
  --border: #DDD0C0;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --max-w: 1100px;
  --section-py: 80px;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

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

/* ─── HEADER ─── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 249, 244, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.01em;
}

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

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}

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

.nav .btn-sm {
  background: var(--brown);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav .btn-sm:hover {
  background: var(--brown-mid);
}

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

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

.mobile-nav {
  display: none;
  background: var(--cream-light);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 16px;
}

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

.mobile-nav a {
  font-size: 15px;
  color: var(--text-mid);
  padding: 4px 0;
  font-weight: 500;
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--brown);
  color: var(--white);
  padding: 14px 32px;
}

.btn-primary:hover {
  background: var(--brown-mid);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--cream-mid);
}

.btn-caramel {
  background: var(--caramel);
  color: var(--white);
  padding: 14px 32px;
}

.btn-caramel:hover {
  background: var(--brown-light);
  transform: translateY(-1px);
}

/* ─── HERO ─── */

.hero {
  background: var(--cream);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 64px);
  padding: 60px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  background: var(--caramel-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--caramel);
}

.hero-desc {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(92, 51, 23, 0.18);
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(92, 51, 23, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.hero-badge-sub {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}

/* ─── SECTION COMMONS ─── */

.section {
  padding: var(--section-py) 0;
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--brown);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--caramel);
}

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

.section-dark .section-label {
  color: var(--caramel-light);
}

.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-sub {
  color: rgba(255,255,255,0.7);
}

/* ─── FOR WHOM ─── */

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

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

.audience-card:hover {
  box-shadow: 0 8px 32px rgba(92, 51, 23, 0.1);
  transform: translateY(-2px);
}

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

.audience-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── WHAT YOU LEARN ─── */

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.learn-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.learn-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--brown);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-top: 2px;
}

.learn-item h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.learn-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── PROCESS ─── */

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-dot {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--caramel-light);
  border: 2px solid var(--caramel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
  margin-top: 2px;
}

.step-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

.process-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(92, 51, 23, 0.14);
}

/* ─── PORTFOLIO ─── */

.portfolio-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(92, 51, 23, 0.12);
  margin-bottom: 32px;
}

.portfolio-image-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.portfolio-caption {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* ─── FORMAT ─── */

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.format-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.format-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.format-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.format-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ─── INSTRUCTOR ─── */

.instructor-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.instructor-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(92, 51, 23, 0.18);
}

.instructor-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.instructor-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  display: block;
  margin-bottom: 12px;
}

.instructor-name {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.instructor-role {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.instructor-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

.instructor-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fact-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

/* ─── LEAD FORM ─── */

.form-section {
  background: var(--cream);
}

.form-wrap {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: 0 20px 60px rgba(92, 51, 23, 0.1);
  border: 1px solid var(--border);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: center;
}

.form-sub {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--cream-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--caramel);
  background: var(--white);
}

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

.form-note {
  font-size: 11px;
  color: var(--text-light);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

.form-note a {
  color: var(--caramel);
  text-decoration: underline;
}

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

/* ─── FOOTER ─── */

.site-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 56px 0 32px;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

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

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--caramel-light);
}

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

.footer-company {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

/* ─── COOKIE BANNER ─── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--text-dark);
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  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-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 700px;
}

.cookie-text a {
  color: var(--caramel-light);
  text-decoration: underline;
}

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

.cookie-accept {
  background: var(--caramel);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font-body);
}

.cookie-accept:hover {
  background: var(--brown-light);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

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

/* ─── SUCCESS PAGE ─── */

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

.success-card {
  max-width: 520px;
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(92, 51, 23, 0.1);
  border: 1px solid var(--border);
}

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

.success-card h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.success-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.success-card .btn {
  margin-top: 24px;
}

/* ─── LEGAL PAGES ─── */

.legal-page {
  min-height: 100vh;
  background: var(--cream-light);
}

.legal-hero {
  background: var(--cream);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
}

.legal-hero .breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.legal-hero .breadcrumb a {
  color: var(--caramel);
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--text-dark);
}

.legal-hero .updated {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 10px;
}

.legal-content {
  padding: 56px 0;
}

.legal-body {
  max-width: 760px;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 14px;
}

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

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

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

.legal-body ul li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--caramel);
  text-decoration: underline;
}

.legal-body .company-block {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 32px;
}

.legal-body .company-block p {
  font-size: 14px;
  margin-bottom: 4px;
}

/* ─── CTA BAND ─── */

.cta-band {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── RESPONSIVE ─── */

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

  .burger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 24px;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-badge {
    bottom: -12px;
    left: -8px;
  }

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

  .process-image {
    order: -1;
  }

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

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

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

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

@media (max-width: 640px) {
  :root {
    --section-py: 56px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 20px;
  }

  .form-wrap {
    padding: 32px 24px;
  }

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

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

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 24px;
  }

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

  .legal-hero {
    padding: 40px 0 32px;
  }

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

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