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

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

:root {
  --amber: #c47a20;
  --amber-light: #d98f30;
  --amber-dark: #a06010;
  --amber-pale: #fdf3e3;
  --amber-soft: #f5e0b8;
  --teal-dark: #1a3535;
  --teal-mid: #1e4545;
  --stone-900: #1c1814;
  --stone-800: #292320;
  --stone-700: #3d3630;
  --stone-600: #5a5048;
  --stone-500: #7a6e65;
  --stone-400: #a09690;
  --stone-300: #c8c0b8;
  --stone-100: #f0ece8;
  --stone-50: #faf8f6;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(30,15,0,.08), 0 1px 2px rgba(30,15,0,.06);
  --shadow: 0 4px 6px rgba(30,15,0,.10), 0 2px 4px rgba(30,15,0,.06);
  --shadow-lg: 0 10px 20px rgba(30,15,0,.14), 0 4px 8px rgba(30,15,0,.08);
  --shadow-xl: 0 20px 40px rgba(30,15,0,.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background: #faf8f5;
  color: var(--stone-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  font-family: var(--font-sans);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
  padding: 0 20px;
}

.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid #f0e8d8;
}

.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  transition: color .3s;
}

.site-header.scrolled .logo-text {
  color: var(--stone-800);
}

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

.site-nav a,
.site-nav button {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  position: relative;
  padding: 0;
  font-family: var(--font-sans);
}

.site-header.scrolled .site-nav a,
.site-header.scrolled .site-nav button {
  color: var(--stone-600);
}

.site-nav a::after,
.site-nav button::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform .2s;
}

.site-nav a:hover,
.site-nav button:hover {
  color: #fff;
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav button:hover {
  color: var(--amber-dark);
}

.site-nav a:hover::after,
.site-nav button:hover::after {
  transform: scaleX(1);
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .1s;
}

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

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 500;
  transition: background .2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,.1);
}

.btn-outline-white {
  background: #fff;
  color: var(--amber-dark);
  border: none;
  padding: 14px 40px;
  border-radius: var(--radius-full);
  font-size: 17px;
  font-weight: 600;
  transition: background .2s, transform .1s;
  box-shadow: var(--shadow);
}

.btn-outline-white:hover {
  background: #fdf3e3;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform .25s, opacity .25s;
  border-radius: 2px;
}

.site-header.scrolled .hamburger span {
  background: var(--stone-700);
}

.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-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--stone-100);
  padding: 12px 20px 20px;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li a,
.mobile-menu li button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  color: var(--stone-700);
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: none;
  font-family: var(--font-sans);
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.mobile-menu li a:hover,
.mobile-menu li button:hover {
  background: var(--amber-pale);
  color: var(--amber-dark);
}

.mobile-menu .btn-primary {
  display: block;
  width: 100%;
  margin-top: 12px;
  text-align: center;
  padding: 14px;
  font-size: 15px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0e06 0%, #3d2010 55%, #163030 100%);
  padding: 90px 20px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-harmonica.png');
  background-size: cover;
  background-position: center;
  opacity: .22;
  mix-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: rgba(196,122,32,.2);
  border: 1px solid rgba(217,143,48,.35);
  color: #f0c060;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 22px;
}

.hero h1 span {
  color: #f0b030;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-main {
  background: #e09428;
  color: #fff;
  border: none;
  padding: 16px 38px;
  border-radius: var(--radius-full);
  font-size: 17px;
  font-weight: 600;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(196,122,32,.35);
}

.btn-hero-main:hover {
  background: #c47a20;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,122,32,.45);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
  color: rgba(255,255,255,.55);
  font-size: 13.5px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-item .note {
  color: #f0b030;
  font-size: 17px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.section {
  padding: 80px 20px;
}

.section-teal {
  background: linear-gradient(135deg, #1a3535 0%, #1e4545 100%);
}

.section-warm {
  background: var(--stone-50);
}

.section-amber {
  background: #e09428;
}

.section-white {
  background: #fff;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--stone-800);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-title.light {
  color: #fff;
}

.section-sub {
  font-size: 17px;
  color: var(--stone-500);
  max-width: 560px;
  line-height: 1.65;
}

.section-sub.light {
  color: rgba(200,240,230,.75);
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

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

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-feature {
  display: flex;
  gap: 16px;
}

.about-feature-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature h3 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--stone-800);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 14px;
  color: var(--stone-500);
  line-height: 1.6;
}

.about-img-wrap {
  position: relative;
}

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

.img-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--amber);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
}

