/* ═══════════════════════════════════════════════════════════════
   JORDAN VISIONS CMS – main.css
   1:1 recreation of original React/Tailwind site
   Design tokens from original index-CfcOAys9.css
═══════════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, video { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --bg:            hsl(215, 35%, 9%);
  --bg-card:       hsl(215, 30%, 12%);
  --bg-surface:    hsl(215, 28%, 11%);
  --bg-lighter:    hsl(215, 30%, 14%);
  --deep-blue:     hsl(215, 40%, 7%);

  --text:          hsl(210, 20%, 98%);
  --muted:         hsl(215, 15%, 55%);
  --border:        hsl(215, 20%, 18%);

  --gold:          hsl(43, 52%, 54%);
  --gold-light:    hsl(43, 65%, 68%);
  --gold-dark:     hsl(43, 45%, 42%);
  --gold-glow:     hsl(43, 100%, 70%);

  --grad-gold:     linear-gradient(135deg, hsl(43,52%,54%), hsl(43,80%,65%));
  --grad-gold-r:   radial-gradient(circle at center, hsl(43,80%,65%), hsl(43,52%,54%));
  --grad-dark:     linear-gradient(180deg, hsl(215,35%,9%), hsl(215,30%,14%));
  --grad-overlay:  linear-gradient(180deg, transparent, hsla(215,35%,9%,.95));
  --grad-cinematic:linear-gradient(135deg, hsl(215,35%,9%), hsl(43,52%,20%), hsl(215,30%,12%));

  --glow-gold:        0 0 40px hsla(43,52%,54%,.5);
  --glow-gold-strong: 0 0 60px hsla(43,52%,54%,.8);
  --glow-gold-subtle: 0 0 20px hsla(43,52%,54%,.3);
  --shadow-cinematic: 0 20px 60px hsla(215,50%,5%,.9);
  --shadow-deep:      0 30px 80px hsla(215,50%,5%,.95);

  --ease-smooth:    cubic-bezier(.4,0,.2,1);
  --ease-bounce:    cubic-bezier(.68,-.55,.265,1.55);
  --ease-cinematic: cubic-bezier(.25,.46,.45,.94);

  --nav-h: 72px;
  --radius: .75rem;
}

/* ─── BASE ───────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }
.container {
  width: 100%; max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fade-in {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fade-in-up {
  from { opacity:0; transform:translateY(40px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 20px hsla(43,52%,54%,.3); }
  50%     { box-shadow: 0 0 40px hsla(43,52%,54%,.6); }
}
@keyframes bounce {
  0%,100% { transform:translateY(-25%); animation-timing-function:cubic-bezier(.8,0,1,1); }
  50%     { transform:none; animation-timing-function:cubic-bezier(0,0,.2,1); }
}
@keyframes scroll-left {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

/* ─── UTILITY ────────────────────────────────────────────────── */
.animate-fade-in    { animation: fade-in .8s ease-out; }
.animate-fade-in-up { animation: fade-in-up 1s ease-out; }
.animate-bounce     { animation: bounce 1s infinite; }
.animate-glow-pulse { animation: glow-pulse 3s ease-in-out infinite; }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.glass-dark {
  background: rgba(10,10,10,.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,162,75,.15);
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-smooth), transform .7s var(--ease-smooth);
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed; top:0; left:0; right:0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.nav.scrolled {
  background: hsla(215,35%,9%,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px hsla(215,50%,5%,.5);
}
.nav-inner {
  max-width: 1400px; margin:0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex; align-items:center; justify-content:space-between;
}
.nav-brand { display:flex; align-items:center; gap:.75rem; }
.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex; align-items:center; gap:2rem;
}
.nav-links a {
  font-size: .9rem; font-weight: 500;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:1px; background:var(--gold);
  transform:scaleX(0); transition:transform .3s;
}
.nav-links a:hover, .nav-links a.active { color:var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }
.nav-cta {
  background: var(--grad-gold) !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  color: hsl(215,35%,9%) !important;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .875rem;
  transition: box-shadow .3s, transform .2s;
}
.nav-cta:hover { box-shadow: var(--glow-gold-subtle); transform:translateY(-1px); }
.nav-cta::after { display:none !important; }
.nav-toggle {
  display:none; flex-direction:column; gap:5px; padding:4px;
  background:none; border:none; cursor:pointer;
}
.nav-toggle span {
  display:block; width:24px; height:2px;
  background:var(--text);
  transition: transform .3s, opacity .3s;
  border-radius:2px;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  background: var(--bg);
}
/* Hero video background grid */
.hero-bg {
  position:absolute; inset:0; z-index:0;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:4px;
  opacity:.35;
}
.hero-bg video {
  width:100%; height:100%; object-fit:cover;
  pointer-events:none;
}
.hero-bg-overlay {
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(to bottom,
    hsla(215,35%,9%,.5) 0%,
    hsla(215,35%,9%,.3) 40%,
    hsla(215,35%,9%,.8) 80%,
    hsl(215,35%,9%) 100%
  );
}
.hero-content {
  position:relative; z-index:10;
  text-align:center;
  padding: var(--nav-h) 1.5rem 4rem;
  max-width: 900px; margin: 0 auto;
  animation: fade-in-up 1s ease-out;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900; line-height:1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: hsla(210,20%,98%,.75);
  max-width: 680px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display:flex; gap:1rem; justify-content:center; flex-wrap:wrap;
}
.btn-primary {
  display:inline-flex; align-items:center; gap:.5rem;
  background: var(--grad-gold);
  color: hsl(215,35%,9%);
  font-weight: 700; font-size:.95rem;
  padding: .875rem 2rem; border-radius:50px;
  transition: box-shadow .3s, transform .2s;
  position:relative; overflow:hidden;
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background: var(--grad-gold-r); opacity:0;
  transition: opacity .5s;
}
.btn-primary:hover { box-shadow: var(--glow-gold); transform:translateY(-2px); }
.btn-primary:hover::before { opacity:1; }
.btn-secondary {
  display:inline-flex; align-items:center; gap:.5rem;
  background: transparent;
  border: 1px solid hsla(43,52%,54%,.4);
  color: var(--text);
  font-weight: 600; font-size:.95rem;
  padding: .875rem 2rem; border-radius:50px;
  transition: border-color .3s, background .3s, transform .2s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: hsla(43,52%,54%,.08);
  transform:translateY(-2px);
}
.btn-gold {
  display:inline-flex; align-items:center; gap:.5rem;
  background: var(--grad-gold);
  color: hsl(215,35%,9%);
  font-weight: 700; font-size:.95rem;
  padding: .875rem 2.25rem; border-radius:50px;
  transition: box-shadow .3s, transform .2s;
}
.btn-gold:hover { box-shadow: var(--glow-gold); transform:translateY(-2px); }

