/* ── header ── */
.services-header {
  padding: 160px 40px 80px;
  text-align: center;
}
.services-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f5f5f5;
  display: block;
  margin: 0 0 14px;
}
.services-title-italic {
  font-family: 'IvyPresto Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 60px);
  letter-spacing: -.02em;
  line-height: .95;
  display: block;
  margin: 0 0 4px;
}
.services-title-bold {
  font-weight: 900;
  font-size: clamp(60px, 9vw, 120px);
  letter-spacing: -.05em;
  line-height: .86;
  text-transform: uppercase;
  display: block;
  margin: 0;
}

/* ── services grid ── */
.services-grid-section {
  padding: 80px 40px 100px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.svc-card {
  padding: 40px 36px 44px;
  border: 1px solid rgba(245,245,245,.06);
  position: relative;
  overflow: hidden;
  transition: background .25s ease;
  cursor: default;
}
.svc-card:hover {
  background: rgba(245,245,245,.025);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 1px;
  background: rgba(245,245,245,.0);
  transition: background .3s ease;
}
.svc-card:hover::before {
  background: rgba(204,34,85,.4);
}
.svc-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0 0 20px;
  display: block;
}
.svc-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  color: #f5f5f5;
  transition: color .25s ease;
  display: block;
}
.svc-card:hover .svc-icon {
  color: #cc2255;
}
.svc-name {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -.03em;
  line-height: 1;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 0 0 14px;
}
.svc-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #f5f5f5;
  margin: 0 0 24px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.svc-tag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(245,245,245,.05);
  color: #f5f5f5;
  border: 1px solid rgba(245,245,245,.08);
}
.svc-card.svc-web .svc-name { color: #cc2255; }
.svc-card.svc-web .svc-num { color: rgba(204,34,85,.4); }

/* ── how I work ── */
.how-section {
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: minmax(200px, 340px) 1fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: start;
}
.how-sticky {
  position: sticky;
  top: 120px;
}
.how-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f5f5f5;
  display: block;
  margin: 0 0 12px;
}
.how-italic {
  font-family: 'IvyPresto Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -.02em;
  line-height: 1;
  display: block;
  margin: 0 0 4px;
}
.how-bold {
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -.048em;
  line-height: .86;
  text-transform: uppercase;
  display: block;
  margin: 0 0 28px;
}
.how-body {
  font-size: 14px;
  line-height: 1.8;
  color: #f5f5f5;
  max-width: 280px;
}

/* ── accordion ── */
.accordion {
  display: flex;
  flex-direction: column;
}
details.acc-item { border-top: 1px solid rgba(245,245,245,.1); }
details.acc-item:last-child { border-bottom: 1px solid rgba(245,245,245,.1); }
details.acc-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
details.acc-item summary::-webkit-details-marker { display: none; }
.acc-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.acc-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #f5f5f5;
  width: 20px;
  flex-shrink: 0;
}
.acc-name {
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #f5f5f5;
  transition: color .2s ease;
}
details[open] .acc-name { color: #cc2255; }
.acc-icon {
  font-size: 18px;
  font-weight: 300;
  color: #f5f5f5;
  transition: transform .25s ease, color .25s ease;
  line-height: 1;
  flex-shrink: 0;
}
details[open] .acc-icon { transform: rotate(45deg); color: #cc2255; }
.acc-body {
  overflow: hidden;
  height: 0;
  transition: height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
details .acc-body { display: block !important; }
.acc-body-inner { padding: 0 0 24px 36px; }
.acc-body p {
  font-size: 14px;
  line-height: 1.75;
  color: #f5f5f5;
  margin: 0 0 12px;
  max-width: 480px;
}
.acc-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.acc-body ul li {
  font-size: 13px;
  font-weight: 500;
  color: #f5f5f5;
  letter-spacing: .01em;
  padding-left: 18px;
  position: relative;
}
.acc-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(204,34,85,.4);
  font-size: 11px;
}

/* ── CTA ── */
.collab-section {
  position: relative;
  overflow: hidden;
  padding: 140px 40px 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.collab-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.collab-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.38) saturate(.6);
}
.collab-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,.55) 0%, rgba(5,5,5,.2) 50%, rgba(5,5,5,.7) 100%);
  z-index: 1;
}
.collab-content { position: relative; z-index: 2; }
.collab-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #f5f5f5;
  display: block;
  margin: 0 0 18px;
}
.collab-heading-italic {
  font-family: 'IvyPresto Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -.02em;
  line-height: 1;
  display: block;
  margin: 0 0 4px;
}
.collab-heading-bold {
  font-weight: 900;
  font-size: clamp(56px, 9vw, 120px);
  letter-spacing: -.05em;
  line-height: .86;
  text-transform: uppercase;
  display: block;
  margin: 0 0 44px;
}
.collab-btn--crimson {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #a81e48;
  color: #f5f5f5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: background .2s ease, transform .2s cubic-bezier(.25,.46,.45,.94);
}
.collab-btn--crimson:hover {
  background: #8c1a3d;
  transform: translateY(-2px);
}
.collab-btn--crimson:focus-visible {
  outline: 2px solid #cc2255;
  outline-offset: 3px;
}

/* ── mobile ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-header { padding: 120px 24px 60px; }
  .services-grid-section { padding: 60px 24px 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 32px 24px; }
  .how-section { grid-template-columns: 1fr; padding: 60px 24px 80px; }
  .how-sticky { position: static; margin-bottom: 40px; }
  .how-body { max-width: none; }
  .collab-section { padding: 80px 24px; }
}
