:root {
  --ink: #15120f;
  --muted: #6d645a;
  --paper: #fffdf8;
  --soft: #f3ede2;
  --gold: #bd8a35;
  --gold-dark: #8b5f1c;
  --brown: #4b2d18;
  --dark: #18120e;
  --line: rgba(75, 45, 24, .14);
  --success: #176b3a;
  --danger: #9e2f2f;
  --shadow: 0 18px 45px rgba(31, 20, 11, .12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 9999; padding: 10px 14px; background: #fff; color: #000; }
.skip-link:focus { top: 12px; }

.topbar { background: var(--dark); color: #f5ead8; font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; gap: 24px; align-items: center; justify-content: space-between; }
.topbar p { margin: 0; }
.topbar-links { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,253,248,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 260px; }
.brand img { width: 74px; height: 54px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: Georgia, 'Times New Roman', serif; font-size: 24px; letter-spacing: .02em; text-transform: uppercase; color: var(--brown); }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 11px; }

.primary-nav { display: flex; align-items: center; gap: 6px; }
.primary-nav > a, .nav-dropdown-toggle { padding: 11px 12px; color: #33291f; font-size: 14px; font-weight: 700; background: none; border: 0; border-radius: 999px; }
.primary-nav > a:hover, .primary-nav > a.active, .nav-dropdown-toggle:hover { color: var(--gold-dark); background: var(--soft); }
.primary-nav .nav-cta { margin-left: 6px; background: var(--gold); color: white; padding-inline: 18px; }
.primary-nav .nav-cta:hover { background: var(--gold-dark); color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; right: 0; top: calc(100% + 10px); width: 220px; padding: 9px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-5px); transition: .18s ease; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 12px; border-radius: 9px; font-size: 14px; }
.nav-dropdown-menu a:hover { background: var(--soft); color: var(--gold-dark); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--soft); padding: 11px; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

.hero { position: relative; min-height: 640px; display: grid; align-items: center; overflow: hidden; color: #fff; background: #1a120c; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(20,13,8,.92) 0%, rgba(20,13,8,.74) 45%, rgba(20,13,8,.2) 74%, rgba(20,13,8,.34) 100%), url('../images/film-direction.jpg'); background-size: cover; background-position: center; transform: scale(1.02); }
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 100px 0 110px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 800; }
.eyebrow::before { content: ''; width: 34px; height: 1px; background: currentColor; }
.hero h1, .page-hero h1, .section-title { font-family: Georgia, 'Times New Roman', serif; line-height: 1.03; }
.hero h1 { margin: 18px 0; font-size: clamp(52px, 8vw, 96px); font-weight: 500; letter-spacing: -.035em; }
.hero h1 span { color: #e6c276; }
.hero p { max-width: 620px; color: #ede3d7; font-size: 18px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 22px; border-radius: 6px; border: 1px solid transparent; font-weight: 800; transition: .2s ease; }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.04); }
.btn-outline:hover { background: #fff; color: var(--dark); }

.hero-badges { position: absolute; z-index: 2; right: max(20px, calc((100vw - var(--container))/2)); bottom: 34px; display: grid; grid-template-columns: repeat(3, minmax(120px, 1fr)); background: rgba(16,11,7,.78); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.15); }
.hero-badge { padding: 18px 20px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-badge:last-child { border: 0; }
.hero-badge strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 17px; }
.hero-badge span { color: #cbbca9; font-size: 12px; }

.section { padding: 92px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--dark); color: #fff; }
.section-heading { display: flex; gap: 30px; align-items: end; justify-content: space-between; margin-bottom: 42px; }
.section-heading > div { max-width: 760px; }
.section-title { margin: 8px 0 0; font-size: clamp(36px, 5vw, 58px); font-weight: 500; color: var(--brown); }
.section-dark .section-title { color: #fff; }
.section-heading p { max-width: 460px; margin: 0; color: var(--muted); }
.section-dark .section-heading p { color: #cbbfb3; }
.text-link { color: var(--gold-dark); font-weight: 800; }

.course-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.course-card { position: relative; min-height: 470px; overflow: hidden; border-radius: var(--radius); background: #222; color: white; box-shadow: var(--shadow); }
.course-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.course-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04) 15%, rgba(12,8,5,.18) 45%, rgba(12,8,5,.92) 100%); }
.course-card:hover img { transform: scale(1.05); }
.course-card-content { position: absolute; z-index: 1; inset: auto 0 0; padding: 26px; }
.course-card .number { color: #e8c982; font-size: 12px; letter-spacing: .15em; font-weight: 800; }
.course-card h3 { font-family: Georgia, serif; font-size: 28px; margin: 8px 0 10px; }
.course-card p { margin: 0 0 16px; color: #e6ded6; font-size: 14px; }
.course-card a { font-weight: 800; color: #f2cf82; }

.split { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; }
.split-image { position: relative; }
.split-image img { width: 100%; height: 620px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-image::after { content: 'CINE TOPPER'; position: absolute; right: -18px; bottom: 24px; background: var(--gold); color: #fff; padding: 14px 18px; font-size: 12px; letter-spacing: .15em; font-weight: 800; }
.split-copy h2 { font-family: Georgia, serif; font-size: clamp(38px, 5vw, 60px); line-height: 1.05; font-weight: 500; color: var(--brown); margin: 10px 0 24px; }
.split-copy p { color: var(--muted); }
.feature-list { display: grid; gap: 12px; padding: 0; list-style: none; margin: 26px 0 30px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list li::before { content: '✓'; flex: 0 0 26px; width: 26px; height: 26px; display: grid; place-items: center; color: white; background: var(--gold); border-radius: 50%; font-size: 13px; font-weight: 900; }

.mentor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mentor-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 40px rgba(60,39,19,.08); }
.mentor-card img { width: 100%; height: 380px; object-fit: cover; object-position: center top; }
.mentor-card-body { padding: 22px; }
.mentor-card h3 { font-family: Georgia, serif; font-size: 25px; margin: 0 0 5px; color: var(--brown); }
.mentor-card .role { color: var(--gold-dark); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.mentor-card p { color: var(--muted); margin-bottom: 0; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 34px rgba(49,31,14,.06); }
.testimonial::before { content: '“'; display: block; font-family: Georgia, serif; font-size: 64px; line-height: .8; color: var(--gold); }
.testimonial p { color: var(--muted); }
.testimonial strong { display: block; color: var(--brown); }
.testimonial span { font-size: 13px; color: #8b8178; }

.cta-band { position: relative; overflow: hidden; background: var(--brown); color: white; }
.cta-band::after { content: ''; position: absolute; width: 360px; height: 360px; border: 80px solid rgba(255,255,255,.04); border-radius: 50%; right: -130px; top: -120px; }
.cta-inner { position: relative; z-index: 1; padding: 62px 0; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-inner h2 { font-family: Georgia, serif; font-size: clamp(34px, 5vw, 54px); font-weight: 500; line-height: 1.08; margin: 0 0 8px; }
.cta-inner p { margin: 0; color: #e4d5c5; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.page-hero { min-height: 350px; display: grid; align-items: end; position: relative; overflow: hidden; color: #fff; background: var(--dark); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,11,7,.9), rgba(17,11,7,.38)), url('../images/film-direction.jpg') center/cover; }
.page-hero.direction::before { background-image: linear-gradient(90deg, rgba(17,11,7,.9), rgba(17,11,7,.38)), url('../images/film-direction.jpg'); }
.page-hero.editing::before { background-image: linear-gradient(90deg, rgba(17,11,7,.9), rgba(17,11,7,.38)), url('../images/film-editing.jpg'); }
.page-hero.makeup::before { background-image: linear-gradient(90deg, rgba(17,11,7,.9), rgba(17,11,7,.38)), url('../images/makeup-academy.jpg'); }
.page-hero.acting::before { background-image: linear-gradient(90deg, rgba(17,11,7,.9), rgba(17,11,7,.38)), url('../images/acting-classes.jpg'); }
.page-hero-inner { position: relative; z-index: 1; padding: 90px 0 64px; }
.page-hero h1 { font-size: clamp(46px, 7vw, 78px); font-weight: 500; margin: 10px 0 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: #d8c8b8; font-size: 13px; }
.breadcrumbs a { color: #f0d28e; }

.content-copy { max-width: 850px; }
.content-copy h2 { font-family: Georgia, serif; color: var(--brown); font-size: 38px; font-weight: 500; margin-top: 0; }
.content-copy h3 { font-family: Georgia, serif; color: var(--brown); font-size: 26px; margin-top: 32px; }
.content-copy p, .content-copy li { color: var(--muted); }
.course-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.course-sidebar { position: sticky; top: 118px; border: 1px solid var(--line); background: white; padding: 26px; border-radius: var(--radius); box-shadow: 0 15px 35px rgba(48,29,12,.07); }
.course-sidebar h3 { margin-top: 0; font-family: Georgia, serif; font-size: 28px; color: var(--brown); }
.course-sidebar ul { list-style: none; padding: 0; margin: 0 0 24px; }
.course-sidebar li { border-bottom: 1px solid var(--line); }
.course-sidebar li a { display: block; padding: 11px 0; font-weight: 700; }
.course-sidebar li a:hover { color: var(--gold-dark); }

.gallery-grid { columns: 3 300px; column-gap: 18px; }
.gallery-item { break-inside: avoid; margin-bottom: 18px; border-radius: 16px; overflow: hidden; background: #eee; }
.gallery-item img { width: 100%; height: auto; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-caption { padding: 12px 14px; background: #fff; color: var(--brown); font-weight: 800; font-size: 13px; border: 1px solid var(--line); border-top: 0; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.contact-card { background: var(--dark); color: white; border-radius: var(--radius); padding: 34px; }
.contact-card h2 { font-family: Georgia, serif; font-size: 38px; font-weight: 500; margin-top: 0; }
.contact-list { display: grid; gap: 22px; margin-top: 30px; }
.contact-list strong { display: block; color: #e5c578; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.contact-list a, .contact-list span { color: #efe5dc; }
.contact-form-wrap { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-form-wrap h2 { font-family: Georgia, serif; color: var(--brown); font-size: 38px; font-weight: 500; margin: 0 0 8px; }
.contact-form-wrap > p { color: var(--muted); margin-top: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 800; font-size: 13px; margin-bottom: 7px; color: #45382c; }
.field label span { color: var(--danger); }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #d9cfc5; background: #fffdf9; border-radius: 9px; padding: 12px 13px; outline: 0; transition: border-color .15s ease, box-shadow .15s ease; }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(189,138,53,.13); }
.field [aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 18px; display: block; color: var(--danger); font-size: 12px; margin-top: 5px; }
.form-status { margin: 12px 0 0; min-height: 22px; font-weight: 700; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
button:disabled { opacity: .65; cursor: wait; }

.map-link-card { margin-top: 24px; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--soft); }
.map-link-card a { color: var(--gold-dark); font-weight: 800; }

.floating-actions { position: fixed; z-index: 1100; right: 16px; top: 58%; transform: translateY(-50%); display: grid; gap: 9px; }
.float-btn { width: 54px; height: 54px; padding: 10px; display: grid; place-items: center; color: #fff; border-radius: 13px 0 0 13px; box-shadow: 0 10px 24px rgba(0,0,0,.22); }
.float-btn svg { width: 22px; height: 22px; fill: currentColor; }
.float-btn.whatsapp { background: #178848; }
.float-btn.call { background: var(--gold-dark); }

.site-footer { background: #120e0b; color: #d8cec4; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1.15fr; gap: 42px; padding: 66px 0 50px; }
.footer-brand { display: inline-block; font-family: Georgia, serif; color: #e6c67c; font-size: 31px; text-transform: uppercase; margin-bottom: 12px; }
.site-footer h3 { color: #fff; font-family: Georgia, serif; font-weight: 500; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 7px 0; }
.site-footer a:hover { color: #f0d18a; }
.site-footer address { font-style: normal; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; padding: 18px 0; font-size: 13px; }

.privacy-copy { max-width: 900px; }
.privacy-copy h2 { font-family: Georgia, serif; color: var(--brown); margin-top: 32px; }

@media (max-width: 1050px) {
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .mentor-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid .testimonial:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .course-detail-layout { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
}

@media (max-width: 860px) {
  .topbar p { display: none; }
  .topbar-inner { justify-content: center; }
  .header-inner { min-height: 74px; }
  .brand { min-width: 0; }
  .brand img { width: 58px; height: 44px; }
  .brand-copy strong { font-size: 19px; }
  .brand-copy small { display: none; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; padding: 12px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .primary-nav.open { display: flex; }
  .primary-nav > a, .nav-dropdown-toggle { width: 100%; text-align: left; border-radius: 8px; }
  .primary-nav .nav-cta { margin-left: 0; text-align: center; }
  .nav-dropdown-menu { position: static; width: auto; box-shadow: none; display: none; opacity: 1; visibility: visible; transform: none; margin: 4px 0 5px 12px; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .hero { min-height: 700px; }
  .hero::before { background-image: linear-gradient(90deg, rgba(20,13,8,.92), rgba(20,13,8,.58)), url('../images/film-direction.jpg'); background-position: 62% center; }
  .hero-content { padding: 85px 0 190px; }
  .hero-badges { left: 20px; right: 20px; bottom: 24px; }
  .split, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .split-image img { height: 500px; }
  .section-heading { align-items: start; flex-direction: column; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-links { width: 100%; justify-content: space-between; gap: 8px; font-size: 12px; }
  .hero h1 { font-size: 52px; }
  .hero p { font-size: 16px; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-badge { padding: 9px 12px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-badge strong { font-size: 14px; }
  .course-grid, .mentor-grid, .testimonial-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .testimonial-grid .testimonial:last-child { grid-column: auto; }
  .section { padding: 68px 0; }
  .course-card { min-height: 430px; }
  .mentor-card img { height: 340px; }
  .split-image img { height: 420px; }
  .contact-form-wrap, .contact-card { padding: 24px; }
  .floating-actions { right: 0; top: auto; bottom: 20px; transform: none; display: flex; }
  .float-btn { border-radius: 13px; width: 58px; }
}