/* Hero scroll indicator */
.hero-scroll {
  position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%);
  z-index:20; display:flex; flex-direction:column; align-items:center; gap:.5rem;
  cursor:pointer;
}
.hero-scroll span { font-size:.75rem; color:hsla(43,52%,54%,.7); letter-spacing:.1em; }
.hero-scroll-icon { color:var(--gold); animation:bounce 1s infinite; }
.hero-scroll-icon2 { color:hsla(43,52%,54%,.5); animation:bounce 1s infinite; margin-top:-1rem; }

/* ─── SHOWREEL ────────────────────────────────────────────────── */
.showreel {
  position:relative; background:var(--bg);
  overflow:hidden;
  padding: 6rem 0;
}
.showreel::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
  z-index:5; pointer-events:none;
}
.showreel-label {
  text-align:center; margin-bottom:3rem;
  position:relative; z-index:10;
}
.showreel-track-wrap {
  display:flex; gap:1.5rem; overflow-x:auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width:none; cursor:grab;
  padding:0 2rem 1rem;
  position:relative; z-index:10;
}
.showreel-track-wrap::-webkit-scrollbar { display:none; }
.showreel-track-wrap:active { cursor:grabbing; }
.showreel-item {
  flex-shrink:0;
  width: clamp(280px, 40vw, 560px);
  scroll-snap-align:start;
  border-radius:16px; overflow:hidden;
  position:relative; cursor:pointer;
  aspect-ratio:16/9;
  background:var(--bg-card);
  transition: transform .4s var(--ease-smooth), box-shadow .4s;
}
.showreel-item:hover { transform:scale(1.02); box-shadow: var(--shadow-cinematic); }
.showreel-item img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.showreel-item:hover img { transform:scale(1.05); }
.showreel-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, hsla(215,35%,9%,.8) 0%, transparent 60%);
  transition: opacity .4s;
}
.showreel-play {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
}
.showreel-play-btn {
  width:5rem; height:5rem; border-radius:50%;
  background: var(--grad-gold);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--glow-gold-subtle);
  transition: transform .3s, box-shadow .3s;
  opacity:0; transform:scale(.8);
  transition: opacity .3s, transform .3s, box-shadow .3s;
}
.showreel-item:hover .showreel-play-btn {
  opacity:1; transform:scale(1);
  box-shadow: var(--glow-gold);
}
.showreel-play-btn svg { width:1.75rem; height:1.75rem; color:hsl(215,35%,9%); margin-left:3px; }
.showreel-info {
  position:absolute; bottom:0; left:0; right:0;
  padding:1.5rem;
}

