/* ============================================================
   GLITZ MAGAZINE — STUDIO PROFILE PAGE
   /studio/<studio-name>
============================================================ */
:root {
  --red:       #C8232B;
  --red-dk:    #9E1B22;
  --red-lt:    #E8454C;
  --red-tint:  #FDF1F1;
  --ink:       #0E0E0E;
  --charcoal:  #1C1C1C;
  --smoke:     #3A3A3A;
  --ash:       #7A7A7A;
  --stone:     #BFBBB7;
  --linen:     #F4F2EF;
  --ivory:     #FDFCFA;
  --white:     #FFFFFF;
  --serif:   'Cormorant Garamond', serif;
  --display: 'Bebas Neue', sans-serif;
  --sans:    'DM Sans', sans-serif;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--ivory); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--ink);
  padding: 52px 40px 44px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-header::after {
  content: 'STUDIO';
  position: absolute; right: -10px; bottom: -32px;
  font-family: var(--display); font-size: 200px; letter-spacing: -4px;
  color: rgba(200,35,43,0.05); line-height: 0.9; pointer-events: none;
}
.ph-inner {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.ph-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red-lt); margin-bottom: 12px;
}
.ph-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; font-style: italic; color: var(--white);
  line-height: 1.1; margin-bottom: 12px;
}
.ph-title strong { font-style: normal; font-weight: 500; color: var(--red-lt); }
.ph-desc { font-size: 14px; color: var(--stone); max-width: 480px; line-height: 1.7; }
.ph-stats { display: flex; gap: 32px; flex-shrink: 0; }
.ph-stat { text-align: right; }
.ph-stat .n {
  font-family: var(--serif); font-size: 40px; font-weight: 400;
  color: var(--white); line-height: 1;
}
.ph-stat .n span { color: var(--red-lt); font-size: 24px; }
.ph-stat .l {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ash); margin-top: 4px;
}

/* ── STUDIO HERO ── */
.studio-hero {
  display: flex; gap: 48px; align-items: flex-start;
  padding: 48px 40px 56px;
  max-width: 1200px; margin: 0 auto;
}
.sh-avatar {
  width: 120px; height: 120px; border-radius: 4px; flex-shrink: 0;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 36px; letter-spacing: 3px; color: var(--red);
}
.sh-avatar-img {
  padding: 0; overflow: hidden;
}
.sh-avatar-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.sh-info { flex: 1; }
.sh-name {
  font-family: var(--serif); font-size: 32px; font-weight: 500;
  color: var(--ink); margin-bottom: 8px;
}
.sh-location { font-size: 14px; color: var(--ash); margin-bottom: 8px; }
.sh-spec { font-size: 12px; color: var(--stone); margin-bottom: 16px; }
.sh-desc {
  font-size: 15px; color: var(--smoke); line-height: 1.7;
  margin-bottom: 24px;
}
.sh-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sh-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 12px 24px; border-radius: 3px; text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer;
}
.sh-btn-primary { background: var(--ink); color: var(--white); }
.sh-btn-primary:hover { background: var(--red); }
.sh-btn-outline { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.sh-btn-outline:hover { background: var(--ink); color: var(--white); }

/* ── PROJECTS SECTION ── */
.projects-section {
  padding: 0 40px 64px;
  max-width: 1200px; margin: 0 auto;
}
.ps-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.ps-header h2 {
  font-family: var(--display); font-size: 22px; letter-spacing: 2px;
  color: var(--ink);
}
.ps-header h2 strong { font-weight: 400; color: var(--red); }
.ps-header a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ash); text-decoration: none;
}
.ps-header a:hover { color: var(--red); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--stone);
  border-radius: 3px;
  overflow: hidden;
}
.pc {
  background: var(--white);
  padding: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s;
}
.pc:hover { background: var(--ivory); }
.pc-thumb {
  height: 220px;
  overflow: hidden;
}
.pc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.pc:hover .pc-thumb img { transform: scale(1.04); }
.ph-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #1a1410, #2a1e14);
}
.pc-body { padding: 20px; }
.pc-body .pct {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.pc-body h3 {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--ink); line-height: 1.25;
}
.pc-body .pcl { font-size: 12px; color: var(--ash); margin-top: 6px; }

.no-projects {
  padding: 48px; text-align: center;
  font-family: var(--serif); font-size: 20px; font-style: italic;
  color: var(--ash);
}

/* ── FOOTER (from footer_march) ── */
.lp-footer { background: var(--charcoal); padding: 64px 48px 40px; }
.footer-grid-lp {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fl-brand .fl-logo { font-family: var(--display); font-size: 48px; letter-spacing: 4px; color: var(--red); line-height: 1; margin-bottom: 16px; }
.fl-brand p { font-family: var(--serif); font-size: 15px; font-style: italic; color: var(--ash); line-height: 1.65; max-width: 260px; margin-bottom: 24px; }
.fl-brand .fl-tagline { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); display: flex; align-items: center; gap: 12px; }
.fl-brand .fl-tagline::before { content: '—'; }
.fl-col h5 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.fl-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fl-col ul li a { font-size: 13px; color: var(--ash); text-decoration: none; transition: color 0.2s; }
.fl-col ul li a:hover { color: var(--red-lt); }
.footer-bottom-lp { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom-lp p { font-size: 12px; color: var(--smoke); }
.footer-social { display: flex; gap: 12px; }
.fs-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: var(--ash);
  text-decoration: none; transition: all 0.2s;
}
.fs-btn:hover { border-color: var(--red); color: var(--red-lt); }

@media (max-width: 1024px) {
  .footer-grid-lp { grid-template-columns: 1fr 1fr; }
  .lp-footer { padding-left: 24px; padding-right: 24px; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .footer-grid-lp { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-lp { flex-direction: column; gap: 20px; text-align: center; }
  .studio-hero { flex-direction: column; padding: 32px 24px 40px; }
  .proj-grid { grid-template-columns: 1fr; }
  .page-header { padding: 36px 24px 32px; }
  .projects-section { padding: 0 24px 48px; }
}
