:root {
  --bg: #050505;
  --bg-soft: #0c0c0f;
  --bg-card: rgba(255, 255, 255, 0.065);
  --bg-card-strong: rgba(255, 255, 255, 0.1);
  --text: #fffaf1;
  --muted: #b7aaa0;
  --muted-2: #83786f;
  --gold: #d6ad5f;
  --gold-strong: #f6ca72;
  --rose: #a83e64;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(214, 173, 95, 0.16), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(168, 62, 100, 0.14), transparent 30%),
    linear-gradient(180deg, #060506 0%, #0a090b 40%, #050505 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--gold);
  color: #16110a;
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
}
.brand span { display: grid; line-height: 1.1; }
.brand strong { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.9rem; }
.brand small { color: var(--muted); font-size: 0.78rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  color: #160f05 !important;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(214, 173, 95, 0.24);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
  position: relative;
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 56px;
  padding-top: 76px;
}

.eyebrow {
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.76rem;
  margin: 0 0 16px;
}

h1, h2, h3 { line-height: 0.98; margin: 0; letter-spacing: -0.045em; }
h1 {
  font-size: clamp(3.2rem, 8vw, 7.9rem);
  max-width: 920px;
}
h2 { font-size: clamp(2.2rem, 4.6vw, 4.75rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
p { color: var(--muted); }

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  max-width: 690px;
  margin: 28px 0 0;
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #1a1105;
  box-shadow: 0 18px 46px rgba(214, 173, 95, 0.28);
}
.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  color: var(--text);
}
.button-secondary:hover { border-color: rgba(214, 173, 95, 0.55); }

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  max-width: 640px;
}
.proof-row div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.052);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.proof-row strong { display: block; font-size: 1.15rem; color: var(--text); }
.proof-row span { color: var(--muted); font-size: 0.9rem; }

.hero-visual {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
}
.film-card {
  width: min(100%, 470px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.film-card-main { transform: rotate(2deg); }
.film-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(246,202,114,0.45), transparent 30%, rgba(168,62,100,0.38));
  z-index: -1;
  filter: blur(10px);
}
.film-topbar {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.film-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}
.film-topbar span:first-child { background: var(--rose); }
.film-topbar span:nth-child(2) { background: var(--gold); }
.film-frame {
  height: 440px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(246, 202, 114, 0.42), transparent 12%),
    linear-gradient(160deg, #24101a 0%, #0b0b15 45%, #020204 100%);
}
.moon {
  position: absolute;
  right: 54px;
  top: 54px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff5cc, var(--gold));
  box-shadow: 0 0 70px rgba(246, 202, 114, 0.55);
}
.city {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 170px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 34px, transparent 34px 52px);
  clip-path: polygon(0 42%, 8% 42%, 8% 22%, 16% 22%, 16% 55%, 26% 55%, 26% 30%, 36% 30%, 36% 65%, 45% 65%, 45% 18%, 56% 18%, 56% 50%, 67% 50%, 67% 28%, 78% 28%, 78% 60%, 89% 60%, 89% 36%, 100% 36%, 100% 100%, 0 100%);
}
.city-back { opacity: 0.25; transform: translateY(-24px) scaleX(1.04); }
.city-front { opacity: 0.48; }
.artist-silhouette {
  position: absolute;
  left: 50%;
  bottom: 60px;
  width: 96px;
  height: 230px;
  transform: translateX(-50%);
  background: linear-gradient(#0a0506, #030303);
  clip-path: polygon(40% 0, 60% 0, 69% 9%, 66% 28%, 78% 46%, 68% 100%, 32% 100%, 22% 46%, 34% 28%, 31% 9%);
  filter: drop-shadow(0 0 28px rgba(246, 202, 114, 0.24));
}
.light-beam {
  position: absolute;
  inset: auto auto -60px 50%;
  width: 260px;
  height: 520px;
  transform: translateX(-50%) rotate(8deg);
  background: linear-gradient(to top, rgba(246, 202, 114, 0.16), transparent 72%);
  clip-path: polygon(48% 0, 58% 0, 100% 100%, 0 100%);
}
.frame-caption {
  padding: 20px;
  display: grid;
  gap: 2px;
}
.frame-caption strong { color: var(--text); }
.frame-caption span { color: var(--muted); }
.floating-note {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 11, 14, 0.72);
  backdrop-filter: blur(18px);
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text);
  box-shadow: var(--shadow);
  font-weight: 800;
}
.note-one { top: 64px; left: 4px; }
.note-two { right: 0; top: 170px; }
.note-three { bottom: 122px; left: 34px; }

.marquee {
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}
.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 26s linear infinite;
}
.marquee span {
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 900;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}
.section-heading.wide { max-width: 840px; }
.section-heading p:not(.eyebrow) { font-size: 1.12rem; margin: 0; }