/* ─── PHILOSOPHY (HOME) ──────────────────────────────────────── */
.philosophy {
  padding:6rem 0;
  background:linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 50%, var(--bg) 100%);
}
.philosophy-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem;
  margin-top:3rem;
}
.philosophy-card {
  padding:2rem;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.philosophy-card:hover {
  border-color:hsla(43,52%,54%,.4);
  transform:translateY(-4px);
  box-shadow: 0 20px 40px hsla(215,50%,5%,.5);
}
.philosophy-icon { font-size:2rem; margin-bottom:1rem; }
.philosophy-card h3 { font-size:1.15rem; color:var(--text); margin-bottom:.5rem; }
.philosophy-card p { font-size:.9rem; color:var(--muted); line-height:1.7; }

/* ─── SOCIAL MEDIA SECTION ───────────────────────────────────── */
.social-section { padding:6rem 0; background:var(--bg-surface); }
.social-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:2rem;
  max-width:900px; margin:3rem auto 0;
}
.phone-wrap {
  position:relative; cursor:pointer;
  transition:transform .4s var(--ease-smooth);
}
.phone-wrap:hover { transform:translateY(-8px) scale(1.02); }
.phone-frame {
  position:relative;
  width:100%; max-width:240px; margin:0 auto;
  border-radius:2.5rem;
  background:hsl(215,30%,8%);
  border:2px solid hsl(215,25%,22%);
  overflow:hidden;
  box-shadow: 0 30px 60px hsla(215,50%,5%,.7), 0 0 0 1px hsla(215,25%,30%,.3);
  aspect-ratio: 9/19.5;
}
/* Notch */
.phone-notch {
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:7rem; height:1.25rem;
  background:hsl(215,30%,8%);
  border-radius:0 0 1rem 1rem;
  z-index:10;
}
.phone-video {
  width:100%; height:100%; object-fit:cover;
}
.phone-platform {
  position:absolute; bottom:1rem; left:0; right:0;
  display:flex; align-items:center; justify-content:center; gap:.5rem;
}
.phone-platform svg { width:1.25rem; height:1.25rem; color:#fff; }
.phone-platform span { font-size:.8rem; font-weight:600; color:#fff; }
.phone-label { text-align:center; margin-top:1.25rem; }
.phone-label strong { display:block; color:var(--text); font-size:.95rem; }
.phone-label span { font-size:.8rem; color:var(--muted); }

/* ─── SERVICES GRID ──────────────────────────────────────────── */
.services-section { padding:6rem 0; }
.services-grid {
  display:grid; grid-template-columns:repeat(12,1fr); gap:1.5rem;
  margin-top:3rem;
}
.svc-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px; padding:2rem;
  transition:border-color .3s, transform .3s, box-shadow .3s;
  grid-column:span 4;
}
.svc-card:nth-child(1) { grid-column:span 7; }
.svc-card:nth-child(2) { grid-column:span 5; }
.svc-card:nth-child(6) { grid-column:span 12; }
.svc-card:hover {
  border-color:hsla(43,52%,54%,.4);
  transform:translateY(-3px);
  box-shadow: 0 20px 40px hsla(215,50%,5%,.5);
}
.svc-icon { margin-bottom:1.25rem; }
.svc-icon svg { width:2.75rem; height:2.75rem; color:var(--gold); }
.svc-card h3 { font-size:1.3rem; color:var(--text); margin-bottom:.75rem; }
.svc-card p { font-size:.9rem; color:var(--muted); line-height:1.7; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { padding:6rem 0; background:var(--bg-surface); }
.testimonials-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:1.5rem;
  margin-top:3rem;
}
.testimonial-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:16px; padding:2rem;
  transition:border-color .3s, transform .3s;
}
.testimonial-card:hover { border-color:hsla(43,52%,54%,.3); transform:translateY(-3px); }
.testimonial-stars { display:flex; gap:.25rem; margin-bottom:1rem; }
.testimonial-stars svg { width:1rem; height:1rem; color:var(--gold); fill:var(--gold); }
.testimonial-text {
  font-style:italic; color:var(--muted);
  line-height:1.75; margin-bottom:1.5rem;
  font-size:.95rem;
}
.testimonial-author strong { display:block; color:var(--text); }
.testimonial-author span { font-size:.85rem; color:var(--gold); }

