/* ============================================================
   RAMEZWARE — sections.css
   Studio · Process · Services · Contact · Explore · Footer
   ============================================================ */

/* ── Page top (for subpage first sections under fixed nav) ── */
.page-top { padding-top:calc(var(--nav-h) + 6rem); }

/* ── Explore (home page link cards) ─────────────────────────── */
.explore { background:var(--ink); }
.explore-inner { max-width:1200px; margin:0 auto; }
.explore-header { margin-bottom:3rem; }
.explore-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }

.explore-card {
  background:var(--surface); padding:2.8rem 2.4rem;
  position:relative; overflow:hidden;
  text-decoration:none; color:inherit;
  transition:background .3s;
  display:flex; flex-direction:column; gap:.8rem;
}
.explore-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--ember),transparent); transform:scaleX(0); transition:transform .4s; }
.explore-card:hover { background:var(--card); }
.explore-card:hover::before { transform:scaleX(1); }

.explore-card-tag { font-family:'DM Mono',monospace; font-size:.65rem; letter-spacing:.2em; text-transform:uppercase; color:var(--ember); }
.explore-card-title { font-family:'Cinzel',serif; font-size:1.4rem; font-weight:700; color:var(--white); }
.explore-card-desc { font-size:.88rem; color:var(--steel); line-height:1.75; flex:1; }
.explore-card-link { font-family:'DM Mono',monospace; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--ember); margin-top:.5rem; transition:gap .2s; }
.explore-card:hover .explore-card-link { color:var(--gold); }

/* ── Services CTA ───────────────────────────────────────────── */
.services-cta {
  margin-top:3.5rem; padding:2.5rem;
  background:var(--surface); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
  gap:1.5rem; flex-wrap:wrap;
}
.services-cta-text {
  font-family:'Cinzel',serif; font-size:1.3rem; font-weight:700; color:var(--white);
}

/* ── Studio ─────────────────────────────────────────────────── */
.studio { background:var(--ink); }
.studio-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }

.studio-visual { position:relative; height:540px; }
.studio-img-main {
  position:absolute; top:0; left:0; width:80%; height:85%;
  object-fit:cover; object-position:center top;
  filter:grayscale(15%) contrast(1.05);
  border:1px solid var(--border);
}
.studio-img-accent {
  position:absolute; bottom:0; right:0; width:50%; height:50%;
  object-fit:cover; object-position:center top;
  border:3px solid var(--ink); box-shadow:-4px -4px 0 1px var(--border);
}
.studio-label { position:absolute; right:0; bottom:calc(50% + .5rem); background:rgba(10,10,15,.92); border:1px solid var(--gold); padding:.7rem 1.1rem; z-index:2; }
.studio-label span { font-family:'Cinzel',serif; font-size:.68rem; color:var(--gold); letter-spacing:.12em; text-align:center; display:block; line-height:1.5; }

.studio-text .section-body { margin-bottom:2rem; }

.studio-pillars { display:flex; flex-direction:column; gap:1.4rem; margin-top:2rem; }
.pillar { display:flex; gap:1rem; align-items:flex-start; }
.pillar-icon { width:40px; height:40px; background:var(--surface); border:1px solid var(--border); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.pillar-text { font-size:.9rem; color:var(--steel); line-height:1.7; }
.pillar-text strong { color:var(--mist); display:block; margin-bottom:.15rem; font-weight:500; font-size:.95rem; }

/* ── Process ────────────────────────────────────────────────── */
.process { background:var(--deep); }
.process-inner { max-width:1200px; margin:0 auto; }
.process-header { margin-bottom:4rem; }
.process-steps { display:grid; grid-template-columns:repeat(5,1fr); position:relative; }
.process-steps::before { content:''; position:absolute; top:28px; left:10%; right:10%; height:1px; background:linear-gradient(90deg,transparent,var(--ember),var(--gold),var(--ember),transparent); opacity:.3; }

.step { padding:0 1rem; text-align:center; opacity:0; transform:translateY(15px); transition:opacity .6s, transform .6s; }
.step.visible { opacity:1; transform:translateY(0); }
.step-num { width:56px; height:56px; border:1px solid var(--border); background:var(--surface); display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; font-family:'Cinzel',serif; font-size:1rem; font-weight:700; color:var(--ember); position:relative; z-index:1; transition:background .3s, border-color .3s, color .3s; }
.step:hover .step-num { background:var(--ember); color:var(--white); border-color:var(--ember); }
.step-title { font-family:'Cinzel',serif; font-size:.9rem; font-weight:700; color:var(--white); margin-bottom:.6rem; }
.step-desc  { font-size:.78rem; color:var(--steel); line-height:1.6; }

/* ── Services ───────────────────────────────────────────────── */
.services { background:var(--ink); }
.services-inner { max-width:1200px; margin:0 auto; }
.services-header { margin-bottom:3.5rem; }
.services-grid { display:grid; grid-template-columns:1fr 1fr; gap:2px; }

.service-card {
  background:var(--surface); padding:3rem;
  position:relative; overflow:hidden;
  opacity:0; transform:translateY(20px);
  transition:background .3s, opacity .6s, transform .6s;
}
.service-card.visible { opacity:1; transform:translateY(0); }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,transparent,var(--ember),transparent); transform:scaleX(0); transition:transform .4s; }
.service-card:hover { background:var(--card); }
.service-card:hover::before { transform:scaleX(1); }
.service-card.gold-accent::before { background:linear-gradient(90deg,transparent,var(--gold),transparent); }

