/* styles.css
   Extracted from Landingpage.html <style> block.
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
  --black: #0a0a0a;
  --off-white: #f0ede6;
  --muted: rgba(240,237,230,0.45);
  --accent: #c8ff00;
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 72px; /* height reserved for fixed nav */
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: static; /* scroll with the page */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2.5rem;
  mix-blend-mode: difference;
  pointer-events: auto;
  background: transparent;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
 
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
 
.nav-links a:hover { opacity: 1; }
.nav-links a:hover { color: #e7ff3d; }
 
/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
 
.hero-video-wrap {
  position: absolute;
  inset: 0;
}
 
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
 
/* Placeholder when no video */
.hero-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #111 0%, #1a1a18 50%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.hero-play-icon {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(240,237,230,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
 
.hero-play-icon:hover { border-color: var(--off-white); transform: scale(1.05); }
 
.hero-play-icon svg { margin-left: 4px; }
 
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.0) 60%);
}
 
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-button {
  position: absolute;
  right: 15%;
  bottom: 12rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(240,237,230,0.3);
  padding: 1rem 2rem;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
}

.cta-button:hover {
  color: var(--accent);
  border-color: var(--accent);
}
 
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e7ff3d;
  margin-bottom: 1rem;
}
 
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 9rem);
  line-height: 0.93;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--off-white);
  max-width: 700px;
}
 
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #e7ff3d;
  writing-mode: vertical-rl;
}
 
.scroll-line {
  width: 1px;
  height: 60px;
  background: #e7ff3d;
  animation: scrollLine 2s ease-in-out infinite;
}



 
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.4); opacity: 0.15; }
}
 
.hero-year {
  position: absolute;
  bottom: 2.4rem;
  left: 2.5rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #e7ff3d;
}
 
/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 4rem 2.5rem 2rem;
  border-top: 1px solid rgba(240,237,230,0.08);
}
 
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e7ff3d;
}
 
.section-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #e7ff3d;
  text-decoration: none;
  transition: color 0.2s;
}
.section-link:hover { color: var(--off-white); }
 
/* ── WORK GRID ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(240,237,230,0.06);
  margin: 0 2.5rem;
}
 
.work-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

 
.work-card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0,0,1), opacity 0.4s;
  opacity: 0.75;
}
 
.work-card:hover .work-card-media {
  transform: scale(1.04);
  opacity: 0.9;
  background-color: #e7ff3d;
}
 
/* Placeholder for work cards */
.work-card-placeholder {
  width: 100%;
  height: 100%;
  background: #141414;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
 
.card-placeholder-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
 
.card-placeholder-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}
 
.card-placeholder-inner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 36px;
  border: 1px solid rgba(8, 17, 186, 0.12);
  border-radius: 3px;
}
 
.work-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
  transform: translateY(8px);
  transition: transform 0.3s ease;
}
 
.work-card:hover .work-card-info {
  transform: translateY(0);
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(0,100,255,0.4) 100%);
  transition: transform 1s ease, background 1.2s ease 0.3s;
}
 
.work-card-client {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
 
.work-card-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 0.3rem;
}
 
.work-card-director {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.35);
}
 
/* Wide card variant */
.work-card.wide {
  grid-column: span 2;
  aspect-ratio: 16/5;
}
 
/* ── NEWS / JOURNAL ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 2.5rem;
  border-top: 1px solid rgba(240,237,230,0.06);
}
 
.news-card {
  padding: 2rem 0;
  border-right: 1px solid rgba(240,237,230,0.06);
  padding-right: 2rem;
  padding-left: 0;
}
 
.news-card:last-child { border-right: none; }
.news-card:not(:first-child) { padding-left: 2rem; }
 
.news-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 1.2rem;
  background: #141414;
  display: block;
}
 
.news-card-img-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  background: #141414;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,237,230,0.1);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
 
.news-card-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--off-white);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
 
.news-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
 
.news-card-link {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(240,237,230,0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
 
.news-card-link:hover { border-color: var(--off-white); }
 
/* ── STATEMENT BAND ── */
.statement {
  padding: 7rem 2.5rem;
  border-top: 1px solid rgba(240,237,230,0.08);
}
 
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--off-white);
  max-width: 900px;
}
 
.statement-text em {
  font-style: normal;
  color: var(--accent);
}
 
/* ── DIRECTORS ROW ── */
.directors-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0 2.5rem;
  background: rgba(240,237,230,0.06);
}

.director-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}
 
.director-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #181818, #0f0f0f);
}
 
.director-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.director-card:hover .director-info {
  transform: translateY(0);
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(0,100,255,0.4) 100%);
  transition: transform 0.3s ease, background 1.2s ease 0.3s;
}
 
.director-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 0.2rem;
}
 
.director-specialty {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.35);
}

.director-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0,0,1), filter 0.5s ease;
  filter: grayscale(10%) contrast(1.05) brightness(0.9);
}

.director-card:hover .director-image {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.08) brightness(0.95);
}
 
