/* ============================================================
   BISHOP CONTENT CREATION — DESIGN STYLES
   ============================================================
   To change colors or fonts, edit the :root block below.
   Everything else on the site references these variables,
   so you only need to change them in one place.
   ============================================================ */

:root {
  --ink:    #0f0f0e;   /* main text & dark backgrounds         */
  --paper:  #f5f3ee;   /* page background                      */
  --warm:   #e8e4db;   /* tinted surfaces, hover states        */
  --accent: #c8a96e;   /* gold — italic text, highlights, CTAs */
  --mid:    #8a8780;   /* secondary / muted text               */
  --light:  #d4d0c8;   /* borders and dividers                 */

  --serif: 'Playfair Display', Georgia, serif;  /* headlines   */
  --sans:  'Barlow', system-ui, sans-serif;     /* body text   */
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { background: var(--paper); color: var(--ink); font-family: var(--sans);
        font-weight: 300; font-size: 16px; line-height: 1.6; cursor: auto; }


/* ── Navigation ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  background: var(--paper);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled-down {
  transform: translateY(-100%);
}
.nav-logo {
  font-size: 11px; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 10px; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink); text-decoration: none;
  opacity: .6; transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Full-bleed video background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,15,14,.85) 0%,
    rgba(15,15,14,.4) 60%,
    rgba(15,15,14,.1) 100%
  );
  z-index: 1;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Left content sits over the video */
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 3rem 6rem;
  max-width: 680px;
}
.hero-headline { color: var(--paper); }
.hero-sub      { color: rgba(245,243,238,.6); }
.hero-cta      { color: var(--paper); border-bottom-color: var(--paper); }
.hero-right    { display: none; }
.hero-eyebrow {
  font-size: 10px; font-weight: 400; letter-spacing: .25em;
  text-transform: uppercase; color: rgba(245,243,238,.5); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .9s .3s forwards;
}
.hero-headline {
  font-family: var(--serif); font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.0; letter-spacing: -.02em;
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp .9s .5s forwards;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 13px; line-height: 1.8;
  max-width: 340px; margin-bottom: 3rem;
  opacity: 0; animation: fadeUp .9s .7s forwards;
}
.hero-logo {
  width: 300px; max-width: 100%; margin-bottom: 2rem; display: block;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: 10px; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; text-decoration: none;
  border-bottom: .5px solid; padding-bottom: 4px;
  opacity: 0; animation: fadeUp .9s .9s forwards; transition: gap .2s;
}
.hero-cta:hover { gap: 1.25rem; }
.hero-cta::after { content: '→'; }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 3rem; z-index: 2;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,243,238,.4);
  display: flex; align-items: center; gap: .75rem;
  opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.hero-scroll::before { content: ''; display: block; width: 40px; height: .5px; background: rgba(245,243,238,.2); }

/* ── Section label ───────────────────────────────────────── */
.sec-label {
  font-size: 9px; font-weight: 400; letter-spacing: .25em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 1rem;
}

