
:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --charcoal: #121212;
  --gold: #c8922f;
  --gold-light: #e3b75b;
  --ivory: #f4efe6;
  --muted: #b8b1a4;
  --line: rgba(200, 146, 47, .28);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

img { width: 100%; height: 100%; object-fit: cover; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(92%, var(--max)); margin-inline: auto; }
.narrow { width: min(88%, 900px); }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold-light);
}
.brand-name { letter-spacing: .12em; font-size: 14px; font-weight: 600; }
.brand-name small { display: block; color: var(--gold); font-size: 8px; margin-top: 3px; letter-spacing: .35em; }

.main-nav { display: flex; align-items: center; gap: 28px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.main-nav a { color: #ded8ce; transition: .25s ease; }
.main-nav a:hover { color: var(--gold-light); }
.nav-cta { border: 1px solid var(--gold); padding: 11px 16px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0;
}
.menu-toggle span { display: block; width: 24px; height: 1px; background: var(--ivory); margin: 7px auto; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: url("assets/hero-lordfrank.png") center center/cover no-repeat;
  transform: scale(1.015);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.90) 0%, rgba(0,0,0,.74) 30%, rgba(0,0,0,.22) 68%, rgba(0,0,0,.12) 100%),
    linear-gradient(0deg, rgba(0,0,0,.65) 0%, transparent 42%);
}
.hero-content { position: relative; z-index: 2; padding-top: 100px; max-width: 850px; margin-left: 5vw; }
.eyebrow { color: var(--gold-light); font-size: 11px; letter-spacing: .28em; font-weight: 700; text-transform: uppercase; }
.hero h1,
.section h2,
.transition h2,
.vision h2,
.feature-copy h2,
.contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.02em;
  margin: 18px 0;
}
.hero h1 { font-size: clamp(3.7rem, 7.6vw, 8.7rem); max-width: 980px; }
.hero h1 span, h2 span, h3 span { color: var(--gold-light); }
.hero-copy { font-size: clamp(1rem, 1.4vw, 1.25rem); color: #efe8dd; max-width: 660px; line-height: 1.7; }
.hero-origin { color: var(--gold-light); font-size: 14px; letter-spacing: .04em; }
.hero-actions, .feature-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: .25s ease;
}
.btn-gold { background: var(--gold); color: #0a0906; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(244,239,230,.42); color: var(--ivory); background: rgba(0,0,0,.12); }
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; font-size: 9px; letter-spacing: .25em; color: #d6cfc4;
}
.scroll-cue span { color: var(--gold-light); margin-left: 8px; }

