/* ═══════════════════════════════════════════════
   SHOTON PICTURES — SHARED STYLESHEET
   Light Theme · Premium Editorial
════════════════════════════════════════════════ */

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

:root {
  --orange:      #FF6200;
  --orange-dark: #cc4e00;
  --orange-pale: #FFF0E8;
  --black:       #0C0C0C;
  --charcoal:    #1E1E1E;
  --text:        #1A1A1A;
  --muted:       #787878;
  --light-muted: #AAAAAA;
  --bg:          #F7F6F3;
  --white:       #FFFFFF;
  --surface:     #EFEFEC;
  --border:      rgba(0,0,0,0.10);
  --border-light:rgba(0,0,0,0.06);
  --font-display:'Bebas Neue', sans-serif;
  --font-serif:  'Playfair Display', serif;
  --font-body:   'Outfit', sans-serif;
  --font-mono:   'Space Mono', monospace;
  --max:         1360px;
  --nav-h:       80px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { text-decoration: none; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ── NAVBAR ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  background: rgba(247,246,243,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.07); }
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 48px; /* Adjust height based on actual logo proportions */
  width: auto;
  display: block;
}
.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none; align-items: center;
}
.nav-links a {
  font-family: var(--font-body); font-size: 0.82rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500; color: var(--muted);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 0.6rem 1.6rem;
  border-radius: 2px;
  letter-spacing: 2px !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; height: 1.5px; background: var(--text);
  transition: all 0.3s;
}
.hamburger span:nth-child(1) { width: 26px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 22px; }

/* Mobile menu */
.mobile-nav {
  position: fixed; inset: 0; background: var(--white); z-index: 999;
  display: none; flex-direction: column; align-items: center;
  justify-content: center; gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 3.2rem;
  color: var(--text); letter-spacing: 4px;
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  font-size: 2rem; color: var(--text); cursor: pointer;
}
.mobile-phone {
  font-family: var(--font-mono); font-size: 0.85rem;
  color: var(--orange); letter-spacing: 2px; margin-top: 1rem;
}

/* ── PAGE WRAPPER ── */
.page-body { padding-top: var(--nav-h); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-weight: 600; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 1rem 2.5rem; transition: all 0.3s;
  border-radius: 2px;
}
.btn-orange {
  background: var(--orange); color: #fff;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-outline-dark:hover { background: var(--text); color: var(--white); }
.btn-outline-orange {
  background: transparent; color: var(--orange);
  border: 1.5px solid var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: #fff; }

/* ── SECTION HELPERS ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 4rem; }
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

.eyebrow {
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--orange); display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content:''; display:block; width:28px; height:1px; background:var(--orange);
}
.display-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.92; letter-spacing: 1px;
  color: var(--text);
}
.serif-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2; color: var(--text);
}
.body-text {
  font-size: 1.05rem; line-height: 1.85; color: var(--muted);
}

/* ── ORANGE LINE ACCENT ── */
.orange-line {
  width: 60px; height: 3px; background: var(--orange); margin: 1.5rem 0;
}

/* ── TICKER ── */
.ticker {
  background: var(--orange); padding: 0.7rem 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 0;
  animation: tickerScroll 28s linear infinite;
}
.ticker-item {
  font-family: var(--font-display); font-size: 0.95rem;
  letter-spacing: 4px; color: #fff;
  padding: 0 2.5rem; display: inline-flex; align-items: center; gap: 2.5rem;
}
.ticker-item::after { content:'◆'; font-size:0.45rem; opacity:0.6; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── STATS BAR ── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}
.stat-item {
  padding: 3rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--orange-pale); }
.stat-n {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--orange); line-height: 1; display: block;
}
.stat-l {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); display: block; margin-top: 0.5rem;
}

/* ── SERVICE CARD ── */
.service-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 2.5rem 2rem; position: relative;
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.service-card::before {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:3px; background:var(--orange);
  transition: width 0.4s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
.service-card:hover::before { width:100%; }
.svc-num {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--light-muted); letter-spacing: 3px; margin-bottom: 1.5rem;
}
.svc-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.svc-title {
  font-family: var(--font-display); font-size: 1.8rem;
  letter-spacing: 1px; color: var(--text); margin-bottom: 0.75rem;
}
.svc-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }
.svc-arrow {
  margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 2px;
  color: var(--orange); text-transform: uppercase;
}

