/* ============================================================
   STUDIO LENSHADE — shared stylesheet
   Token system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  /* color */
  --ink:        #0e0d0b;   /* background */
  --panel:      #17140f;   /* raised surface */
  --panel-2:    #1f1b14;   /* raised surface, lighter */
  --gold:       #b6903f;   /* primary accent, from logo */
  --gold-light: #e0bd78;   /* hover / highlight */
  --gold-dim:   #6e5729;   /* muted gold for borders */
  --cream:      #f3ede0;   /* primary text on dark */
  --cream-dim:  #b7ae9c;   /* secondary text */
  --line:       #2c2820;   /* hairline rule */

  /* type */
  --f-display: 'Bebas Neue', sans-serif;
  --f-body: 'Jost', sans-serif;
  --f-mono: 'JetBrains Mono', monospace;

  /* layout */
  --max: 1180px;
  --edge: clamp(1.25rem, 4vw, 4rem);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

h1,h2,h3{
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--cream);
}

p{ margin: 0 0 1em; color: var(--cream-dim); }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 var(--edge); }

/* -------------------------------------------------------
   Screenplay-style slugline eyebrow — signature device
   used to head every major section, referencing the
   INT./EXT. LOCATION — TIME convention of a shooting script.
   ------------------------------------------------------- */
.slugline{
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.9em;
}
.slugline::before{
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold-dim);
  display: inline-block;
}

/* -------------------------------------------------------
   Filmstrip divider — sprocket holes, used sparingly
   between sections as the page's connective tissue
   ------------------------------------------------------- */
.filmstrip{
  height: 26px;
  width: 100%;
  background-image:
    radial-gradient(circle, var(--panel-2) 3.5px, transparent 3.6px);
  background-size: 26px 26px;
  background-position: 13px center;
  background-repeat: repeat-x;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  opacity: 0.9;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,13,11,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem var(--edge);
  max-width: var(--max);
  margin: 0 auto;
}
.brand{
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img{ height: 40px; width: 40px; object-fit: contain; }
.brand-text{
  font-family: var(--f-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand-text small{
  display: block;
  font-family: var(--f-mono);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 400;
  margin-top: 3px;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a{
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: var(--cream-dim);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible{ color: var(--cream); }
.nav-links a.active{ color: var(--gold-light); }
.nav-links a.active::after{
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
}
.nav-cta{
  border: 1px solid var(--gold-dim);
  padding: 0.55rem 1.1rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light) !important;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover{ background: var(--gold); color: var(--ink) !important; }

.nav-toggle{
  display: none;
  background: none; border: none; color: var(--cream);
  font-size: 1.5rem; cursor: pointer;
}

@media (max-width: 860px){
  .nav-links{
    position: fixed; inset: 64px 0 0 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 1rem var(--edge) 2rem;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-links li{ width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a{ display: block; padding: 1rem 0; }
  .nav-toggle{ display: block; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 3rem var(--edge) 2rem;
  margin-top: 5rem;
}
.footer-grid{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 700px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h4{
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9rem;
}
.footer-grid ul{ list-style: none; margin: 0; padding: 0; }
.footer-grid li{ margin-bottom: 0.55rem; }
.footer-grid a{ color: var(--cream-dim); transition: color 0.2s ease; }
.footer-grid a:hover{ color: var(--gold-light); }
.footer-bottom{
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-family: var(--f-mono); font-size: 0.7rem; color: var(--cream-dim);
  letter-spacing: 0.04em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--gold);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-solid{ background: var(--gold); color: var(--ink); }
.btn-solid:hover{ background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-ghost{ color: var(--gold-light); }
.btn-ghost:hover{ background: var(--gold); color: var(--ink); }

/* ============================================================
   HERO (shared shell; homepage adds clapperboard)
   ============================================================ */
.page-hero{
  padding: 5rem var(--edge) 4rem;
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero .slugline{ justify-content: flex-start; }
.page-hero h1{
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  max-width: 14ch;
}
.page-hero .lede{
  max-width: 46ch;
  font-size: 1.05rem;
  margin-top: 1.2rem;
}

/* ============================================================
   SECTION helpers
   ============================================================ */
section{ padding: 4.5rem var(--edge); }
section.tight{ padding: 3rem var(--edge); }
.section-inner{ max-width: var(--max); margin: 0 auto; }
.section-head{ max-width: 60ch; margin-bottom: 2.5rem; }
.section-head h2{ font-size: clamp(2rem, 4.5vw, 2.8rem); }

.grid{ display: grid; gap: 1.5rem; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; } }

.card{
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 2rem;
}

/* frame placeholder — stands in for real photography until
   the studio's own gallery images are dropped in */
.frame{
  position: relative;
  aspect-ratio: 4/5;
  background:
    linear-gradient(155deg, var(--panel-2) 0%, var(--panel) 60%),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(182,144,63,0.04) 18px 19px);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.frame::before{
  content: attr(data-tag);
  position: absolute; top: 0.9rem; left: 0.9rem;
  font-family: var(--f-mono); font-size: 0.65rem;
  letter-spacing: 0.1em; color: var(--gold-dim);
}
.frame::after{
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.frame:hover::after{ border-color: var(--gold); }
.frame .frame-cap{
  position: relative;
  padding: 1rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--cream-dim);
  letter-spacing: 0.03em;
  border-top: 1px solid var(--line);
  width: 100%;
  background: rgba(14,13,11,0.55);
}
.frame.wide{ aspect-ratio: 16/10; }
.frame.square{ aspect-ratio: 1/1; }

/* stat / number row */
.stat{ border-left: 1px solid var(--gold-dim); padding-left: 1.1rem; }
.stat .num{ font-family: var(--f-display); font-size: 2.6rem; color: var(--gold-light); line-height: 1; }
.stat .label{ font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-dim); margin-top: 0.4rem; }

/* CTA band */
.cta-band{
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4rem var(--edge);
  text-align: center;
}
.cta-band h2{ font-size: clamp(2rem, 5vw, 3.2rem); max-width: 20ch; margin: 0 auto 1rem; }
.cta-band .btn{ margin-top: 1rem; }

/* forms */
label{ font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
input, textarea, select{
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.4rem;
}
input:focus, textarea:focus, select:focus{ outline: none; border-color: var(--gold); }
textarea{ resize: vertical; min-height: 120px; }

.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 600px){ .field-row{ grid-template-columns: 1fr; } }

/* keyboard focus visibility across the site */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}