/* ── CONTACT / FOOTER ── */
footer {
  margin-top: 6rem;
  padding: 4rem 2.5rem;
  border-top: 1px solid rgba(240,237,230,0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-cols-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 12rem;
}

.footer-col {
  flex: 0 1 auto;
}

.contact-form {
  grid-column: 1 / -1;
  margin-top: 2rem;
}

.contact-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.form-input,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--off-white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(240,237,230,0.2);
  padding: 0.8rem 0;
  transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(240,237,230,0.4);
}

.form-input::placeholder {
  color: var(--accent);
}

.form-textarea::placeholder {
  color: var(--accent);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form-textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 120px;
}
 
.footer-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--off-white);
  grid-column: 1 / -1;
  margin-bottom: 2rem;
}
 
.footer-col-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
 
.footer-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--off-white);
  text-decoration: none;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
  opacity: 0.75;
}
 
.footer-col a:hover { opacity: 1; color: var(--accent); }
 
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(240,237,230,0.06);
  margin-top: 2rem;
}
 
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: #e7ff3d;
}
 
.footer-socials {
  display: flex;
  gap: 1.5rem;
}
 
.footer-socials a {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
 
.footer-socials a:hover { color: var(--accent); }
 
/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
 
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(240,237,230,0.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.18s ease-out;
  mix-blend-mode: difference;
}
 
body:hover .cursor { opacity: 1; }
 
/* ── PAGE LOAD ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
 
.hero-headline { animation: fadeUp 1s cubic-bezier(0.22,1,0.36,1) 0.2s forwards; opacity: 0; }
.hero-eyebrow  { animation: fadeUp 0.8s cubic-bezier(0.22,1,0.36,1) 0.05s forwards; opacity: 0; }
 
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
 
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .work-grid { grid-template-columns: 1fr 1fr; margin: 0 1.2rem; }
  .work-card.wide { grid-column: span 1; }
  .news-grid { grid-template-columns: 1fr; margin: 0 1.2rem; }
  .news-card { border-right: none; border-bottom: 1px solid rgba(240,237,230,0.06); padding: 2rem 0 2rem 2rem; }
  .news-card:not(:last-child) { margin-bottom: 2rem; }
  .section-header { flex-direction: column; align-items: flex-start; padding: 3rem 2.5rem 2rem; }
  .section-header > * { max-width: 100%; }
  .hero-scroll { display: none; }
  footer { grid-template-columns: 1fr; }
  .footer-col { padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-socials { justify-content: flex-start; }
  .cursor { width: 6px; height: 6px; }
  .cursor-ring { width: 28px; height: 28px; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: clamp(2.5rem, 6vw, 5rem); }
  .hero-eyebrow { font-size: 0.65rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.6rem; }
  .section-label { font-size: 0.65rem; }
  .section-link { font-size: 0.65rem; }
  .work-card-client { font-size: 0.55rem; }
  .work-card-title { font-size: 0.9rem; }
  .work-card-director { font-size: 0.5rem; }
  .news-card-title { font-size: 0.9rem; }
  .news-card-excerpt { font-size: 0.75rem; }
  .news-card-link { font-size: 0.6rem; }
  .statement-text { font-size: clamp(2.5rem, 5vw, 5rem); }
  .director-name { font-size: 0.8rem; }
  .director-specialty { font-size: 0.5rem; }
  .footer-title { font-size: clamp(1.5rem, 3vw, 3rem); }
  .footer-col-label { font-size: 0.55rem; }
  .footer-col a { font-size: 0.8rem; }
  .footer-copy { font-size: 0.55rem; }
  .cursor { width: 4px; height: 4px; }
  .cursor-ring { width: 24px; height: 24px; }
}
@media (max-width: 400px) {
  .hero-headline { font-size: clamp(2rem, 5vw, 4.5rem); }
  .hero-eyebrow { font-size: 0.6rem; }
  .nav-links a { font-size: 0.55rem; }
  .section-label { font-size: 0.6rem; }
  .section-link { font-size: 0.6rem; }
  .work-card-client { font-size: 0.5rem; }
  .work-card-title { font-size: 0.8rem; }
  .work-card-director { font-size: 0.45rem; }
  .news-card-title { font-size: 0.8rem; }
  .news-card-excerpt { font-size: 0.7rem; }
  .news-card-link { font-size: 0.55rem; }
  .statement-text { font-size: clamp(2rem, 4.5vw, 4rem); }
  .director-name { font-size: 0.75rem; }
  .director-specialty { font-size: 0.45rem; }
  .footer-title { font-size: clamp(1.2rem, 2.5vw, 2.5rem); }
  .footer-col-label { font-size: 0.5rem; }
  .footer-col a { font-size: 0.7rem; }
  .footer-copy { font-size: 0.5rem; }
  .cursor { width: 3px; height: 3px; }
  .cursor-ring { width: 20px; height: 20px; }
}

/* Submit Button */
.submit-button {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  background: transparent;
  border: 1px solid rgba(240,237,230,0.3);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
}

.submit-button:hover {
  color: #e7ff3d;
  border-color: #e7ff3d;
}