.card-grid {
  display: grid;
  gap: 18px;
}
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.service-card, .price-card, .review-card, .timeline article, .benefit-list div, .faq-list details, .brief-form {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: 0 16px 60px rgba(0,0,0,0.18);
}
.service-card {
  padding: 26px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card:hover { background: var(--bg-card-strong); }
.card-number { color: var(--gold); font-weight: 900; }
.service-card p { margin: 16px 0 0; }

.work-section { padding-top: 42px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.work-image {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.work-image::before, .work-image::after, .work-image span {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.work-image::before {
  width: 230px;
  height: 230px;
  top: 32px;
  right: -34px;
  background: rgba(255,255,255,0.12);
}
.work-image::after {
  width: 120px;
  height: 360px;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%) rotate(-12deg);
  background: rgba(0,0,0,0.72);
  border-radius: 70px 70px 0 0;
}
.work-image span {
  width: 75%;
  height: 38px;
  bottom: 32px;
  left: 12.5%;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  filter: blur(8px);
}
.dark-rose .work-image { background: radial-gradient(circle at 80% 20%, #d48b8b, transparent 20%), linear-gradient(150deg, #3b111f, #07070b); }
.trap-saint .work-image { background: radial-gradient(circle at 35% 25%, #d6ad5f, transparent 18%), linear-gradient(150deg, #111824, #020203); }
.island-heat .work-image { background: radial-gradient(circle at 70% 18%, #f6ca72, transparent 24%), linear-gradient(150deg, #9a3d19, #051111); }
.work-content { padding: 24px; }
.work-content p { margin: 0 0 10px; color: var(--gold); font-weight: 850; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.12em; }
.work-content span { display: block; margin-top: 14px; color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.split-section > div:first-child p:not(.eyebrow) { font-size: 1.16rem; }
.benefit-list {
  display: grid;
  gap: 14px;
}
.benefit-list div {
  padding: 22px;
  display: grid;
  gap: 8px;
}
.benefit-list strong { color: var(--text); font-size: 1.08rem; }
.benefit-list span { color: var(--muted); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.timeline article { padding: 24px; position: relative; overflow: hidden; }
.timeline article::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(214, 173, 95, 0.12);
  right: -40px;
  top: -40px;
}
.timeline span { color: var(--gold); font-weight: 900; display: inline-block; margin-bottom: 48px; }
.timeline h3 { font-size: 1.38rem; }

.director-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
}
.director-portrait {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 20%, rgba(246,202,114,0.22), transparent 34%), #09090d;
  overflow: hidden;
}
.director-copy { padding: 24px; align-self: center; }
.director-copy p:not(.eyebrow) { font-size: 1.1rem; }
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.tag-row span {
  border: 1px solid rgba(214, 173, 95, 0.34);
  color: var(--gold-strong);
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(214, 173, 95, 0.08);
  font-weight: 750;
  font-size: 0.9rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(214,173,95,0.18), rgba(255,255,255,0.06));
  border-color: rgba(214, 173, 95, 0.42);
  transform: translateY(-12px);
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: #1a1105;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card > p { color: var(--gold); font-weight: 900; margin: 0 0 16px; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; }
.price-card h3 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
.price-card > span { color: var(--muted); display: block; margin: 18px 0 24px; }
ul { padding-left: 0; margin: 0 0 26px; list-style: none; display: grid; gap: 12px; }
li { color: var(--muted); position: relative; padding-left: 24px; }
li::before { content: "✦"; color: var(--gold); position: absolute; left: 0; }
.price-card .button { margin-top: auto; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card { padding: 26px; }
.stars { color: var(--gold-strong); letter-spacing: 0.08em; margin-bottom: 14px; }
.review-card p { font-size: 1.04rem; }
.review-card strong { display: block; margin-top: 20px; color: var(--text); }
.review-card span { color: var(--muted-2); }

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details { padding: 20px 24px; }
.faq-list summary {
  cursor: pointer;
  font-weight: 850;
  list-style: none;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--gold); font-size: 1.4rem; line-height: 1; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 14px 0 0; }

.start-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  padding: 34px;
  border-radius: 42px;
  border: 1px solid rgba(214, 173, 95, 0.32);
  background: radial-gradient(circle at 10% 0%, rgba(214,173,95,0.22), transparent 28%), rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}
.brief-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}
.brief-form label { display: grid; gap: 8px; color: var(--text); font-weight: 750; }
.brief-form input, .brief-form select, .brief-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 14px;
  outline: none;
}
.brief-form input:focus, .brief-form select:focus, .brief-form textarea:focus { border-color: var(--gold); }
.brief-form textarea { resize: vertical; }
.hidden { display: none; }

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 52px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
}
.footer-brand { margin-bottom: 12px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
  justify-content: flex-end;
  color: var(--muted);
}
.footer-links a:hover { color: var(--gold); }
.copyright { grid-column: 1 / -1; margin: 0; color: var(--muted-2); }

@media (max-width: 980px) {
  .hero, .split-section, .director-card, .start-card { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .hero-visual { min-height: 520px; }
  .card-grid.four, .timeline { grid-template-columns: repeat(2, 1fr); }
  .work-grid, .pricing-grid, .review-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .nav { min-height: 68px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(7, 7, 8, 0.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: 180ms ease;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 10px 12px; }
  .nav-cta { text-align: center; }
  .section-shell { width: min(var(--max), calc(100% - 28px)); padding: 72px 0; }
  .hero { min-height: auto; }
  .proof-row, .card-grid.four, .timeline { grid-template-columns: 1fr; }
  .hero-visual { min-height: 480px; }
  .film-frame { height: 360px; }
  .floating-note { font-size: 0.82rem; }
  .note-one { top: 38px; }
  .note-two { top: 122px; }
  .note-three { bottom: 68px; }
  .director-card, .start-card { padding: 18px; border-radius: 30px; }
  .director-copy { padding: 8px; }
  .director-portrait { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
