/* ══════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════ */
.services {
  background: var(--color-black);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  margin-top: 0;
}

/* ── Card ────────────────────────────────────── */
.service-card {
  background: var(--color-black-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: var(--space-6) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition:
    border-color var(--duration-base) var(--ease-luxury),
    transform var(--duration-base) var(--ease-luxury),
    box-shadow var(--duration-base) var(--ease-luxury);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ── Roman numeral icon ──────────────────────── */
.service-card__numeral {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.35em;
  margin-bottom: var(--space-1);
}

/* ── Card name ───────────────────────────────── */
.service-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 300;
  color: var(--color-beige);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* ── Card description ────────────────────────── */
.service-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-silver);
  line-height: 1.7;
  flex: 1;
}

/* ── Price ───────────────────────────────────── */
.service-card__price {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 0.08em;
  margin-top: var(--space-1);
}

/* ── Bottom note ─────────────────────────────── */
.services__note {
  text-align: center;
  margin-top: var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-silver);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ══════════════════════════════════════════════
   EXPANDED SERVICE DETAIL LAYOUT
══════════════════════════════════════════════ */

/* ── Pricing disclaimer note ─────────────────── */
.services__pricing-note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-silver);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  padding: var(--space-4) var(--space-5);
  border-left: 2px solid rgba(201, 168, 76, 0.35);
  opacity: 0.8;
}

/* ── Section divider label ───────────────────── */
.service-section-label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  margin-top: var(--space-10);
}

/* ── Detail card (expanded version of service-card) ── */
.service-detail-card {
  background: var(--color-black-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: var(--space-6) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition:
    border-color var(--duration-base) var(--ease-luxury),
    transform var(--duration-base) var(--ease-luxury),
    box-shadow var(--duration-base) var(--ease-luxury);
}

.service-detail-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

/* Featured (Signature) card */
.service-detail-card--featured {
  border-color: rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, #161616 0%, #1a1610 100%);
}

.service-detail-card--featured:hover {
  border-color: rgba(201, 168, 76, 0.7);
}

.service-detail-card__badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-black);
  background: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2em 0.7em;
  margin-bottom: var(--space-1);
  align-self: flex-start;
}

.service-detail-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--color-beige);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.service-detail-card__price {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 0.08em;
}

.service-detail-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-silver);
  line-height: 1.7;
}

/* ── Sub-section within a detail card ───────── */
.service-sub {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.service-sub__label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: var(--space-1);
}

.service-sub__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-sub__list li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-silver);
  line-height: 1.5;
  padding-left: 1em;
  position: relative;
}

.service-sub__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(201, 168, 76, 0.5);
}

/* Pricing list variant (larger, prominent) */
.service-sub__list--pricing li {
  color: var(--color-beige);
  font-weight: 400;
}

/* ── Two-column detail grid ──────────────────── */
.services__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-3);
}

/* ── Booking policy block ────────────────────── */
.booking-policy {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: var(--space-6) var(--space-5);
  margin-top: var(--space-3);
}

.booking-policy__title {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.booking-policy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.booking-policy__list li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-silver);
  line-height: 1.6;
  padding-left: 1.2em;
  position: relative;
}

.booking-policy__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 1.1em;
}

/* ── Custom projects note ────────────────────── */
.services__custom-note {
  text-align: center;
  margin-top: var(--space-6);
  padding: var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-silver);
  line-height: 1.7;
}

.services__custom-note strong {
  color: var(--color-beige);
  font-weight: 400;
}
