/* ══════════════════════════════════════
   BRAYMONT — STUDIO PAGE CSS
══════════════════════════════════════ */

/* Force visibility */
.page-studio .reveal,
.page-studio .reveal-left,
.page-studio .reveal-right,
.page-studio .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}

/* ── HERO ── */
.studio-hero {
  position: relative;
  padding: 10rem 5% 5rem;
  overflow: hidden;
  text-align: center;
}
.studio-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.studio-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #0a0a0a;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.studio-hero-title span {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.studio-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}
.studio-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Floating badges */
.studio-hero-badges {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.studio-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #0a0a0a;
}
.studio-badge svg { color: var(--blue-primary); flex-shrink: 0; }

/* ── SHARED SECTION STYLES ── */
.studio-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 5%;
}
.studio-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}
.studio-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.4rem;
}
.studio-section-title span {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.studio-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.8rem;
}

/* ── INCLUDED GRID ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.included-card {
  padding: 1.8rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(43,53,255,0.1);
}
.included-icon {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,53,255,0.08);
  border: 1px solid rgba(43,53,255,0.15);
  border-radius: 11px;
  color: var(--blue-primary);
}
.included-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0a0a;
}
.included-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── SERVICES ROW ── */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.svc-tile {
  padding: 2rem;
  border-radius: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(43,53,255,0.08);
}
.svc-tile-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(43,53,255,0.1);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.svc-tile-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.5rem;
}
.svc-tile-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-card {
  padding: 2.2rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(43,53,255,0.12);
}
.pricing-featured {
  border: 2px solid var(--blue-primary) !important;
  background: rgba(43,53,255,0.04) !important;
}
.pricing-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(43,53,255,0.08);
  border: 1px solid rgba(43,53,255,0.2);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-primary);
  width: fit-content;
}
.pricing-badge-featured {
  background: var(--blue-primary);
  color: #fff;
  border-color: var(--blue-primary);
}
.pricing-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,53,255,0.08);
  border: 1px solid rgba(43,53,255,0.15);
  border-radius: 13px;
  color: var(--blue-primary);
}
.pricing-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0a0a0a;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.pricing-currency {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue-primary);
}
.pricing-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1;
}
.pricing-per {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-left: 0.2rem;
}
.pricing-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.85rem;
  color: #333;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 0.8rem;
}
.pricing-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── RULES GRID ── */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 14px;
  transition: transform 0.25s;
}
.rule-item:hover { transform: translateY(-3px); }
.rule-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.rule-icon-red {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.2);
  color: #dc2626;
}
.rule-icon-green {
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  color: #16a34a;
}
.rule-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 0.4rem;
}
.rule-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── BOOKING FORM ── */
.book-form-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 18px;
}
.book-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.book-success {
  max-width: 500px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}
.book-success-icon {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,53,255,0.08);
  border: 1px solid rgba(43,53,255,0.2);
  border-radius: 50%;
  color: var(--blue-primary);
}
.book-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0a0a0a;
}
.book-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 6rem 5%;
  overflow: hidden;
  text-align: center;
}
.cta-band-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(43,53,255,0.07), transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cta-band-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.2;
}
.cta-band-title span {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band-sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .services-row { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 1.5rem; }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-section-inner { padding: 4rem 5%; }
}
@media(max-width:600px) {
  .studio-hero { padding: 8rem 5% 3rem; }
  .included-grid { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .studio-hero-badges { gap: 0.6rem; }
  .studio-badge { font-size: 0.75rem; padding: 0.5rem 0.9rem; }
}