.service-icon { width:52px; height:52px; margin-bottom:1.8rem; }
.service-icon svg { width:100%; height:100%; }
.service-tag { font-family:'DM Mono',monospace; font-size:.65rem; letter-spacing:.2em; text-transform:uppercase; color:var(--ember); margin-bottom:.8rem; }
.service-card.gold-accent .service-tag { color:var(--gold); }
.service-title { font-family:'Cinzel',serif; font-size:1.4rem; font-weight:700; color:var(--white); margin-bottom:1rem; }
.service-desc  { font-size:.9rem; color:var(--steel); line-height:1.8; margin-bottom:1.8rem; }
.service-features { list-style:none; display:flex; flex-direction:column; gap:.6rem; }
.service-features li { font-family:'DM Mono',monospace; font-size:.72rem; color:var(--mist); display:flex; align-items:center; gap:.7rem; }
.service-features li::before { content:'◆'; font-size:.4rem; color:var(--ember); flex-shrink:0; }
.service-card.gold-accent .service-features li::before { color:var(--gold); }
.service-number { position:absolute; bottom:2rem; right:2.5rem; font-family:'Cinzel',serif; font-size:5rem; font-weight:900; color:rgba(255,255,255,.025); line-height:1; pointer-events:none; }

/* ── Contact ────────────────────────────────────────────────── */
.contact { background:var(--deep); }
.contact-inner {
  max-width:1000px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr;
  gap:6rem; align-items:center;
}
.contact-info .section-body { margin-bottom:2.5rem; }

.contact-detail { display:flex; flex-direction:column; gap:1.4rem; margin-bottom:2.5rem; }
.contact-item   { display:flex; align-items:center; gap:1rem; }
.contact-item-icon { width:40px; height:40px; background:var(--surface); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1rem; }
.contact-item-text        { font-size:.88rem; color:var(--steel); }
.contact-item-text strong { display:block; color:var(--mist); font-weight:500; margin-bottom:.1rem; }
.contact-item-text a      { color:var(--ember); text-decoration:none; border-bottom:1px solid transparent; transition:color .2s, border-color .2s; }
.contact-item-text a:hover { color:var(--gold); border-bottom-color:var(--gold); }

.contact-socials { display:flex; gap:.8rem; }
.social-btn { width:40px; height:40px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; color:var(--steel); text-decoration:none; font-size:.85rem; transition:border-color .2s, color .2s, background .2s; }
.social-btn:hover { border-color:var(--ember); color:var(--ember); background:var(--glow); }

.contact-email { display:flex; flex-direction:column; align-items:flex-start; gap:1.5rem; }
.contact-email-label { font-family:'DM Mono',monospace; font-size:.68rem; letter-spacing:.22em; text-transform:uppercase; color:var(--steel); }
.contact-email-address { font-family:'Cinzel',serif; font-size:clamp(1.2rem,2.8vw,2rem); font-weight:700; color:var(--ember); text-decoration:none; border-bottom:2px solid var(--ember); padding-bottom:.2rem; transition:color .2s, border-color .2s; word-break:break-all; }
.contact-email-address:hover { color:var(--gold); border-color:var(--gold); }
.contact-email-note { font-size:.9rem; color:var(--steel); line-height:1.75; max-width:380px; }
.contact-email-btn { align-self:flex-start; margin-top:.5rem; }

/* ── Footer ─────────────────────────────────────────────────── */
footer { background:var(--ink); border-top:1px solid var(--border); padding:3rem; }
.footer-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1.5rem; }
.footer-logo      { font-family:'Cinzel',serif; font-size:1.1rem; font-weight:700; color:var(--white); letter-spacing:.06em; }
.footer-logo span { color:var(--ember); }
.footer-copy      { font-size:.78rem; color:var(--steel); }
.footer-links     { display:flex; gap:2rem; flex-wrap:wrap; }
.footer-links a   { font-family:'DM Mono',monospace; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:var(--steel); text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:var(--ember); }
