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

:root {
  --bg: #000;
  --bg2: #111;
  --bg3: #1c1c1c;
  --text: #fff;
  --text2: #bbb;
  --border: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Noto Sans KR', sans-serif; font-weight: 300; }
a { color: inherit; text-decoration: none; }
img { display: block; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; width: 100%; z-index: 900;
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.88);
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { height: 34px; }

nav { display: flex; align-items: center; gap: 36px; }
nav > a, .dropdown > a {
  font-size: 13px; letter-spacing: 1.2px;
  color: #fff; transition: opacity .2s;
}
nav > a:hover, .dropdown > a:hover { opacity: .6; }

.dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  background: #111; border: 1px solid #2a2a2a;
  padding: 8px 0; min-width: 150px;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 9px 20px;
  font-size: 12px; letter-spacing: 1px;
  transition: background .2s;
}
.dropdown-menu a:hover { background: #222; }

/* mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; transition: all .3s; }

/* ── FOOTER ── */
footer {
  background: #111; padding: 32px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo img { height: 28px; }
.footer-info { font-size: 12px; color: #888; text-align: center; line-height: 1.8; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: #888; transition: color .2s; }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }

/* ── HERO (main page) ── */
.hero {
  height: 100vh; display: flex; align-items: flex-end;
  padding: 80px 80px;
  background: #000;
  position: relative; overflow: hidden;
}
.hero-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .4;
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 52px; font-weight: 400; letter-spacing: 3px;
  margin-bottom: 20px;
}
.hero-text { font-size: 15px; line-height: 1.9; max-width: 460px; color: #ddd; }

/* ── SECTION HEADING ── */
.section-heading {
  font-family: 'Cinzel', serif;
  font-size: 28px; letter-spacing: 6px; font-weight: 400;
  text-align: center; padding: 72px 0 12px;
}
.section-sub {
  text-align: center; font-size: 12px; color: #888; letter-spacing: 1px;
  margin-bottom: 40px;
}

/* ── ABOUT PAGE ── */
.about-hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 100px 40px 60px;
  text-align: center;
}
.about-logo { width: 280px; margin-bottom: 40px; }
.about-tagline {
  font-size: 15px; color: #ddd; margin-bottom: 14px; letter-spacing: .5px;
}
.about-desc {
  font-size: 14px; color: #aaa; line-height: 2; max-width: 520px; margin-bottom: 40px;
}
.btn {
  display: inline-block; padding: 12px 40px;
  border: 1px solid #666; color: #fff; font-size: 13px; letter-spacing: 2px;
  transition: background .2s, border-color .2s;
}
.btn:hover { background: #222; border-color: #999; }

.directors {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid #1e1e1e;
}
.director-card {
  text-align: center; padding: 0 20px 60px;
  border-right: 1px solid #1e1e1e;
}
.director-card:last-child { border-right: none; }
.director-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: grayscale(20%); margin-bottom: 24px;
}
.director-role { font-size: 11px; color: #888; letter-spacing: 2px; margin-bottom: 8px; }
.director-name { font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; font-weight: 500; }
.director-quote { font-size: 13px; color: #bbb; line-height: 1.8; }

/* ── VIDEO GROUPS (portfolio / film / theater) ── */
.video-section { padding: 0 40px 80px; }

.video-group { margin-bottom: 60px; }
.group-title {
  font-size: 13px; letter-spacing: 2px; color: #aaa;
  padding: 16px 0 20px; display: flex; align-items: center; gap: 12px;
}
.group-title::before { content: ':'; color: #555; }

.video-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.video-card { cursor: pointer; position: relative; }
.video-card:hover .video-thumb { opacity: .8; }
.video-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: opacity .2s; }
.video-duration {
  position: absolute; bottom: 36px; right: 8px;
  background: rgba(0,0,0,.75); color: #fff; font-size: 11px; padding: 2px 5px;
}
.video-title { font-size: 12px; padding: 8px 2px 4px; line-height: 1.5; color: #ccc; }
.video-desc { font-size: 11px; color: #777; }

/* image-only grid (Commercial / MV) */
.image-grid {
  display: grid; gap: 20px; padding: 0 40px 80px;
  grid-template-columns: repeat(2, 1fr);
}
.image-card { position: relative; cursor: pointer; overflow: hidden; }
.image-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .3s; }
.image-card:hover img { transform: scale(1.03); }
.image-label {
  text-align: center; font-size: 13px; padding: 12px 4px; color: #ccc;
}

/* ── PORTFOLIO OVERVIEW ── */
.portfolio-overview {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 100vh; gap: 32px; padding-top: 80px;
}
.portfolio-overview h1 {
  font-family: 'Cinzel', serif; font-size: 36px; letter-spacing: 8px;
}
.portfolio-cats { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; }
.portfolio-cat-link {
  font-size: 13px; letter-spacing: 3px; color: #aaa;
  border-bottom: 1px solid transparent; padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.portfolio-cat-link:hover { color: #fff; border-color: #fff; }

/* ── THEATER PAGE ── */
.theater-hero {
  height: 60vh; background: #000;
  display: flex; align-items: flex-end; padding: 60px 60px;
  position: relative; overflow: hidden;
}
.theater-hero::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 120px rgba(60,10,0,.5);
  pointer-events: none;
}

/* ── PROFILM PAGE ── */
.profilm-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 50vh; margin-top: 72px;
}
.profilm-left {
  background: #000; padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.profilm-title {
  font-family: 'Cinzel', serif; font-size: 28px; font-weight: 400;
  margin-bottom: 16px; letter-spacing: 2px;
}
.profilm-sub { font-size: 13px; color: #888; margin-bottom: 40px; border-bottom: 1px solid #333; padding-bottom: 20px; }
.profilm-right {
  background: var(--bg2); padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.profilm-right h3 {
  font-size: 16px; font-weight: 500; color: #e0b060; margin-bottom: 24px;
}
.profilm-right p { font-size: 13px; color: #bbb; line-height: 2; margin-bottom: 16px; }

.packages { padding: 60px 60px; }
.packages h3 {
  font-family: 'Cinzel', serif; font-size: 20px; letter-spacing: 3px;
  margin-bottom: 32px; color: #aaa;
}
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card {
  border: 1px solid #2a2a2a; padding: 32px 24px;
  transition: border-color .2s;
}
.package-card:hover { border-color: #555; }
.package-name { font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; font-weight: 500; }
.package-desc { font-size: 13px; color: #999; line-height: 1.9; }

.profilm-works { padding: 20px 60px 80px; }
.profilm-works h3 {
  font-size: 13px; letter-spacing: 3px; color: #888; margin-bottom: 24px;
}
.works-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; max-width: 500px; margin: 0 auto; }
.works-grid img { width: 100%; }

/* ── CONTACT PAGE ── */
.workflow { padding: 100px 40px 60px; }
.workflow h2 {
  font-family: 'Cinzel', serif; font-size: 28px; letter-spacing: 6px;
  text-align: center; margin-bottom: 60px;
}
.workflow-steps {
  display: flex; align-items: flex-start; justify-content: center; gap: 0;
  background: #111; border-radius: 4px; padding: 40px 20px;
}
.workflow-step {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; position: relative; text-align: center;
}
.workflow-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 32px; right: -50%; width: 100%; height: 2px;
  background: #333; z-index: 0;
}
.step-icon {
  width: 64px; height: 64px;
  border: 2px solid #555; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #111; z-index: 1; margin-bottom: 16px;
}
.step-icon svg { width: 28px; height: 28px; stroke: #aaa; fill: none; stroke-width: 1.5; }
.step-label { font-size: 11px; letter-spacing: 1.5px; color: #aaa; line-height: 1.5; }

.contact-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh;
}
.contact-visual {
  background: #0a0a0a;
  background-image: url('https://static.wixstatic.com/media/6c4eeb_443905ca9b534306a35f8bcdfb6bea56~mv2.png');
  background-size: 120px; background-repeat: no-repeat; background-position: center;
  filter: blur(2px) brightness(.3);
}
.contact-form-wrap {
  background: #f7f7f7; color: #111; padding: 72px 60px;
}
.contact-form-wrap h2 {
  font-family: 'Cinzel', serif; font-size: 32px; font-weight: 400;
  margin-bottom: 12px; color: #111;
}
.contact-quote { font-size: 13px; color: #555; margin-bottom: 8px; font-style: italic; }
.contact-info { font-size: 13px; color: #555; margin-bottom: 32px; }

.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 12px; color: #777; margin-bottom: 6px; letter-spacing: .5px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 10px 14px;
  border: 1px solid #ddd; background: #fff;
  font-family: inherit; font-size: 13px; color: #111;
  outline: none; transition: border-color .2s;
}
.form-row input:focus, .form-row textarea:focus { border-color: #999; }
.form-row textarea { resize: vertical; min-height: 100px; }

.radio-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.radio-group label {
  display: flex; align-items: center; gap: 6px;
  cursor: pointer; font-size: 12px; color: #555;
}
.radio-group input { width: auto; }

.btn-submit {
  width: 100%; padding: 14px; background: #111; color: #fff;
  border: none; font-size: 13px; letter-spacing: 2px; cursor: pointer;
  transition: background .2s; margin-top: 8px; font-family: inherit;
}
.btn-submit:hover { background: #333; }
.success-msg { display: none; text-align: center; padding: 16px; color: #555; font-size: 14px; }

/* ── MODAL (lightbox) ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.92); z-index: 1000;
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-inner {
  position: relative; width: 90%; max-width: 900px;
  aspect-ratio: 16/9;
}
.modal-inner iframe { width: 100%; height: 100%; border: none; }
.modal-close {
  position: absolute; top: -44px; right: 0;
  font-size: 28px; cursor: pointer; color: #fff; line-height: 1;
  background: none; border: none;
}

/* ── PAGE TRANSITION ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 14px 24px; }
  nav { display: none; position: absolute; top: 62px; left: 0; width: 100%; background: #111; flex-direction: column; gap: 0; padding: 12px 0; }
  nav.open { display: flex; }
  nav > a, .dropdown > a { padding: 12px 24px; width: 100%; display: block; }
  .dropdown-menu { position: static; transform: none; border: none; background: #1a1a1a; }
  .hamburger { display: flex; }

  .directors { grid-template-columns: 1fr; }
  .director-card { border-right: none; border-bottom: 1px solid #1e1e1e; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .image-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-visual { display: none; }
  .profilm-intro { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .workflow-steps { flex-direction: column; align-items: center; gap: 24px; }
  .workflow-step::after { display: none; }

  .hero { padding: 60px 32px; }
  .hero-title { font-size: 36px; }
  .about-hero { padding: 100px 24px 60px; }
  .about-logo { width: 200px; }
}

@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
  .section-heading { font-size: 22px; letter-spacing: 4px; }
  .profilm-left, .profilm-right { padding: 60px 32px; }
  .packages { padding: 40px 32px; }
  .contact-form-wrap { padding: 52px 32px; }
}