/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  padding:6rem 0;
  background: var(--grad-cinematic);
  position:relative; overflow:hidden;
  text-align:center;
}
.cta-section::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at center, hsla(43,52%,54%,.1) 0%, transparent 70%);
}
.cta-section h2 { font-size:clamp(2rem,4vw,3.5rem); color:var(--text); margin-bottom:1rem; position:relative; }
.cta-section p { color:var(--muted); font-size:1.1rem; max-width:560px; margin:0 auto 2.5rem; position:relative; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background:var(--deep-blue);
  border-top:1px solid var(--border);
  padding:4rem 0 2rem;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem;
  margin-bottom:3rem;
}
.footer-brand .brand-logo {
  font-family:'Playfair Display',serif; font-size:1.5rem; font-weight:700;
  background:var(--grad-gold);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; margin-bottom:1rem;
}
.footer-brand p { color:var(--muted); font-size:.9rem; line-height:1.7; max-width:280px; margin-bottom:1.5rem; }
.footer-social { display:flex; gap:.75rem; }
.footer-social a {
  width:2.5rem; height:2.5rem; border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); transition:color .2s, border-color .2s, box-shadow .2s;
}
.footer-social a:hover { color:var(--gold); border-color:var(--gold); box-shadow:var(--glow-gold-subtle); }
.footer-social svg { width:1.1rem; height:1.1rem; }
.footer-col h4 { font-size:.8rem; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--muted); margin-bottom:1.25rem; }
.footer-col ul li { margin-bottom:.75rem; }
.footer-col ul a { color:var(--muted); font-size:.875rem; transition:color .2s; }
.footer-col ul a:hover { color:var(--text); }
.footer-bottom {
  border-top:1px solid var(--border); padding-top:2rem;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
}
.footer-bottom p { font-size:.8rem; color:var(--muted); }
.footer-legal { display:flex; gap:1.5rem; }
.footer-legal a { font-size:.8rem; color:var(--muted); transition:color .2s; }
.footer-legal a:hover { color:var(--text); }

/* ─── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  display:block; text-transform:uppercase; letter-spacing:.15em;
  font-size:.8rem; font-weight:600; color:var(--gold); margin-bottom:.75rem;
}
.section-title {
  font-size:clamp(1.8rem,4vw,3rem); font-weight:700; color:var(--text); line-height:1.15;
}
.section-desc {
  color:var(--muted); font-size:1.05rem; line-height:1.7;
  max-width:600px; margin:1rem auto 0;
}

/* ─── PAGE HERO (subpages) ───────────────────────────────────── */
.pg-hero {
  position:relative; padding:calc(var(--nav-h) + 5rem) 1.5rem 5rem;
  min-height:50vh; display:flex; align-items:center; overflow:hidden;
}
.pg-hero-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 0%, hsl(215,35%,14%) 0%, var(--bg) 70%);
}
.pg-hero-gradient { position:absolute; inset:0; background:linear-gradient(to bottom, transparent 60%, var(--bg)); }
.rel { position:relative; }
.z10 { z-index:10; }
.text-center { text-align:center; }
.mt-8 { margin-top:2rem; }
.inline-block { display:inline-block; }

