/* Service detail pages */
.svc-hero {
  position: relative;
  padding: 64px 0 80px;
  background:
    radial-gradient(900px 400px at 88% -10%, rgba(248,182,79,.22), transparent 60%),
    var(--white);
  overflow: hidden;
}
.svc-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,15,20,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,15,20,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 30% 50%, black 30%, transparent 75%);
  pointer-events: none;
}
.crumbs {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--slate);
  margin-bottom: 28px;
}
.crumbs a { color: var(--slate); }
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { color: var(--muted); }
.crumbs .here { color: var(--ink); font-weight: 500; }

.svc-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) { .svc-hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.svc-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 76px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 18px 0 22px;
}
.svc-hero h1 em { font-style: normal; color: var(--vgm-amber-strong); }
.svc-hero p.lead { font-size: 18px; max-width: 56ch; }

.svc-hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.svc-hero-meta .m { font-size: 13px; color: var(--muted); }
.svc-hero-meta .v { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-top: 2px; }

.svc-hero-art {
  position: relative;
  max-width: 338px;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-2xl);
  background: var(--ink);
  box-shadow: var(--sh-4);
  margin: 0 auto;
  /* overflow visible so cards can float outside the frame */
}
.svc-hero-art::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 20%, rgba(248,182,79,.35), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(248,182,79,.12), transparent 60%);
}
.svc-hero-vid {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.svc-hero-art .big {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--vgm-amber);
  font-size: clamp(160px, 22vw, 320px);
  line-height: 0.85;
  bottom: -30px; right: -30px;
  opacity: .9;
}
.svc-art-orbit-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.svc-art-orbit-wrap .corner-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--sh-3);
  width: 190px;
  pointer-events: none;
  /* position, opacity, transform, z-index driven by JS orbit */
}
.svc-art-orbit-wrap .corner-card .l { font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.svc-art-orbit-wrap .corner-card .v { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); letter-spacing: -0.025em; margin-top: 4px; }
.svc-art-orbit-wrap .corner-card .delta { font-size: 12.5px; color: #0E8A4A; font-weight: 600; margin-top: 4px; }
.svc-art-orbit-wrap .corner-card .row { display: flex; gap: 6px; margin-top: 10px; }
.svc-art-orbit-wrap .corner-card .row span { height: 26px; padding: 0 10px; border-radius: 999px; font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; }

/* Packages */
.packages { padding: 100px 0; background: var(--paper); }
.pkg-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pkg-grid { grid-template-columns: 1fr; } }

.pkg {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pkg:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.pkg.featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.pkg.featured h3, .pkg.featured .price-num { color: var(--white); }
.pkg.featured .desc, .pkg.featured ul li { color: #DADADD; }
.pkg.featured ul li::before { background-color: rgba(248,182,79,.22); }
.pkg.featured .pkg-tag { background: var(--vgm-amber); color: var(--ink); border-color: var(--vgm-amber); }

.pkg-tag {
  position: absolute; top: -10px; left: 24px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--white); border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 999px;
}
.pkg .name { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; }
.pkg .desc { font-size: 13.5px; color: var(--slate); line-height: 1.55; }
.pkg ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  flex: 1;
}
.pkg ul li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--charcoal); line-height: 1.45;
}
.pkg ul li::before {
  content: ""; width: 16px; height: 16px; border-radius: 999px;
  background-color: var(--vgm-amber-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23C58415' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 8.5l3 3 6-7'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
  flex-shrink: 0; margin-top: 2px;
}
.pkg .built {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
}
.pkg.featured .built { color: #82828A; border-top-color: #2A2A30; }
.pkg .pkg-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; height: 44px;
  border-radius: 999px;
  background: var(--ink); color: var(--white);
  font-weight: 600; font-size: 13.5px;
  transition: background .15s ease, transform .15s ease;
}
.pkg .pkg-cta:hover { transform: translateY(-1px); background: #000; }
.pkg.featured .pkg-cta { background: var(--vgm-amber); color: var(--ink); }
.pkg.featured .pkg-cta:hover { background: var(--vgm-amber-strong); }

/* Detail strip */
.detail-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detail-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 880px) { .detail-strip-grid { grid-template-columns: 1fr 1fr; } }
.detail-cell {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.detail-cell:last-child { border-right: 0; }
.detail-cell .ic {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--vgm-amber-tint); border: 1px solid #F0DDB0;
  display: grid; place-items: center;
  color: var(--ink);
  margin-bottom: 16px;
}
.detail-cell .t { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.018em; }
.detail-cell .s { font-size: 13.5px; color: var(--slate); margin-top: 6px; line-height: 1.5; }

/* FAQ-ish bottom */
.svc-cta {
  padding: 100px 0;
  background: var(--white);
}
.svc-cta-card {
  background: var(--ink); color: var(--white);
  border-radius: var(--r-2xl);
  padding: 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: center;
  position: relative; overflow: hidden;
  box-shadow: var(--sh-4);
}
@media (max-width: 760px) { .svc-cta-card { grid-template-columns: 1fr; padding: 36px; } }
.svc-cta-card::before {
  content: ""; position: absolute;
  width: 320px; height: 320px;
  right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(248,182,79,.4), transparent 65%);
}
.svc-cta-card h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--white); position: relative;
}
.svc-cta-card p { color: #B6B6BD; max-width: 50ch; margin-top: 12px; position: relative; }

/* Other services strip */
.other {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.other-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
@media (max-width: 880px) { .other-grid { grid-template-columns: 1fr; } }
.other-card {
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 16px; align-items: center;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.other-card:hover { transform: translateY(-2px); box-shadow: var(--sh-2); border-color: var(--vgm-amber); }
.other-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--vgm-amber-tint); border: 1px solid #F0DDB0; display: grid; place-items: center; color: var(--ink); }
.other-card .t { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.015em; }
.other-card .s { font-size: 12.5px; color: var(--slate); margin-top: 2px; }
.other-card .arr { color: var(--slate); transition: color .15s ease, transform .2s ease; }
.other-card:hover .arr { color: var(--ink); transform: translateX(3px); }
