/* ============================================================
   PAGE COMPONENTS
   ============================================================ */

/* ---------- HERO ---------- */
.hero{
  position:relative;
  height:100svh;
  min-height:640px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--black);
  color:#fff;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-scrim{
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 65% 55% at 82% 15%, rgba(210,12,13,0.32), transparent),
    linear-gradient(150deg, #0a0a0a 0%, #1c1210 48%, #2a1210 100%);
}
.hero-grain{
  position:absolute; inset:-10%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  animation:grain-shift 1s steps(2) infinite;
  opacity:0.6;
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:2; padding-top:96px; padding-bottom:24px; width:100%; align-self:center; }
.hero-badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 16px 8px 12px;
  border-radius:100px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(6px);
  font-size:0.8rem;
  font-weight:500;
  margin-bottom:22px;
}
.rec-dot{ width:8px; height:8px; border-radius:50%; background:var(--red); display:inline-block; }

.hero-title{ font-size:clamp(2.6rem, 6.4vw, 5.6rem); }
.hero-title-line{ display:block; overflow:hidden; }
.hero-title-line.accent{ color:var(--red); }

.hero-sub{
  margin-top:20px;
  font-size:clamp(1rem, 1.5vw, 1.2rem);
  color:rgba(250,247,242,0.82);
  max-width:46ch;
  line-height:1.55;
}
.hero-actions{ display:flex; gap:16px; margin-top:28px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:40px; margin-top:40px; flex-wrap:wrap; }
.hero-stat{ display:flex; flex-direction:column; gap:2px; }
.hero-stat-num{ font-family:var(--font-display); font-size:2.1rem; color:#fff; line-height:1; }
.hero-stat-label{ font-size:0.78rem; color:rgba(250,247,242,0.55); max-width:14ch; }

.hero-reel{
  position:absolute;
  right:-60px; top:50%; transform:translateY(-50%);
  width:280px; height:280px;
  z-index:1;
  opacity:0.7;
}
@media (max-width:900px){ .hero-reel{ display:none; } }

.hero-scroll-cue{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%);
  z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(250,247,242,0.6);
  font-size:0.75rem;
  letter-spacing:0.08em;
  animation:float-slow 2.6s ease-in-out infinite;
}
.hero-scroll-cue svg{ width:16px; height:16px; }

/* ---------- SERVICE GRID (home preview) ---------- */
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
@media (max-width:960px){ .service-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .service-grid{ grid-template-columns:1fr; } }