/* ── PORTFOLIO CARD ── */
.port-card {
  position: relative; overflow: hidden;
  background: var(--surface); cursor: pointer;
  aspect-ratio: 4/3;
}
.port-placeholder {
  width:100%; height:100%; min-height:200px;
  display:flex; align-items:center; justify-content:center;
  flex-direction: column; gap: 0.75rem;
}
.port-placeholder .film-num {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 3px; color: var(--light-muted);
}
.port-placeholder .film-title {
  font-family: var(--font-display); font-size: 1.3rem;
  color: rgba(0,0,0,0.15); letter-spacing: 3px; text-align: center;
}
.port-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0) 55%);
  opacity:0; transition: opacity 0.4s;
  display:flex; flex-direction:column;
  justify-content:flex-end; padding:1.5rem;
}
.port-card:hover .port-overlay { opacity:1; }
.port-tag {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing:3px; color: var(--orange); margin-bottom:0.4rem;
  text-transform:uppercase;
}
.port-name {
  font-family: var(--font-display); font-size: 1.4rem;
  color: #fff; letter-spacing:1px;
}
.port-play {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%) scale(0);
  transition: transform 0.4s; z-index:2;
}
.port-card:hover .port-play { transform:translate(-50%,-50%) scale(1); }
.play-circle {
  width:60px; height:60px; border-radius:50%;
  border:2px solid rgba(255,255,255,0.7);
  display:flex; align-items:center; justify-content:center;
  background: rgba(255,98,0,0.25); backdrop-filter:blur(4px);
}
.play-circle::after {
  content:''; border-left:18px solid #fff;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  margin-left:5px;
}

/* ── CONTACT FORM ── */
.form-wrap { display:flex; flex-direction:column; gap:1.2rem; }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.form-group { display:flex; flex-direction:column; gap:0.5rem; }
.form-group label {
  font-family: var(--font-mono); font-size: 0.62rem;
  letter-spacing:3px; text-transform:uppercase; color:var(--muted);
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--white); border: 1px solid var(--border);
  color: var(--text); padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; border-radius: 2px;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus {
  border-color: var(--orange);
}
.form-group textarea { resize:none; height:130px; }
.form-group select option { background: var(--white); }

