/* ============================================================
   RUNNING WITH STU — Services Page
   ============================================================ */

.services-section {
  padding: 7rem 5vw 8rem;
}

/* ---- OUTER CONTAINER (bordered wrap like the reference) ---- */
.services-outer {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 4px;
  background: rgba(255,255,255,0.01);
}

.services-inner {
  display: flex;
  gap: 4px;
  align-items: stretch;
}

/* ---- SERVICE CARD ---- */
.service-card {
  flex: 1;
  border-radius: 12px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: background 0.25s;
}

.service-card--featured {
  background: rgba(255,69,0,0.06);
  border: 1px solid rgba(255,69,0,0.25);
  position: relative;
  flex: 1.3;
}
.service-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(90deg, var(--accent), #ff8c00);
}

/* ---- CARD TOP ---- */
.service-card-top { margin-bottom: 0.2rem; }
.service-tier {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
}
.service-card--featured .service-tier { color: var(--accent); }

/* ---- PRICE ---- */
.service-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.price-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
}
.price-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 300;
}

/* ---- TITLE ---- */
.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* ---- DESC ---- */
.service-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(240,237,232,0.45);
  font-weight: 300;
}

/* ---- BUTTONS ---- */
.service-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.service-btn--outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.service-btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.service-btn--primary {
  background: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
}
.service-btn--primary:hover {
  box-shadow: 0 0 24px var(--accent-glow);
  background: #ff5c1a;
}

/* ---- FEATURES ---- */
.features-label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 500;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.2rem;
}
.service-features li {
  font-size: 0.8rem;
  color: rgba(240,237,232,0.6);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
}
.check {
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ---- INSTAGRAM NOTE ---- */
.services-instagram {
  max-width: 900px;
  margin: 1.2rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.services-instagram-link {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  transition: opacity 0.2s;
}
.services-instagram-link:hover { opacity: 0.75; }

/* ---- PHOTO STRIP ---- */
.services-photo-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 340px;
  gap: 2px;
}
.photo-strip-item {
  overflow: hidden;
  background: #111;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.photo-strip-item:hover img { transform: scale(1.05); }

/* ---- CUSTOM CTA ---- */
.services-custom {
  padding: 8rem 5vw;
  border-top: 1px solid var(--border);
  background: #070707;
}
.custom-inner { max-width: 700px; }
.custom-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.custom-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(240,237,232,0.5);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ---- MOBILE ---- */
@media (max-width: 760px) {
  .services-inner { flex-direction: column; }
  .service-card, .service-card--featured { flex: none; opacity: 1; transform: none; }
  .services-outer { border-radius: 12px; }
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); height: 400px; }
}
@media (max-width: 768px) {
  .services-section, .services-custom { padding: 5rem 1.5rem; }
}