.img-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1;
}

.img-badge span {
  font-size: 12px;
  opacity: .85;
  margin-top: 2px;
  display: block;
}

.for-whom-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}

.for-whom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

.for-whom-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(196,122,32,.3);
  border: 1px solid rgba(217,143,48,.4);
  color: #f0c060;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.for-whom-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.for-whom-card p {
  font-size: 13.5px;
  color: rgba(200,240,230,.65);
  line-height: 1.6;
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.program-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.program-step {
  display: flex;
  gap: 20px;
}

.program-step-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(196,122,32,.4);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
  min-width: 44px;
}

.program-step h3 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--stone-800);
  margin-bottom: 6px;
}

.program-step p {
  font-size: 13.5px;
  color: var(--stone-500);
  line-height: 1.65;
}

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

.format-box {
  background: var(--amber-pale);
  border: 1px solid var(--amber-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.format-box h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--stone-800);
  text-align: center;
  margin-bottom: 28px;
}

.format-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.format-stat strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--amber-dark);
  margin-bottom: 4px;
}

.format-stat span {
  font-size: 12px;
  color: var(--stone-500);
}

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

.teacher-img-wrap {
  position: relative;
  max-width: 380px;
}

.teacher-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  max-height: 480px;
}

.teacher-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #fff;
  border: 1px solid var(--amber-soft);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
}

.teacher-badge .label {
  font-size: 11px;
  color: var(--stone-400);
  margin-bottom: 4px;
}

.teacher-badge .name {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--stone-800);
  font-weight: 600;
}

.teacher-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--amber-pale);
  color: var(--amber-dark);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 18px;
}

.teacher-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--stone-800);
  margin-bottom: 18px;
}

.teacher-text p {
  font-size: 15px;
  color: var(--stone-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.teacher-quote {
  font-style: italic;
  color: var(--stone-500);
  font-size: 14px;
  border-left: 3px solid var(--amber-soft);
  padding-left: 16px;
  margin-top: 8px;
}

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

.benefit-card {
  background: #fff;
  border: 1px solid var(--stone-100);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--stone-800);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13.5px;
  color: var(--stone-500);
  line-height: 1.65;
}

.cta-section {
  padding: 64px 20px;
  text-align: center;
  background: #e09428;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.faq-section {
  padding: 80px 20px;
  background: var(--stone-50);
}

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

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

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--stone-800);
  cursor: pointer;
  transition: color .2s;
  font-family: var(--font-sans);
}

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

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--stone-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--stone-400);
  transition: transform .25s, border-color .2s, color .2s;
  margin-top: 2px;
}

.faq-item.open .faq-question {
  color: var(--amber-dark);
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
  border-color: var(--amber);
  color: var(--amber);
}

.faq-answer {
  display: none;
  padding: 0 36px 20px 0;
  font-size: 14px;
  color: var(--stone-500);
  line-height: 1.75;
}

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

.lead-form-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--amber-pale) 0%, #fff 100%);
}

.lead-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.lead-form-head {
  text-align: center;
  margin-bottom: 36px;
}

.lead-form-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--stone-800);
  margin-bottom: 12px;
}

.lead-form-head p {
  font-size: 16px;
  color: var(--stone-500);
  line-height: 1.65;
}

.form-card {
  background: #fff;
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--stone-700);
  margin-bottom: 7px;
}

.form-label .req {
  color: #e05050;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--stone-100);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--stone-800);
  background: var(--stone-50);
  font-family: var(--font-sans);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--stone-400);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(196,122,32,.12);
  background: #fff;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e05050;
  background: #fff8f8;
}

.form-textarea {
  resize: none;
  min-height: 88px;
}

.form-error {
  display: none;
  font-size: 12px;
  color: #e05050;
  margin-top: 6px;
}

.form-error.visible {
  display: block;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%237a6e65' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--stone-300);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
  cursor: pointer;
}

.form-checkbox-custom.checked {
  background: var(--amber);
  border-color: var(--amber);
}

.form-checkbox-custom.checked::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-2px);
  display: block;
}

.form-checkbox-custom.error {
  border-color: #e05050;
}

.form-checkbox-text {
  font-size: 13px;
  color: var(--stone-500);
  line-height: 1.6;
}

.form-checkbox-text a {
  color: var(--amber-dark);
  text-decoration: underline;
}

.form-checkbox-text a:hover {
  color: var(--amber);
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: .7;
  cursor: default;
  transform: none;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--stone-400);
  margin-top: 14px;
}