/* ── Clients ticker ──────────────────────────────────────── */
.ticker-wrap { background: var(--ink); padding: 1.25rem 0; overflow: hidden; border-top: .5px solid #1e1e1c; }
.ticker-track { display: flex; animation: ticker 22s linear infinite; white-space: nowrap; }
.ticker-track span     { font-size: 9px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,243,238,.35); padding: 0 2.5rem; }
.ticker-track span.sep { color: rgba(245,243,238,.12); padding: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Services ────────────────────────────────────────────── */
.services {
  padding: 8rem 3rem; display: grid;
  grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start;
}
.services-intro h2 {
  font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.15; color: var(--ink); margin-bottom: 1.5rem;
}
.services-intro p { font-size: 14px; color: var(--mid); line-height: 1.8; max-width: 280px; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.svc-card {
  padding: 2.5rem 2rem; border-top: .5px solid var(--light);
  border-right: .5px solid var(--light); transition: background .2s;
}
.svc-card:nth-child(even) { border-right: none; }
.svc-card:nth-child(3), .svc-card:nth-child(4) { border-bottom: .5px solid var(--light); }
.svc-card:hover { background: var(--warm); }
.svc-num   { font-size: 9px; font-weight: 400; letter-spacing: .2em; color: var(--accent); margin-bottom: 1rem; }
.svc-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--ink); margin-bottom: .75rem; }
.svc-desc  { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ── Work grid ───────────────────────────────────────────── */
.work-section { padding: 6rem 3rem 8rem; background: var(--ink); }
.work-hdr {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: .5px solid #2a2a28;
}
.work-hdr h2 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.5rem); font-weight: 400; color: var(--paper); }
.wfilters { display: flex; gap: 4px; }
.wfbtn {
  background: transparent; border: .5px solid #2e2e2c; color: #5a5a58;
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; padding: 6px 14px;
  cursor: auto; border-radius: 1px; transition: all .15s;
}
.wfbtn:hover { border-color: #4a4a48; color: #aaa; }
.wfbtn.on    { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.wgrid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 2px; }
.wcard { position: relative; overflow: hidden; cursor: auto; }
.wcard.lg { grid-column: span 7; }
.wcard.md { grid-column: span 5; }
.wcard.sm { grid-column: span 4; }
.wthumb   { width: 100%; background: #181816; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.wcard.wide .wthumb { aspect-ratio: 16/9; }
.wcard.tall .wthumb { aspect-ratio: 9/16; max-height: 480px; }
.wcard.sq .wthumb { aspect-ratio: 1/1; max-height: 240px; }
.wthumb-ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #2a2a28;
  transition: transform .5s ease;
}
.wcard:hover .wthumb-ph { transform: scale(1.04); }
.wthumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wcard:hover .wthumb img { transform: scale(1.04); }
.woverlay { position: absolute; inset: 0; background: rgba(15,15,14,0); transition: background .3s; display: flex; align-items: flex-end; z-index: 2; }
.wcard:hover .woverlay { background: rgba(15,15,14,.55); }
.wmeta { padding: 1.5rem 1.25rem; transform: translateY(6px); opacity: 0; transition: all .25s; }
.wcard:hover .wmeta { opacity: 1; transform: translateY(0); }
.wclient { display: block; font-size: 11px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--paper); margin-bottom: 2px; }
.wrole   { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: rgba(245,243,238,.4); }
.wplay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.8);
  width: 52px; height: 52px; border: 1px solid rgba(245,243,238,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all .25s; z-index: 3;
}
.wcard:hover .wplay { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.wplay svg { width: 16px; height: 16px; fill: var(--paper); margin-left: 2px; }

/* ── About ───────────────────────────────────────────────── */
.about { padding: 9rem 3rem; display: grid; grid-template-columns: 5fr 4fr; gap: 6rem; align-items: center; }
.about-text h2 {
  font-family: var(--serif); font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: 1.5rem;
}
.about-text h2 em { font-style: italic; color: var(--accent); }
.about-text p  { font-size: 15px; color: var(--mid); line-height: 1.85; margin-bottom: 1.25rem; max-width: 520px; }
.about-stats   { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 3rem; }
.stat          { background: var(--warm); padding: 2rem 1.5rem; }
.stat-num      { font-family: var(--serif); font-size: 2.8rem; font-weight: 400; color: var(--ink); line-height: 1; margin-bottom: .4rem; }
.stat-label    { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--mid); }
.about-img-frame {
  background: var(--warm); aspect-ratio: 3/4; position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.about-img-frame::after { content: 'LUCAS BISHOP'; position: absolute; bottom: 2rem; left: 2rem; font-size: 9px; letter-spacing: .25em; color: var(--mid); }
.about-img-frame img    { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-img-ph { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--light); }

/* ── Process ─────────────────────────────────────────────── */
.process       { background: var(--ink); padding: 8rem 3rem; }
.process h2    { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; color: var(--paper); margin-bottom: 4rem; max-width: 400px; }
.proc-steps    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.step          { background: #151513; padding: 2.5rem 2rem; border-top: 1px solid transparent; transition: border-color .2s, background .2s; }
.step:hover    { background: #1c1c1a; border-color: var(--accent); }
.step-num      { font-family: var(--serif); font-size: 3rem; font-weight: 400; color: #252523; line-height: 1; margin-bottom: 1.5rem; }
.step-title    { font-size: 11px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--paper); margin-bottom: .75rem; }
.step-desc     { font-size: 13px; color: #5a5a58; line-height: 1.7; }

/* ── Contact ─────────────────────────────────────────────── */
.contact       { padding: 9rem 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact h2    { font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 400; line-height: 1.1; color: var(--ink); margin-bottom: 1.5rem; }
.contact h2 em { font-style: italic; color: var(--accent); }
.contact-sub   { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 3rem; max-width: 380px; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item  { display: flex; flex-direction: column; gap: .25rem; padding-bottom: 1.5rem; border-bottom: .5px solid var(--light); }
.ci-label      { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--mid); }
.contact-item a, .contact-item span { font-size: 15px; color: var(--ink); text-decoration: none; transition: color .2s; }
.contact-item a:hover { color: var(--accent); }
.form-field    { margin-bottom: 1.75rem; }
.form-label    { display: block; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--mid); margin-bottom: .6rem; }
.form-input, .form-textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: .5px solid var(--light); padding: .6rem 0;
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--ink); outline: none; transition: border-color .2s; cursor: auto;
}
.form-input:focus, .form-textarea:focus { border-bottom-color: var(--ink); }
.form-textarea { resize: none; height: 80px; }
.form-submit   {
  background: var(--ink); color: var(--paper); border: none; padding: 1rem 2.5rem;
  font-family: var(--sans); font-size: 10px; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; cursor: auto; transition: background .2s;
}
.form-submit:hover { background: var(--accent); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--ink); padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: .5px solid #1e1e1c;
}
.footer-logo  { font-size: 10px; font-weight: 400; letter-spacing: .22em; text-transform: uppercase; color: rgba(245,243,238,.4); }
.footer-copy  { font-size: 10px; letter-spacing: .1em; color: rgba(245,243,238,.2); }
.footer-social a { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,243,238,.4); text-decoration: none; transition: color .2s; }
.footer-social a:hover { color: var(--accent); }