.section { padding: 120px 0; }
.intro { text-align: center; background: radial-gradient(circle at 50% 20%, #12100c 0%, #080808 43%, #050505 75%); }
.intro h2, .projects h2, .dimensions h2, .collaborate h2, .contact h2 { font-size: clamp(3rem, 6vw, 6.8rem); }
.lead { font-size: 1.2rem; line-height: 1.85; color: #ded7cc; }
.body-copy { color: var(--muted); line-height: 1.85; }
.pillar-row {
  margin-top: 50px;
  display: flex; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pillar-row span { padding: 20px 36px; font-size: 11px; letter-spacing: .18em; color: var(--gold-light); }

.projects { background: #070707; }
.section-heading { margin-bottom: 55px; max-width: 800px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p:not(.eyebrow) { color: var(--muted); line-height: 1.7; }

.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.project-card { border-top: 1px solid var(--line); padding-top: 18px; }
.poster {
  aspect-ratio: 2 / 3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1711, #080808 70%);
  border: 1px solid rgba(200,146,47,.24);
}
.project-card:hover .poster img { transform: scale(1.025); }
.poster img { transition: .45s ease; }
.placeholder-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  color: rgba(227,183,91,.8);
  font-size: 11px; letter-spacing: .14em;
  padding: 30px;
}
.placeholder-label small { margin-top: 10px; color: rgba(255,255,255,.38); letter-spacing: .05em; text-transform: none; }
.project-meta { padding-top: 24px; }
.project-type { color: var(--gold); font-size: 9px; letter-spacing: .2em; font-weight: 700; }
.project-meta h3 { font-family: "Cormorant Garamond", serif; font-size: 2.2rem; line-height: 1; margin: 8px 0 12px; }
.tagline { color: var(--ivory); font-weight: 600; }
.project-desc { color: var(--muted); line-height: 1.7; font-size: .94rem; }
.text-link { display: inline-block; color: var(--gold-light); font-size: 10px; letter-spacing: .15em; margin-top: 10px; font-weight: 700; }

.transition { padding: 160px 0; text-align: center; background: #030303; }
.transition-first { color: #ded8cd; letter-spacing: .06em; }
.transition h2 { font-size: clamp(3.2rem, 7vw, 7.6rem); }

.feature {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 760px;
  border-top: 1px solid rgba(200,146,47,.18);
}
.feature:nth-child(even) .feature-image { order: 2; }
.feature-image, .vision-image {
  position: relative;
  min-height: 650px;
  background: linear-gradient(145deg, #17140e, #060606);
}
.feature-copy {
  align-self: center;
  padding: clamp(60px, 7vw, 110px);
}
.feature-copy h2 { font-size: clamp(4rem, 6vw, 7rem); }
.feature-copy h3 { font-family: "Cormorant Garamond", serif; font-size: clamp(2.1rem, 3.6vw, 4rem); line-height: 1; margin: 0 0 30px; }
.feature-copy p { color: #bcb5aa; line-height: 1.8; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.feature-tags span, .collab-tags span {
  border: 1px solid var(--line);
  color: var(--gold-light);
  padding: 10px 12px;
  font-size: 9px;
  letter-spacing: .16em;
}
.feature-tour { background: #0a0907; }
.feature-legion { background: #060606; }
.legion-line { color: var(--ivory) !important; letter-spacing: .18em; font-size: 11px; font-weight: 700; }

.dimensions { background: #090909; }
.dimension-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); margin-top: 50px; }
.dimension-box { background: #080808; padding: 65px; min-height: 380px; }
.dimension-box h3 { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 3.2vw, 3.8rem); line-height: 1; margin: 14px 0; }
.dimension-box > p:last-child { color: var(--muted); margin-top: 36px; line-height: 1.7; }
.dimension-statement { text-align: center; color: var(--gold-light); letter-spacing: .22em; font-size: 11px; margin-top: 45px; }

.vision {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.vision-image { position: absolute; inset: 0; min-height: 100%; }
.vision-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.90), rgba(0,0,0,.6) 45%, rgba(0,0,0,.20)); }
.vision-content { position: relative; z-index: 2; }
.vision-content h2 { font-size: clamp(3.7rem, 7vw, 7.8rem); max-width: 900px; }
.vision-content p:last-child { max-width: 680px; color: #d5cec2; line-height: 1.8; }

.collaborate { text-align: center; background: radial-gradient(circle at 50% 0%, #161106 0%, #080808 45%, #050505 74%); }
.collab-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 45px 0; }
.collab-line { font-family: "Cormorant Garamond", serif; font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1.15; margin: 55px auto 35px; max-width: 850px; }

.contact { background: #070707; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.contact-copy p { color: var(--muted); line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 12px; margin-top: 35px; color: var(--gold-light); }
.contact-form { display: grid; gap: 20px; }
.contact-form label { display: grid; gap: 9px; color: #cfc8bc; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  background: #0c0c0c;
  color: var(--ivory);
  border: 1px solid #28231b;
  padding: 15px 14px;
  font: inherit;
  outline: 0;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }

.footer { padding: 70px 0 30px; background: #030303; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; }
.footer p { font-size: 11px; letter-spacing: .1em; }
.muted { color: #807a71; }
.footer-links, .footer-social { display: flex; flex-direction: column; gap: 12px; font-size: 10px; letter-spacing: .12em; color: #b8b1a5; }
.footer-bottom { margin-top: 55px; padding-top: 25px; border-top: 1px solid #1a1712; color: #706b63; font-size: 9px; letter-spacing: .12em; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 76px 4% auto 4%;
    background: #080808;
    border: 1px solid var(--line);
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .poster-grid { grid-template-columns: 1fr; gap: 70px; }
  .project-card { max-width: 620px; margin-inline: auto; }
  .feature { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-image { order: 0; }
  .feature-image { min-height: 55vw; }
  .dimension-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 50px; }
  .dimension-box { padding: 42px 28px; }
}

@media (max-width: 600px) {
  .site-header { padding: 14px 0; }
  .brand-name { font-size: 11px; }
  .brand-mark { font-size: 28px; }
  .hero-content { margin-left: 0; padding-top: 120px; }
  .hero { min-height: 92vh; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.48)),
      linear-gradient(0deg, rgba(0,0,0,.72), transparent 55%);
  }
  .section { padding: 85px 0; }
  .transition { padding: 110px 0; }
  .pillar-row { flex-direction: column; }
  .pillar-row span { border-bottom: 1px solid var(--line); }
  .feature-copy { padding: 65px 7%; }
  .feature-image { min-height: 70vw; }
  .btn { width: 100%; }
  .hero-actions, .feature-actions { flex-direction: column; }
  .scroll-cue { display: none; }
}


/* Official LordFrank Entertainment logo */
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-brand {
  line-height: 0;
  margin-bottom: 18px;
}

.footer-logo {
  width: 290px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .brand-logo {
    width: 185px;
  }
}

@media (max-width: 600px) {
  .brand-logo {
    width: 150px;
  }

  .footer-logo {
    width: 230px;
  }
}


/* Production placeholder behavior:
   Placeholder directions only show while the intended image is missing.
   Once an image loads successfully, it sits above the placeholder and the directions are removed. */
.placeholder img,
.placeholder-wide img {
  position: relative;
  z-index: 2;
}

.placeholder-label {
  z-index: 1;
}

.placeholder.image-loaded .placeholder-label,
.placeholder-wide.image-loaded .placeholder-label {
  display: none;
}
