/* Sections match the rest of the site using theme vars */
.section-gradient {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: clamp(40px, 4vw, 72px) 0;
}

.divider-top {
  border-top: 1px solid color-mix(in oklab, var(--bg-2), #000 8%);
}
.divider-bottom {
  border-bottom: 1px solid color-mix(in oklab, var(--bg-2), #000 8%);
}

/* Headings and rules follow theme colors */
.section-heading { 
  color: var(--text);
  margin: 0 0 8px;
  font-weight: 900;
}
hr.primary {
  border: 0;
  border-top: 2px solid var(--accent);
  width: 120px;
  margin: 16px auto 0;
}

/* Accent utilities */
.icon-accent { color: var(--accent); }
.link-accent { color: var(--accent); }
.link-accent:hover { opacity: .85; }
.text-strong { color: var(--text); }
.accent-text { color: var(--accent); }

/* Spacing helper for BOOK NOW */
.spacer-top-lg { display: inline-block; margin-top: 50px; }

/* Optional: small ghost button variant for "Get Directions" */
.btn-ghost.btn-xs {
  padding: 8px 12px;
  font-size: .8rem;
}

/* Ensure page background aligns with theme (usually already set globally) */
/* body { background: var(--bg); } */