/* ─── VIDEO MODAL ────────────────────────────────────────────── */
.video-modal { position:fixed; inset:0; z-index:200; display:none; align-items:center; justify-content:center; }
.video-modal.active { display:flex; }
.video-modal-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.95); backdrop-filter:blur(20px); }
.video-modal-inner { position:relative; z-index:1; width:90vw; max-width:1100px; padding:1rem; }
.modal-close {
  position:absolute; top:-3.5rem; right:0;
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:50%; width:3rem; height:3rem;
  display:flex; align-items:center; justify-content:center;
  color:var(--text); cursor:pointer; transition:background .2s;
}
.modal-close:hover { background:var(--bg-lighter); }
.modal-close svg { width:1.25rem; height:1.25rem; }
.video-modal-aspect { position:relative; padding-bottom:56.25%; background:#000; border-radius:16px; overflow:hidden; }
.video-modal-aspect iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about-split { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.about-img-wrap {
  position:relative; border-radius:20px; overflow:hidden;
  aspect-ratio:3/4; background:var(--bg-card);
  box-shadow:0 0 60px hsla(43,52%,54%,.1);
}
.about-img-wrap img { width:100%; height:100%; object-fit:cover; }
.about-img-badge {
  position:absolute; bottom:1.5rem; left:1.5rem; right:1.5rem;
  background:rgba(0,0,0,.6); backdrop-filter:blur(12px);
  border:1px solid var(--border); border-radius:12px; padding:1rem 1.25rem;
}
.about-img-badge strong { display:block; color:#fff; }
.about-img-badge span { font-size:.85rem; color:var(--gold); }
.about-body { color:var(--muted); line-height:1.8; margin:1.5rem 0 2rem; }
.about-body p { margin-bottom:1rem; }
.about-stats { display:flex; gap:2rem; margin-bottom:2rem; flex-wrap:wrap; }
.stat-num { display:block; font-size:2rem; font-weight:700; color:var(--gold); font-family:'Playfair Display',serif; }
.stat-label { font-size:.75rem; color:var(--muted); text-transform:uppercase; letter-spacing:.1em; }
.values-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; }
.value-card { background:var(--bg); border:1px solid var(--border); border-radius:16px; padding:2rem; transition:border-color .3s; }
.value-card:hover { border-color:hsla(43,52%,54%,.3); }
.value-icon { font-size:2rem; margin-bottom:1rem; }
.value-card h3 { font-size:1.1rem; color:var(--text); margin-bottom:.5rem; }
.value-card p { font-size:.9rem; color:var(--muted); line-height:1.6; }

/* ─── SERVICES PAGE ──────────────────────────────────────────── */
.svc-item { background:var(--bg-card); border:1px solid var(--border); border-radius:16px; padding:2rem; transition:border-color .3s, transform .3s; }
.svc-item:hover { border-color:hsla(43,52%,54%,.4); transform:translateY(-2px); }
.svc-item--span-12 { grid-column:span 12; }
.svc-item--span-7  { grid-column:span 7; }
.svc-item--span-5  { grid-column:span 5; }
.svc-item--span-4  { grid-column:span 4; }
.svc-title { font-family:'Playfair Display',serif; font-size:1.4rem; margin-bottom:.75rem; color:var(--text); }
.svc-desc { color:var(--muted); font-size:.95rem; line-height:1.7; }
.svc-features { list-style:none; padding:0; margin:.75rem 0 0; }
.svc-features li { color:var(--muted); font-size:.875rem; padding:.2rem 0; }
.svc-features li::before { content:"→ "; color:var(--gold); }
.process-steps { display:flex; align-items:center; gap:1rem; flex-wrap:wrap; justify-content:center; }
.process-step { text-align:center; flex:1; min-width:150px; }
.step-num { font-size:2.5rem; font-weight:700; color:var(--gold); font-family:'Playfair Display',serif; line-height:1; }
.process-step h3 { font-size:1rem; color:var(--text); margin:.5rem 0 .25rem; }
.process-step p { font-size:.875rem; color:var(--muted); }
.process-arrow { font-size:1.5rem; color:var(--gold); flex-shrink:0; }

/* ─── PORTFOLIO ──────────────────────────────────────────────── */
.portfolio-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:1rem; max-width:1400px; margin:3rem auto 0; }
.port-item { position:relative; overflow:hidden; border-radius:12px; grid-column:span 4; aspect-ratio:16/10; cursor:pointer; background:var(--bg-card); }
.port-item--large { grid-column:span 8; aspect-ratio:16/9; }
.port-item img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.port-item:hover img { transform:scale(1.05); }
.port-overlay { position:absolute; inset:0; background:linear-gradient(to top, var(--bg) 0%, transparent 50%); opacity:.5; transition:opacity .4s; pointer-events:none; }
.port-item:hover .port-overlay { opacity:.75; }
.port-play { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; background:none; border:none; cursor:pointer; }
.port-play svg { width:4rem; height:4rem; color:var(--gold); filter:drop-shadow(0 0 20px hsla(43,52%,54%,.5)); opacity:0; transform:scale(.8); transition:all .3s; }
.port-item:hover .port-play svg { opacity:1; transform:scale(1); }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:4rem; align-items:start; margin-top:3rem; }
.contact-info h3 { font-size:1.5rem; color:var(--text); margin-bottom:1.5rem; }
.contact-detail { display:flex; gap:1rem; margin-bottom:1.5rem; align-items:flex-start; }
.contact-detail-icon { width:3rem; height:3rem; border-radius:12px; background:hsla(43,52%,54%,.1); border:1px solid hsla(43,52%,54%,.2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-detail-icon svg { width:1.25rem; height:1.25rem; color:var(--gold); }
.contact-detail strong { display:block; color:var(--text); margin-bottom:.25rem; font-size:.9rem; }
.contact-detail span, .contact-detail a { color:var(--muted); font-size:.95rem; }
.contact-detail a:hover { color:var(--gold); }
.contact-form { background:var(--bg-card); border:1px solid var(--border); border-radius:20px; padding:2.5rem; }
.form-group { margin-bottom:1.25rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.form-group label { display:block; font-size:.85rem; font-weight:600; color:var(--muted); margin-bottom:.5rem; text-transform:uppercase; letter-spacing:.05em; }
.form-group input, .form-group textarea {
  width:100%; background:var(--bg); border:1px solid var(--border);
  border-radius:10px; padding:.875rem 1rem;
  color:var(--text); font-size:.95rem; font-family:inherit;
  transition:border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline:none; border-color:var(--gold);
  box-shadow:0 0 0 3px hsla(43,52%,54%,.15);
}
.form-group textarea { resize:vertical; min-height:140px; }
.form-submit { width:100%; margin-top:.5rem; font-size:1rem; justify-content:center; }
.form-notice { font-size:.8rem; color:var(--muted); margin-top:1rem; text-align:center; line-height:1.6; }
.form-notice a { color:var(--gold); }
.alert { padding:1rem 1.25rem; border-radius:10px; margin-bottom:1.5rem; font-size:.9rem; }
.alert-success { background:hsla(120,50%,30%,.2); border:1px solid hsla(120,50%,40%,.3); color:hsl(120,50%,70%); }
.alert-error   { background:hsla(0,50%,30%,.2); border:1px solid hsla(0,50%,40%,.3); color:hsl(0,50%,70%); }

/* ─── LEGAL ──────────────────────────────────────────────────── */
.legal-content { max-width:800px; margin:0 auto; color:var(--muted); line-height:1.8; }
.legal-content h2 { font-family:'Playfair Display',serif; font-size:1.4rem; color:var(--text); margin:2.5rem 0 .75rem; padding-bottom:.5rem; border-bottom:1px solid var(--border); }
.legal-content h2:first-child { margin-top:0; }
.legal-content h3 { font-size:1.05rem; color:hsl(215,15%,85%); margin:1.5rem 0 .5rem; }
.legal-content p { margin-bottom:1rem; }
.legal-content a { color:var(--gold); }
.legal-content a:hover { text-decoration:underline; }

/* ─── ADMIN ──────────────────────────────────────────────────── */
.form-group input::placeholder, .form-group textarea::placeholder { color:var(--muted); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width:1024px) {
  .philosophy-grid { grid-template-columns:1fr 1fr; }
  .services-grid, .svc-card { grid-column:span 6 !important; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .contact-grid { grid-template-columns:1fr; gap:2.5rem; }
  .about-split { grid-template-columns:1fr; gap:2rem; }
  .svc-item--span-7, .svc-item--span-5 { grid-column:span 6 !important; }
  .portfolio-grid .port-item, .portfolio-grid .port-item--large { grid-column:span 6; }
}
@media (max-width:768px) {
  :root { --nav-h:64px; }
  .nav-links { display:none; flex-direction:column; position:fixed; top:var(--nav-h); left:0; right:0; background:hsla(215,35%,9%,.98); padding:1.5rem; border-top:1px solid var(--border); gap:.25rem; }
  .nav-links.open { display:flex; }
  .nav-toggle { display:flex; }
  .hero-bg { grid-template-columns:repeat(2,1fr); }
  .philosophy-grid { grid-template-columns:1fr; }
  .social-grid { grid-template-columns:1fr; max-width:280px; margin-left:auto; margin-right:auto; }
  .services-grid .svc-card { grid-column:span 12 !important; }
  .svc-item--span-12, .svc-item--span-7, .svc-item--span-5, .svc-item--span-4 { grid-column:span 12 !important; }
  .footer-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .portfolio-grid .port-item, .portfolio-grid .port-item--large { grid-column:span 12; }
  .process-arrow { display:none; }
  .showreel-item { width:80vw; }
}
@media (max-width:480px) {
  .container { padding:0 1rem; }
  .hero-bg { opacity:.25; }
  .hero-actions { flex-direction:column; align-items:center; }
}