/* ── CONTACT INFO ── */
.c-item {
  display:flex; gap:1.2rem; align-items:flex-start; padding:1.5rem;
  background:var(--white); border:1px solid var(--border);
  transition: border-color 0.3s;
  border-radius:2px; margin-bottom:1rem;
}
.c-item:hover { border-color: var(--orange); }
.c-icon {
  width:44px; height:44px; flex-shrink:0;
  background:var(--orange-pale); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
}
.c-text strong {
  display:block; font-family:var(--font-mono); font-size:0.62rem;
  letter-spacing:3px; text-transform:uppercase; color:var(--orange);
  margin-bottom:0.4rem;
}
.c-text span { font-size:0.95rem; color:var(--muted); line-height:1.6; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal); color: var(--white);
  padding: 5rem 0 2rem;
}
.footer-grid {
  max-width: var(--max); margin:0 auto; padding:0 4rem;
  display:grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:4rem; margin-bottom:4rem;
}
.f-brand .logo {
  font-family:var(--font-display); font-size:1.8rem;
  letter-spacing:3px; color:#fff; display:block; margin-bottom:1.2rem;
}
.f-brand .logo span { color:var(--orange); }
.f-brand p { font-size:0.9rem; color:rgba(255,255,255,0.45); line-height:1.8; max-width:280px; }
.f-col h4 {
  font-family:var(--font-mono); font-size:0.62rem;
  letter-spacing:4px; text-transform:uppercase;
  color:var(--orange); margin-bottom:1.5rem;
}
.f-col ul { list-style:none; display:flex; flex-direction:column; gap:0.8rem; }
.f-col a {
  font-size:0.9rem; color:rgba(255,255,255,0.45); transition:color 0.3s;
}
.f-col a:hover { color:#fff; }
.footer-bottom {
  max-width:var(--max); margin:0 auto; padding:2rem 4rem 0;
  border-top:1px solid rgba(255,255,255,0.08);
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:1rem;
}
.footer-bottom p { font-size:0.78rem; color:rgba(255,255,255,0.35); font-family:var(--font-mono); }
.socials { display:flex; gap:1rem; }
.social-a {
  width:36px; height:36px; border:1px solid rgba(255,255,255,0.15);
  border-radius:2px; display:flex; align-items:center; justify-content:center;
  font-size:0.72rem; color:rgba(255,255,255,0.4); transition:all 0.3s;
}
.social-a:hover { border-color:var(--orange); color:var(--orange); }

/* ── MARQUEE ── */
.marquee-wrap { overflow:hidden; }
.marquee-row {
  display:flex; gap:0; white-space:nowrap;
  animation: scrollLeft 30s linear infinite;
}
.marquee-row.reverse { animation-direction:reverse; animation-duration:38s; margin-top:1px; }
.m-item {
  flex-shrink:0; font-family:var(--font-display); font-size:1.3rem;
  letter-spacing:4px; padding:0.6rem 3rem;
  color:rgba(0,0,0,0.12); border-right:1px solid var(--border);
  transition:color 0.3s; white-space:nowrap;
}
.m-item:hover { color:var(--orange); }
@keyframes scrollLeft { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-up, .reveal-l, .reveal-r {
  opacity:0; transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal, .reveal-up { transform: translateY(30px); }
.reveal-l { transform: translateX(-30px); }
.reveal-r { transform: translateX(30px); }
.in-view { opacity:1; transform: none; }

/* ── PROCESS STEPS ── */
.step-row {
  display:grid; grid-template-columns: 64px 1fr;
  gap:1.5rem 2rem; padding:2rem 0; 
  border-bottom:1px solid var(--border-light);
  align-items:start;
}
.step-row:last-child { border-bottom:none; }
.step-circle {
  width:64px; height:64px; border-radius:50%;
  border:2px solid var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:0.85rem; color:var(--orange);
  flex-shrink:0;
}
.step-body h3 {
  font-family:var(--font-display); font-size:2rem; letter-spacing:1px;
  color:var(--text); margin-bottom:0.5rem;
}
.step-body p { font-size:0.95rem; color:var(--muted); line-height:1.8; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--white);
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content:''; position:absolute; top:0; right:0;
  width:40%; height:100%;
  background: var(--orange-pale);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index:0;
}
.page-hero .container { position:relative; z-index:1; }
.page-hero-crumb {
  font-family:var(--font-mono); font-size:0.65rem;
  letter-spacing:4px; text-transform:uppercase;
  color:var(--muted); margin-bottom:1rem;
}
.page-hero-crumb a { color:var(--orange); }

/* ── TESTIMONIALS ── */
.testi-card {
  background:var(--white); border:1px solid var(--border);
  padding:2.5rem; border-radius:2px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,0.07); }
.testi-stars { color:var(--orange); font-size:1rem; margin-bottom:1.2rem; letter-spacing:3px; }
.testi-text {
  font-family:var(--font-serif); font-size:1.05rem;
  line-height:1.8; color:var(--text); margin-bottom:1.5rem;
  font-style:italic;
}
.testi-author strong { font-size:0.9rem; font-weight:600; }
.testi-author span { font-size:0.78rem; color:var(--muted); display:block; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--charcoal); padding: 6rem 0; text-align:center;
}
.cta-banner h2 {
  font-family:var(--font-display); font-size:clamp(3rem,6vw,6rem);
  letter-spacing:2px; color:#fff; margin-bottom:1.5rem;
}
.cta-banner p { font-size:1rem; color:rgba(255,255,255,0.5); margin-bottom:2.5rem; }
.cta-banner .cta-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn-white {
  background:#fff; color:var(--text);
  padding:1rem 2.5rem; border-radius:2px;
  font-family:var(--font-body); font-weight:600; font-size:0.8rem;
  letter-spacing:2px; text-transform:uppercase;
  clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  transition:all 0.3s;
}
.btn-white:hover { background:var(--orange); color:#fff; }
.btn-ghost-white {
  background:transparent; color:#fff;
  padding:1rem 2.5rem; border-radius:2px;
  font-family:var(--font-body); font-weight:600; font-size:0.8rem;
  letter-spacing:2px; text-transform:uppercase;
  border:1px solid rgba(255,255,255,0.25); transition:all 0.3s;
}
.btn-ghost-white:hover { border-color:#fff; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  nav { padding:0 2rem; }
  .container { padding:0 2rem; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2.5rem; }
  .stats-bar { grid-template-columns:repeat(2,1fr); }
  .stats-bar .stat-item:nth-child(2) { border-right:none; }
}
@media(max-width:768px) {
  :root { --nav-h: 64px; }
  nav { padding:0 1.5rem; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .container { padding:0 1.5rem; }
  .section { padding:4.5rem 0; }
  .form-row-2 { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; padding:0 1.5rem; }
  .footer-bottom { padding:2rem 1.5rem 0; flex-direction:column; text-align:center; }
  .stats-bar { grid-template-columns:1fr 1fr; }
  .page-hero::after { display:none; }
  .step-row { grid-template-columns:1fr; }
  .step-circle { width:48px; height:48px; font-size:0.75rem; }
  .cta-banner .cta-actions { flex-direction:column; align-items:center; }
}
@media(max-width:480px) {
  .stats-bar { grid-template-columns:1fr; }
  .stats-bar .stat-item { border-right:none; border-bottom:1px solid var(--border); }
}

/* Shared JS init for scroll reveal */

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 99999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}
.lightbox-overlay.active {
  opacity: 1; pointer-events: auto;
}
.lightbox-close {
  position: absolute; top: 30px; right: 40px;
  background: none; border: none; color: #fff; font-size: 2.5rem;
  cursor: pointer; opacity: 0.7; transition: opacity 0.3s; z-index: 2;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 1.5rem;
  width: 50px; height: 50px; border-radius: 50%; cursor: pointer;
  transition: all 0.3s; z-index: 2; display: flex; align-items: center; justify-content: center;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--orange); }
.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }
.lightbox-content {
  position: relative; max-width: 85vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-content img, .lightbox-content video {
  max-width: 100%; max-height: 85vh; object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.lightbox-caption {
  position: absolute; bottom: 30px; left: 0; right: 0; text-align: center;
  color: #fff; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 2px;
  text-transform: uppercase; opacity: 0.8;
}
@media(max-width: 768px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 15px; right: 20px; font-size: 2rem; }
}
