/* ===== Services Page — gold & black theme ===== */

/* Hero intro band */
#services-hero {
  padding-top: 48px;
  padding-bottom: 19px;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}
#services-hero h1 {
  margin-top: 20px;
  max-width: 820px;
  font-size: 2.5rem;
  line-height: 1.15;
  color: var(--foreground);
}
#services-hero p.body {
  margin-top: 20px;
  max-width: 640px;
  color: var(--muted-foreground);
  line-height: 1.7;
}
@media (min-width: 1024px) {
  #services-hero h1 { font-size: 3.25rem; }
}

.practice-badges {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.practice-badges span {
  border: 1px solid color-mix(in oklch, var(--primary) 55%, transparent);
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 10px 18px;
  border-radius: var(--radius);
}

/* Pricing section */
#services-pricing .intro { max-width: 640px; }
#services-pricing h2 { font-size: 2.25rem; line-height: 1.2; margin-top: 20px; }
@media (min-width: 1024px) { #services-pricing h2 { font-size: 3rem; } }

.pricing-grid {
  margin-top: 40px;
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

.pricing-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 44px 28px 32px;
  display: flex;
  flex-direction: column;
  overflow: visible;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.pricing-card:hover { transform: translateY(-4px); border-color: color-mix(in oklch, var(--primary) 50%, var(--border)); }

.pricing-card-featured {
  border-color: color-mix(in oklch, var(--primary) 65%, var(--border));
  box-shadow: var(--shadow-gold);
}
@media (min-width: 900px) {
  .pricing-card-featured { transform: translateY(-14px); }
  .pricing-card-featured:hover { transform: translateY(-18px); }
}

/* Ribbon banner */
.pricing-ribbon {
  position: absolute;
  top: -18px;
  left: 24px;
  right: 24px;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  padding: 12px 18px;
  border-radius: 2px;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,0.6);
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
}
.pricing-ribbon .ribbon-strong {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pricing-ribbon .ribbon-light {
  font-size: 0.9rem;
  font-weight: 400;
}

/* Price badge (seal look) */
.pricing-badge {
  margin: 40px auto 8px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.55);
  position: relative;
}
.pricing-badge::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed color-mix(in oklch, var(--primary) 70%, transparent);
  opacity: 0.6;
}
.pricing-badge .price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
}
.pricing-badge .price-sub {
  margin-top: 4px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  flex-grow: 1;
}
.pricing-list li {
  font-size: 0.875rem;
  color: var(--foreground);
  padding-left: 26px;
  position: relative;
  line-height: 1.4;
}
.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-note {
  margin-top: 20px;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--muted-foreground);
}

.pricing-cta {
  margin-top: 24px;
  text-align: center;
  align-self: stretch;
}

.pricing-disclaimer {
  margin-top: 40px;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  max-width: 720px;
  line-height: 1.7;
}

/* More services band — mirrors #practice-approach pattern */
#services-more .grid2 {
  display: grid;
  gap: 17px;
}
#services-more h2 { font-size: 1.875rem; line-height: 1.2; color: var(--foreground); }
#services-more p.body { margin-top: 20px; color: var(--muted-foreground); line-height: 1.7; }
.approach-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.approach-photo {
  width: 180px;
  height: auto;
  align-self: center;
  filter: drop-shadow(0 12px 30px rgba(212, 175, 55, 0.25));
}
@media (min-width: 480px) {
  .approach-block { flex-direction: row; align-items: center; }
  .approach-photo { width: 200px; flex-shrink: 0; }
}
@media (min-width: 1024px) {
  #services-more .grid2 { grid-template-columns: 1fr 1fr; }
  #services-more h2 { font-size: 2.25rem; }
  .approach-photo { width: 220px; }
}

/* Services CTA band */
#services-cta .intro { max-width: 640px; }
#services-cta h2 { font-size: 2.25rem; line-height: 1.2; margin-top: 20px; }
.practice-cta-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.practice-cta-actions p.fine { color: var(--muted-foreground); font-size: 0.875rem; }

/* Nav active state on services page */
nav.main-nav a.active { color: var(--primary); }
