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

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

:root {
  --cream: #FAF8F4;
  --cream-dark: #F0EBE2;
  --brown-deep: #2A1F14;
  --brown-mid: #8B5E3C;
  --brown-light: #C4956A;
  --warm-tan: #E8D5C0;
  --warm-tan-light: #F5EDE3;
  --text-main: #2A1F14;
  --text-muted: #6B5B4E;
  --border-color: #DDD0BF;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(42, 31, 20, 0.07);
  --shadow-md: 0 4px 20px rgba(42, 31, 20, 0.10);
  --shadow-lg: 0 8px 40px rgba(42, 31, 20, 0.13);
  --radius: 8px;
  --radius-lg: 16px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-main);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 12px;
}

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

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 24px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--brown-mid);
  color: var(--white);
  border-color: var(--brown-mid);
}

.btn-primary:hover {
  background: var(--brown-deep);
  border-color: var(--brown-deep);
  color: var(--white);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--brown-deep);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--warm-tan);
  color: var(--brown-deep);
}

.btn-lg {
  font-size: 16px;
  padding: 14px 32px;
}

.btn-sm {
  font-size: 13px;
  padding: 8px 16px;
}

.btn-full {
  width: 100%;
}

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

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

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

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--brown-mid);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.2;
}

.logo-text em {
  font-style: italic;
  color: var(--brown-mid);
  font-weight: 400;
  display: block;
}

.header-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

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

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

.header-cta {
  margin-left: 12px;
}

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

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

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

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

.mobile-nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
}

.mobile-nav .btn {
  margin-top: 16px;
  text-align: center;
}

.hero {
  padding: 80px 0 100px;
  background: var(--cream);
  overflow: hidden;
}

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

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--brown-deep);
  margin-bottom: 24px;
}

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

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-facts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-facts li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fact-check {
  color: var(--brown-mid);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 149, 106, 0.2);
  pointer-events: none;
  z-index: 1;
}

.hero-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.portfolio {
  padding: 100px 0;
  background: var(--warm-tan-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.portfolio-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.03);
}

.portfolio-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(42, 31, 20, 0.7), transparent);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.for-whom {
  padding: 100px 0;
  background: var(--cream);
}

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

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

.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.audience-icon {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1;
}

.audience-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

.program {
  padding: 100px 0;
  background: var(--cream-dark);
}

.program-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.program-item {
  display: flex;
  gap: 20px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  transition: background 0.2s;
}

.program-item:hover {
  background: var(--warm-tan-light);
}

.program-item:nth-child(even) {
  border-right: none;
}

.program-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.program-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown-light);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.program-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.program-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.program-cta {
  text-align: center;
  margin-top: 48px;
}

.format {
  padding: 100px 0;
  background: var(--cream);
}

.format-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.format-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.format-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.format-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.format-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.4;
}

.format-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 4px;
}

.format-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.materials {
  padding: 100px 0;
  background: var(--warm-tan-light);
}

.materials-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.materials-content .section-title {
  margin-bottom: 20px;
}

.materials-content > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.materials-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.materials-list li {
  font-size: 15px;
  color: var(--text-main);
  padding-left: 20px;
  position: relative;
}

.materials-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brown-light);
}

.materials-note {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--cream-dark);
  border-left: 3px solid var(--brown-light);
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}

.materials-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.instructor {
  padding: 100px 0;
  background: var(--cream-dark);
}

.instructor-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: center;
}

.instructor-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}

.instructor-content .section-title {
  margin-bottom: 20px;
}

.instructor-desc {
  font-size: 17px;
  color: var(--text-main);
  margin-bottom: 16px;
  font-style: italic;
  font-family: var(--font-serif);
}

.instructor-content > p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.instructor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid var(--border-color);
}

.instructor-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--brown-mid);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.lead-form-section {
  padding: 100px 0;
  background: var(--brown-deep);
}

.lead-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.lead-form-text .section-eyebrow {
  color: var(--brown-light);
}

.lead-form-text .section-title {
  color: var(--white);
}

.lead-form-text > p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-benefits li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 20px;
  position: relative;
}

.form-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brown-light);
  font-size: 12px;
  font-weight: 700;
}

.lead-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.field-group input,
.field-group textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-main);
  background: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #B8A99A;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--brown-mid);
  box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.12);
}

.field-group input.error,
.field-group textarea.error {
  border-color: #C0392B;
}

.field-error {
  font-size: 12px;
  color: #C0392B;
  min-height: 16px;
}

.field-group--checkbox {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}

.field-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--brown-mid);
  margin-top: 2px;
}

.checkbox-label {
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  flex: 1;
}

.checkbox-label a {
  color: var(--brown-mid);
}

.field-group--checkbox .field-error {
  width: 100%;
  margin-left: 26px;
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
}

.faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

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

.faq-item:last-child {
  border-bottom: none;
}

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

.faq-question:hover {
  background: var(--warm-tan-light);
}

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--brown-mid);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.site-footer {
  background: var(--brown-deep);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand .logo-mark {
  background: var(--brown-mid);
}

.footer-tagline {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

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

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

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

.footer-col p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  max-width: 680px;
  transform: translateX(-50%) translateY(120px);
  background: var(--brown-deep);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--brown-light);
}

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

.cookie-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.cookie-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 8px;
}

.legal-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  list-style: disc;
}

.legal-page a {
  color: var(--brown-mid);
  text-decoration: underline;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-mid);
  margin-bottom: 40px;
}

.legal-back:hover {
  color: var(--brown-deep);
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

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

.success-icon {
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1;
}

.success-inner h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}

.success-inner p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

  .program-list {
    grid-template-columns: 1fr;
  }

  .program-item:nth-child(even) {
    border-right: 1px solid var(--border-color);
  }

  .program-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border-color);
  }

  .program-item:last-child {
    border-bottom: none;
  }

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

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

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

  .hero-visual {
    order: -1;
  }

  .hero-img-wrap img {
    height: 280px;
  }

  .format-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .format-visual img {
    height: 300px;
  }

  .materials-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .materials-visual {
    order: -1;
  }

  .materials-visual img {
    height: 280px;
  }

  .instructor-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .instructor-photo img {
    height: 360px;
  }

  .lead-form-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

  .burger {
    display: flex;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    transform: translateX(0) translateY(120px);
    max-width: none;
  }

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

  .portfolio,
  .for-whom,
  .program,
  .format,
  .materials,
  .instructor,
  .lead-form-section,
  .faq {
    padding: 72px 0;
  }

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

@media (max-width: 480px) {
  .instructor-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .program-item {
    padding: 24px 20px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }
}
