/* Service drawer */
.svc-drawer-root {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.svc-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 36, 27, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(2px);
}
.svc-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(640px, 92vw);
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.2, 0.85, 0.25, 1);
  pointer-events: none;
  box-shadow: -40px 0 80px rgba(26, 36, 27, 0.15);
  display: flex;
  flex-direction: column;
}
.svc-drawer-root.open {
  pointer-events: auto;
}
.svc-drawer-root.open .svc-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.svc-drawer-root.open .svc-drawer {
  transform: translateX(0);
  pointer-events: auto;
}
.svc-drawer-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.15s, transform 0.15s;
  font-family: var(--sans);
}
.svc-drawer-close:hover { background: var(--ink); color: var(--bg); transform: rotate(90deg); }

.svc-drawer-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 80px 0 48px;
}
.svc-drawer-inner {
  padding: 0 56px;
  max-width: 560px;
}

.svc-drawer-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 20px;
}

.svc-drawer-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  margin: 0 0 16px;
}

.svc-drawer-summary {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0 0 28px;
  font-style: italic;
  text-wrap: pretty;
}

.svc-drawer-inner .rule-gold {
  margin: 0 0 28px;
}

.svc-drawer-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 40px;
}

.svc-drawer-block {
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.svc-drawer-block h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin: 0 0 18px;
}
.svc-drawer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-drawer-block li {
  padding: 12px 0 12px 28px;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  position: relative;
}
.svc-drawer-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.svc-drawer-block li:last-child { border-bottom: 0; }

.svc-drawer-block p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
}

.svc-drawer-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.svc-drawer-foot {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}

/* Related service card */
.svc-related-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 16px;
  align-items: start;
  padding: 20px 24px;
  background: var(--bg);
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: background 0.15s;
}
.svc-related-card:hover { background: var(--paper); }
.svc-related-label {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--green-deep);
  line-height: 1.2;
}
.svc-related-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  grid-column: 1 / -1;
}
.svc-related-arrow {
  font-size: 20px;
  color: var(--gold-dark);
  align-self: center;
  transition: transform 0.15s;
}
.svc-related-card:hover .svc-related-arrow { transform: translateX(4px); }

/* Visual cue that cards/rows are clickable */
.hl, .svc-row, .svc {
  cursor: pointer;
}

@media (max-width: 880px) {
  .svc-drawer { width: 100vw; }
  .svc-drawer-inner { padding: 0 28px; }
  .svc-drawer-title { font-size: 32px; }
  .svc-drawer-summary { font-size: 17px; }
}