/* ── Modal ───────────────────────────────────────────────── */
.modal-bg   { position: fixed; inset: 0; background: rgba(15,15,14,.97); z-index: 500; display: none; align-items: center; justify-content: center; padding: 2rem; }
.modal-bg.open { display: flex; }
.modal-inner   { position: relative; max-width: 900px; width: 100%; }
.modal-close   {
  position: absolute; top: -2.5rem; right: 0; background: none; border: none;
  color: #555; font-family: var(--sans); font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; cursor: auto; padding: 0; transition: color .2s;
}
.modal-close:hover  { color: var(--paper); }
.modal-embed        { width: 100%; background: #0a0a0a; }
.modal-embed.landscape { aspect-ratio: 16/9; }
.modal-embed.portrait  { aspect-ratio: 9/16; max-width: 360px; margin: 0 auto; }
.modal-ph           { width: 100%; display: flex; align-items: center; justify-content: center; color: #2a2a28; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.modal-ph.landscape { aspect-ratio: 16/9; }
.modal-ph.portrait  { aspect-ratio: 9/16; max-width: 360px; margin: 0 auto; }
.modal-meta         { padding: 1rem 0 0; display: flex; justify-content: space-between; align-items: baseline; }
.modal-client       { font-size: 12px; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--paper); }
.modal-role         { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #4a4a48; }
.modal-embed.square { aspect-ratio: 1/1; max-width: 600px; margin: 0 auto; }
.modal-ph.square    { aspect-ratio: 1/1; max-width: 600px; margin: 0 auto; }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {

  /* ── Nav ── */
  nav {
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .nav-links {
    gap: 1.25rem;
  }
  .nav-links a {
    font-size: 9px;
  }

 /* ── Hero ── */
  .hero-left {
    padding: 7rem 1.5rem 3rem;
    max-width: 100%;
  }
  .hero-headline {
    font-size: 3rem;
  }
  
  /* ── Services ── */
  .services {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem;
  }
  .services-intro p {
    max-width: 100%;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-card {
    border-right: none !important;
    border-bottom: .5px solid var(--light);
  }

  /* ── Work ── */
  .work-section {
    padding: 3rem 1.25rem 4rem;
  }
  .work-hdr {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
  .work-hdr h2 {
    font-size: 2rem;
  }
  .wfilters {
    flex-wrap: wrap;
  }
  .wcard.lg,
  .wcard.md { grid-column: span 12; }
  .wcard.sm  { grid-column: span 6; }

  /* ── About ── */
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
  }

  /* ── Process ── */
  .process {
    padding: 4rem 1.5rem;
  }
  .proc-steps {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Contact ── */
  .contact {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.5rem;
  }

  /* ── Footer ── */
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
  }

  /* ── Cursor off on touch ── */
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