.site-footer {
  background: #1c1814;
  color: var(--stone-400);
  padding: 56px 20px 36px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #2e2620;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--stone-500);
  line-height: 1.7;
  margin-top: 14px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul a,
.footer-col ul button {
  font-size: 13.5px;
  color: var(--stone-500);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0;
  text-align: left;
  transition: color .2s;
}

.footer-col ul a:hover,
.footer-col ul button:hover {
  color: #e0a030;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-legal {
  font-size: 12px;
  color: #4a3e35;
  line-height: 1.7;
}

.footer-copy {
  font-size: 12px;
  color: #4a3e35;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1c1814;
  border-top: 1px solid #2e2620;
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}

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

.cookie-text {
  font-size: 13.5px;
  color: var(--stone-400);
  line-height: 1.6;
  flex: 1;
}

.cookie-text a {
  color: #e0a030;
  text-decoration: underline;
}

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

.btn-cookie-decline {
  padding: 8px 18px;
  border: 1px solid #3a3028;
  border-radius: var(--radius-full);
  background: none;
  color: var(--stone-500);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color .2s, border-color .2s;
}

.btn-cookie-decline:hover {
  color: #fff;
  border-color: #5a4a3a;
}

.btn-cookie-accept {
  padding: 8px 20px;
  background: var(--amber);
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background .2s;
}

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

.legal-page {
  min-height: 100vh;
  background: var(--stone-50);
  padding-top: 80px;
  padding-bottom: 60px;
}

.legal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-100);
  padding: 0 20px;
}

.legal-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
}

.legal-header .logo-text {
  color: var(--stone-800);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--amber-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color .2s;
}

.back-link:hover {
  color: var(--amber);
}

.legal-card {
  background: #fff;
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-sm);
  max-width: 820px;
  margin: 0 auto;
}

.legal-card h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--stone-800);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 13px;
  color: var(--stone-400);
  margin-bottom: 36px;
}

.legal-card h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--stone-800);
  margin: 28px 0 10px;
}

.legal-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--stone-700);
  margin: 20px 0 8px;
}

.legal-card p {
  font-size: 14px;
  color: var(--stone-600);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-card ul, .legal-card ol {
  margin: 10px 0 14px 20px;
}

.legal-card li {
  font-size: 14px;
  color: var(--stone-600);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-card a {
  color: var(--amber-dark);
  text-decoration: underline;
}

.legal-card a:hover {
  color: var(--amber);
}

.legal-card table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 13.5px;
}

.legal-card th {
  background: var(--stone-50);
  font-weight: 600;
  color: var(--stone-700);
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--stone-100);
}

.legal-card td {
  padding: 10px 14px;
  border: 1px solid var(--stone-100);
  color: var(--stone-600);
}

.legal-links {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--stone-100);
  font-size: 13.5px;
  color: var(--stone-500);
}

.legal-links a {
  color: var(--amber-dark);
  text-decoration: underline;
}

.success-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--stone-50) 0%, var(--amber-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}

.success-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--amber-pale);
  border: 4px solid var(--amber-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--amber-dark);
}

.success-card h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--stone-800);
  margin-bottom: 16px;
}

.success-card .lead {
  font-size: 17px;
  color: var(--stone-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.success-card .sub {
  font-size: 15px;
  color: var(--stone-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.success-tips {
  background: var(--amber-pale);
  border: 1px solid var(--amber-soft);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  margin-bottom: 32px;
}

.success-tips h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--stone-800);
  margin-bottom: 14px;
}

.success-tips ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.success-tips li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--stone-600);
  line-height: 1.65;
}

.success-tips li::before {
  content: '→';
  color: var(--amber);
  flex-shrink: 0;
  font-weight: 600;
}

.btn-back {
  display: inline-block;
  padding: 14px 36px;
  background: var(--amber);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .1s;
}

.btn-back:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.success-domain {
  margin-top: 24px;
  font-size: 13px;
  color: var(--stone-400);
}

.success-domain span {
  color: var(--amber-dark);
}

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

  .grid-3, .grid-3-2, .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .teacher-img-wrap {
    max-width: 340px;
    margin: 0 auto;
  }

  .teacher-badge {
    bottom: -14px;
    right: -10px;
  }
}

@media (max-width: 640px) {
  .site-nav, .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-3, .grid-3-2, .benefits-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 24px;
  }

  .legal-card {
    padding: 28px 20px;
  }

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

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

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .about-img-wrap {
    margin-top: 24px;
  }

  .img-badge {
    bottom: -12px;
    left: -10px;
  }
}