.service-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:22px;
  padding:32px 28px;
  display:flex;
  flex-direction:column;
  gap:14px;
  position:relative;
  transition:transform .5s var(--ease-spring), border-color .35s, box-shadow .4s;
}
.service-card:nth-child(1):hover{ transform:translateY(-8px) rotate(-1deg); }
.service-card:nth-child(2):hover{ transform:translateY(-10px); }
.service-card:nth-child(3):hover{ transform:translateY(-8px) rotate(1deg); }
.service-card:nth-child(4):hover{ transform:translateY(-10px) scale(1.02); }
.service-card:hover{ border-color:var(--red); box-shadow:0 20px 40px -20px rgba(0,0,0,0.18); }
.service-icon-wrap{
  width:56px; height:56px;
  border-radius:16px;
  background:var(--cream-deep);
  display:flex; align-items:center; justify-content:center;
  color:var(--red);
  transition:background .35s, transform .5s var(--ease-spring);
}
.service-card:hover .service-icon-wrap{ background:var(--red); color:#fff; transform:rotate(-8deg) scale(1.08); }
.service-icon{ width:28px; height:28px; }
.service-card p{ color:var(--grey-600); font-size:0.94rem; flex:1; }
.service-arrow{
  width:36px; height:36px;
  border-radius:50%;
  border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  align-self:flex-end;
  transition:background .35s, border-color .35s, transform .4s var(--ease-out);
}
.service-arrow svg{ width:15px; height:15px; }
.service-card:hover .service-arrow{ background:var(--ink); border-color:var(--ink); color:#fff; transform:rotate(45deg); }

/* ---------- MASONRY GALLERY ---------- */
.masonry{
  columns:3 220px;
  column-gap:20px;
}
@media (max-width:700px){ .masonry{ columns:2 160px; } }
.masonry-item{
  break-inside:avoid;
  margin-bottom:20px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
}
.masonry-item img{
  width:100%; height:auto; display:block;
  transition:transform .7s var(--ease-out), filter .5s;
}
.masonry-item:hover img{ transform:scale(1.07); filter:saturate(1.15); }
.masonry-item::after{
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  opacity:0;
  transition:opacity .4s;
}
.masonry-item:hover::after{ opacity:1; }

/* ---------- GIG STRIP ---------- */
.gig-strip{ background:var(--ink); color:#fff; overflow:hidden; }
.gig-strip-inner{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}
@media (max-width:820px){ .gig-strip-inner{ grid-template-columns:1fr; } }
.gig-flyer{
  border-radius:20px;
  overflow:hidden;
  max-width:340px;
  margin:0 auto;
  box-shadow:0 30px 60px -20px rgba(0,0,0,0.5);
  transform:rotate(2deg);
  transition:transform .5s var(--ease-spring);
}
.gig-flyer:hover{ transform:rotate(0deg) scale(1.02); }

/* ---------- PROCESS ---------- */
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:32px;
}
@media (max-width:860px){ .process-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .process-grid{ grid-template-columns:1fr; } }
.process-step{ position:relative; padding-top:8px; }
.process-num{
  font-family:var(--font-display);
  font-size:1.1rem;
  color:var(--red);
  display:block;
  margin-bottom:14px;
}
.process-step h3{ margin-bottom:8px; }
.process-step p{ color:var(--grey-600); font-size:0.94rem; }

/* ---------- CTA BAND ---------- */
.cta-band{
  background:var(--red);
  color:#fff;
  padding:100px 0;
  position:relative;
  overflow:hidden;
}
.cta-band-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  position:relative;
  z-index:2;
}
.cta-band h2{ color:#fff; }
.btn-lg{ padding:20px 40px; font-size:1.05rem; background:var(--ink); }
.btn-lg:hover{ background:#000; }
.cta-band-icon{
  position:absolute;
  right:-40px; top:-40px;
  width:280px; height:280px;
  opacity:0.14;
  z-index:1;
}
.cta-band-icon img{ width:100%; filter:brightness(0) invert(1); }

/* ============================================================
   INNER PAGE HERO (services / portfolio / about / contact)
   ============================================================ */
.page-hero-simple .wrap{ position:relative; z-index:2; width:100%; }
.page-hero-simple::before{
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(210,12,13,0.28), transparent),
    linear-gradient(180deg, #0a0a0a 0%, #141210 100%);
  z-index:0;
}
.page-hero-simple .kicker{ color:var(--red); }
.page-hero-title{ color:#fff; margin-top:16px; }
.page-hero-sub{ color:rgba(250,247,242,0.72); max-width:56ch; margin-top:20px; font-size:1.1rem; }
.breadcrumb{
  display:flex; align-items:center; gap:8px;
  font-size:0.85rem; color:rgba(250,247,242,0.5);
  margin-bottom:20px;
}
.breadcrumb a{ color:rgba(250,247,242,0.75); }
.breadcrumb a:hover{ color:#fff; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail{
  padding:100px 0;
  border-bottom:1px solid var(--line);
}
.service-detail:last-of-type{ border-bottom:none; }
.service-detail-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
@media (max-width:860px){ .service-detail-grid{ grid-template-columns:1fr; gap:36px; } }
.service-detail:nth-child(even) .service-detail-grid{ direction:rtl; }
.service-detail:nth-child(even) .service-detail-grid > *{ direction:ltr; }

.service-detail-media{
  border-radius:26px;
  overflow:hidden;
  position:relative;
  min-height:340px;
  background:var(--cream-deep);
  display:flex;
  align-items:center;
  justify-content:center;
}
.service-detail-media img{ width:100%; height:100%; object-fit:contain; transition:transform .8s var(--ease-out); }
.service-detail-media:hover img{ transform:scale(1.04); }
.service-detail-media.placeholder{
  background:linear-gradient(135deg, var(--ink) 0%, #262220 100%);
  display:flex; align-items:center; justify-content:center;
  color:rgba(250,247,242,0.35);
  min-height:340px;
}
.service-detail-media.placeholder svg{ width:72px; height:72px; }

.service-detail-icon{
  width:64px; height:64px; border-radius:18px;
  background:var(--cream-deep);
  color:var(--red);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px;
}
.service-detail-icon svg{ width:32px; height:32px; }
.service-detail-body ul{ margin-top:26px; display:flex; flex-direction:column; gap:14px; }
.service-detail-body li{ display:flex; align-items:flex-start; gap:12px; font-size:0.98rem; }
.service-detail-body li svg{ width:20px; height:20px; color:var(--red); flex:none; margin-top:2px; }
.service-detail-body .price-note{
  margin-top:28px;
  padding:16px 20px;
  background:var(--cream-deep);
  border-radius:14px;
  font-size:0.9rem;
  color:var(--grey-600);
}

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.filter-bar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:48px;
}
.filter-btn{
  padding:11px 22px;
  border-radius:100px;
  border:1.5px solid var(--line);
  background:none;
  font-family:var(--font-body);
  font-weight:600;
  font-size:0.88rem;
  transition:background .3s, color .3s, border-color .3s, transform .3s var(--ease-spring);
}
.filter-btn:hover{ transform:translateY(-2px); }
.filter-btn.active{ background:var(--ink); color:#fff; border-color:var(--ink); }

.portfolio-grid{
  columns:3 240px;
  column-gap:22px;
}
@media (max-width:700px){ .portfolio-grid{ columns:2 160px; } }
.portfolio-item{
  break-inside:avoid;
  margin-bottom:22px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  cursor:zoom-in;
}
.portfolio-item img{ width:100%; display:block; transition:transform .7s var(--ease-out); }
.portfolio-item:hover img{ transform:scale(1.06); }
.portfolio-item-tag{
  position:absolute; left:14px; bottom:14px;
  padding:6px 14px;
  border-radius:100px;
  background:rgba(10,10,10,0.7);
  backdrop-filter:blur(6px);
  color:#fff;
  font-size:0.76rem;
  font-weight:500;
  opacity:0;
  transform:translateY(8px);
  transition:opacity .35s, transform .35s;
}
.portfolio-item:hover .portfolio-item-tag{ opacity:1; transform:translateY(0); }

/* lightbox */
.lightbox{
  position:fixed; inset:0; z-index:300;
  background:rgba(6,6,6,0.96);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition:opacity .4s, visibility .4s;
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{
  max-width:88vw; max-height:82vh;
  border-radius:10px;
  transition:opacity .3s;
  box-shadow:0 30px 80px -20px rgba(0,0,0,0.6);
}
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute;
  width:52px; height:52px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.2);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  transition:background .3s, transform .3s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ background:var(--red); border-color:var(--red); }
.lightbox-close{ top:24px; right:24px; }
.lightbox-prev{ left:24px; top:50%; transform:translateY(-50%); }
.lightbox-next{ right:24px; top:50%; transform:translateY(-50%); }
.lightbox-prev svg, .lightbox-next svg, .lightbox-close svg{ width:20px; height:20px; }
@media (max-width:640px){
  .lightbox-prev, .lightbox-next{ width:42px; height:42px; }
  .lightbox-close{ width:42px; height:42px; top:14px; right:14px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
@media (max-width:860px){ .about-intro{ grid-template-columns:1fr; gap:36px; } }
.about-media{
  border-radius:28px;
  overflow:hidden;
  position:relative;
}
.about-media img{ width:100%; display:block; }
.about-media-badge{
  position:absolute; bottom:20px; left:20px;
  background:rgba(250,247,242,0.94);
  backdrop-filter:blur(6px);
  border-radius:16px;
  padding:16px 20px;
  display:flex; align-items:center; gap:12px;
  box-shadow:0 20px 40px -16px rgba(0,0,0,0.3);
}
.about-media-badge img{ width:34px; height:34px; border-radius:0; }

.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media (max-width:760px){ .values-grid{ grid-template-columns:1fr; } }
.value-card{
  padding:30px;
  border-radius:20px;
  background:var(--paper);
  border:1px solid var(--line);
  transition:transform .5s var(--ease-spring), box-shadow .4s;
}
.value-card:hover{ transform:translateY(-6px); box-shadow:0 24px 44px -24px rgba(0,0,0,0.2); }
.value-card svg{ width:30px; height:30px; color:var(--red); margin-bottom:16px; }

.team-note{
  background:var(--ink);
  color:#fff;
  border-radius:28px;
  padding:56px;
  display:flex;
  gap:40px;
  align-items:center;
}
@media (max-width:760px){ .team-note{ flex-direction:column; padding:36px 28px; text-align:center; } }
.team-note-avatar{
  width:120px; height:120px;
  border-radius:50%;
  overflow:hidden;
  flex:none;
  border:3px solid var(--red);
}
.team-note-avatar img{ width:100%; height:100%; object-fit:cover; }

/* stat strip */
.stat-strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:60px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
@media (max-width:700px){ .stat-strip{ grid-template-columns:1fr 1fr; } }
.stat-strip-item{ text-align:center; }
.stat-strip-num{ font-family:var(--font-display); font-size:3.2rem; color:var(--red); display:block; }
.stat-strip-label{ font-size:0.85rem; color:var(--grey-600); margin-top:6px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:64px;
  align-items:start;
}
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; gap:44px; } }

.contact-info-card{
  background:var(--ink);
  color:#fff;
  border-radius:28px;
  padding:44px 36px;
  position:relative;
  overflow:hidden;
}
.contact-info-item{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-of-type{ border-bottom:none; }
.contact-info-item svg{ width:22px; height:22px; color:var(--red); flex:none; margin-top:2px; }
.contact-info-item a, .contact-info-item p{ color:rgba(250,247,242,0.85); font-size:0.96rem; }
.contact-info-item .label{ font-size:0.78rem; color:rgba(250,247,242,0.5); margin-bottom:4px; display:block; }

.form-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:28px;
  padding:44px;
}
@media (max-width:560px){ .form-card{ padding:28px 22px; } }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:0.85rem; font-weight:600; margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1.5px solid var(--line);
  background:var(--cream);
  font-family:var(--font-body);
  font-size:0.95rem;
  color:var(--ink);
  transition:border-color .25s, background .25s, transform .2s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--red);
  background:#fff;
}
.field textarea{ resize:vertical; min-height:120px; }
.form-consent{ display:flex; gap:10px; align-items:flex-start; font-size:0.82rem; color:var(--grey-600); margin-bottom:24px; }
.form-consent input{ margin-top:3px; }
.form-success{
  display:none;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  background:#e9f7ec;
  color:#1a6b32;
  border-radius:12px;
  font-size:0.9rem;
  margin-top:16px;
}
.form-success.show{ display:flex; }

.map-embed{
  border-radius:24px;
  overflow:hidden;
  margin-top:70px;
  border:1px solid var(--line);
  filter:grayscale(0.3) contrast(1.05);
}
.map-embed iframe{ width:100%; height:380px; border:0; display:block; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content{ max-width:74ch; }
.legal-content h2{ font-family:var(--font-body); font-size:1.3rem; font-weight:700; margin-top:44px; margin-bottom:14px; }
.legal-content h2:first-child{ margin-top:0; }
.legal-content p, .legal-content li{ color:var(--grey-600); font-size:0.98rem; line-height:1.75; margin-bottom:14px; }
.legal-content ul{ padding-left:20px; list-style:disc; }
.legal-content strong{ color:var(--ink); }
.legal-updated{ color:var(--grey-400); font-size:0.85rem; margin-bottom:40px; display:block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
@media (max-width:860px){ .testimonial-grid{ grid-template-columns:1fr; } }
.testimonial-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:22px;
  padding:32px;
}
.testimonial-quote{
  width:34px; height:34px;
  color:var(--red);
  margin-bottom:18px;
}
.testimonial-stars{ display:flex; gap:3px; margin-bottom:14px; }
.testimonial-stars svg{ width:16px; height:16px; color:var(--red); }
.testimonial-text{ font-size:0.98rem; line-height:1.65; color:var(--ink); margin-bottom:22px; }
.testimonial-author{ display:flex; align-items:center; gap:12px; }
.testimonial-avatar{
  width:44px; height:44px; border-radius:50%;
  background:var(--cream-deep);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  color:var(--red);
  font-size:1.1rem;
}
.testimonial-name{ font-weight:600; font-size:0.92rem; }
.testimonial-role{ font-size:0.8rem; color:var(--grey-600); }

/* ============================================================
   FAQ (contact page accordion)
   ============================================================ */
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-question{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 0;
  background:none;
  border:none;
  text-align:left;
  font-family:var(--font-body);
  font-weight:600;
  font-size:1.02rem;
}
.faq-question svg{ width:20px; height:20px; flex:none; transition:transform .4s var(--ease-out); }
.faq-item.open .faq-question svg{ transform:rotate(45deg); }
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s var(--ease-in-out);
}
.faq-answer p{ padding-bottom:22px; color:var(--grey-600); font-size:0.95rem; line-height:1.7; max-width:64ch; }
