/* ============================================
   Sky Key — Design System & Layout
   Production-ready, DreamHost deployable
   ============================================ */

:root {
  --color-white: #ffffff;
  --color-bg-light: #f9fafb;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-text: #111827;
  --color-text-body: #4b5563;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container-max: 1160px;
  --header-height: 88px;
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.08);
  --transition-base: 0.3s ease;
  --transition-fast: 0.2s ease;
  --animate-duration: 400ms;
  --animate-offset: 12px;
  --section-padding-mobile: 3.5rem;
  --section-padding-desktop: 5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-on-scroll { opacity: 1 !important; transform: none !important; transition: none !important; }
}

h1, h2, h3, h4, p { margin: 0 0 1rem; color: var(--color-text); }
h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 600; line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 0.875rem; }
h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

main { padding-top: var(--header-height); }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .site-header .header-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .site-header .header-inner { padding: 0 2rem; } }

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo:hover { text-decoration: none; color: var(--color-text); }

/* Desktop logo */
.logo img { height: 150px; width: auto; display: block; }

/* Mobile logo — approximately 3x larger, stays centered */
@media (max-width: 768px) {
  .logo img {
    height: 120px;
    width: auto;
  }

  .site-header .header-inner {
    min-height: 152px;
    height: auto;
    padding: 16px 1.25rem;
  }

  main {
    padding-top: 152px;
  }
}

.nav-desktop { display: none; }

@media (min-width: 768px) {
  .nav-desktop { display: flex; align-items: center; gap: 2rem; }
  .nav-desktop a { color: var(--color-text); font-size: 0.9375rem; text-decoration: none; }
  .nav-desktop a:hover { color: var(--color-accent); text-decoration: none; }
  .header-phone-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 0.125rem; }
  .header-phone-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-text-muted); font-weight: 400; }
  .nav-desktop .phone { color: var(--color-accent); font-size: 0.9375rem; font-weight: 600; text-decoration: none; }
  .nav-desktop .phone:hover { color: var(--color-accent-hover); text-decoration: underline; }
}

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 0; border: none; background: transparent; cursor: pointer; color: var(--color-text);
}

@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle .icon-close { display: none; }

.nav-mobile {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-mobile.is-open { max-height: 280px; }
@media (min-width: 768px) { .nav-mobile { display: none; } }

.nav-mobile-inner { padding: 1rem 1.25rem 1.5rem; }
.nav-mobile a { display: block; padding: 0.75rem 0; color: var(--color-text); font-size: 1rem; text-decoration: none; border-bottom: 1px solid var(--color-border-light); }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .phone-mobile { margin-top: 0.5rem; padding-top: 0.75rem; color: var(--color-accent); font-weight: 600; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.75rem 1.5rem;
  font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
  text-decoration: none; border: none; border-radius: 6px; cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.btn-primary { background: var(--color-accent); color: var(--color-white); }
.btn-primary:hover { background: var(--color-accent-hover); text-decoration: none; color: var(--color-white); }

.btn-secondary { background: var(--color-white); color: var(--color-accent); border: 2px solid var(--color-accent); }
.btn-secondary:hover { background: var(--color-bg-light); text-decoration: none; color: var(--color-accent); }

/* --- Hero --- */
.hero { padding: 2.25rem 0 3rem; background: var(--color-white); }
@media (min-width: 768px) { .hero { padding: 3rem 0 4rem; } }
@media (min-width: 1024px) {
  .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
}

.hero-content h1 { margin-bottom: 0.75rem; }
.hero-content .subheadline { font-size: 1.125rem; color: var(--color-text-muted); margin-bottom: 1.5rem; max-width: 32ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-trust-strip {
  margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--color-border);
  font-size: 0.8125rem; color: var(--color-text-muted);
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
}

.hero-trust-item { display: inline-flex; align-items: center; gap: 0.375rem; }
.hero-trust-check { color: var(--color-accent); font-size: 0.75rem; }
@media (max-width: 479px) { .hero-trust-strip { flex-direction: column; gap: 0.5rem; } }

.hero-image {
  margin-top: 2rem; border-radius: 8px; overflow: hidden; background: var(--color-bg-light);
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted); font-size: 0.875rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 1024px) { .hero-image { margin-top: 0; } }

/* --- Section blocks --- */
.section {
  padding: var(--section-padding-mobile) 0;
  border-top: 1px solid var(--color-border);
}

.section:first-of-type { border-top: none; }

@media (min-width: 768px) {
  .section { padding: var(--section-padding-desktop) 0; }
}

.section-alt { background: var(--color-bg-light); }

.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--color-text-muted); max-width: 42ch; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* --- Legitimacy / Process section --- */
.legitimacy-intro { color: var(--color-text-muted); margin-bottom: 2.5rem; max-width: 43ch; margin-left: auto; margin-right: auto; text-align: center; line-height: 1.6; }
@media (min-width: 768px) { .legitimacy-intro { max-width: 700px; } }

.legitimacy-list { list-style: none; padding: 0; margin: 0; }
.legitimacy-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.legitimacy-list li:last-child { margin-bottom: 0; }
.legitimacy-list .icon { flex-shrink: 0; width: 28px; height: 28px; margin-top: 0.1rem; color: var(--color-accent); }
.legitimacy-list strong { display: block; margin-bottom: 0.25rem; color: var(--color-text); }
.legitimacy-list li > div { color: var(--color-text-body); }

.process-two-col { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) {
  .process-two-col { display: grid; grid-template-columns: 58% 42%; gap: 3.5rem; align-items: center; }
}

.process-two-col-heading { margin-bottom: 0.75rem; }
.process-section .process-two-col-intro { text-align: left; margin-left: 0; margin-right: 0; margin-bottom: 2.5rem; }
.process-section .process-two-col-intro.legitimacy-intro { max-width: none; }

.process-two-col-image { display: flex; align-items: center; justify-content: center; }

.process-image-placeholder {
  width: 100%; max-width: 420px; aspect-ratio: 4 / 3;
  border-radius: 12px; background: #f3f4f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.process-image-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 1024px) { .process-image-placeholder { max-width: 100%; } }

/* --- How it works --- */
.steps { display: grid; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.step-card {
  background: var(--color-white); padding: 2rem; border-radius: 8px;
  box-shadow: var(--shadow-card); border: 1px solid var(--color-border-light);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

@media (min-width: 1024px) {
  .step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
}
@media (prefers-reduced-motion: reduce) { .step-card:hover { transform: none; } }

.step-card .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: var(--color-accent); color: #fff;
  font-weight: 700; font-size: 0.9375rem; border-radius: 50%;
  margin-bottom: 1rem;
}

.step-card h3 { margin-bottom: 0.5rem; color: var(--color-text); }
.step-card p { margin: 0; color: var(--color-text-body); font-size: 0.9375rem; line-height: 1.6; max-width: 32ch; }

/* --- Reviews carousel --- */
.reviews-carousel-section { padding-top: calc(var(--section-padding-mobile) * 0.85); }
@media (min-width: 768px) { .reviews-carousel-section { padding-top: calc(var(--section-padding-desktop) * 0.9); } }

.reviews-carousel-section .carousel-section-header { margin-bottom: 1.5rem; }
.reviews-carousel-section .carousel-section-header .section-title p { margin-bottom: 0.25rem; }
.carousel-credibility-line { font-size: 0.8125rem !important; color: var(--color-text-muted) !important; margin: 0 auto 1.5rem !important; font-weight: 400; }

.carousel-wrapper { max-width: 1100px; margin: 0 auto; position: relative; }
.carousel-viewport { overflow: hidden; width: 100%; }
.carousel-track { display: flex; width: 1500%; transition: transform 350ms ease-out; will-change: transform; }
@media (min-width: 1024px) { .carousel-track { width: 750%; } }
@media (prefers-reduced-motion: reduce) { .carousel-track { transition: none; } }

.carousel-card {
  flex: 0 0 6.66667%; min-width: 0; padding: 1.5rem;
  background: var(--color-white); border-radius: 8px;
  box-shadow: var(--shadow-card); border: 1px solid var(--color-border-light);
  display: flex; flex-direction: column;
}

@media (min-width: 768px) { .carousel-card { padding: 1.75rem; } }
@media (min-width: 1024px) { .carousel-card { flex: 0 0 6.66667%; padding: 2rem; } }

.carousel-card-stars { font-size: 0.75rem; letter-spacing: 0.08em; margin-bottom: 0.5rem; color: #eab308; }
.carousel-card-meta { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 0.75rem; }
.carousel-card-meta strong { color: var(--color-text); }
.carousel-card p { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--color-text); flex: 1; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1.25rem; }
.carousel-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0;
  border: 1px solid var(--color-border-light); border-radius: 6px;
  background: var(--color-white); color: var(--color-text-muted); cursor: pointer;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.carousel-btn:hover:not(:disabled) { background: var(--color-bg-light); border-color: var(--color-border); color: var(--color-accent); }
.carousel-btn:focus { outline: none; box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15); }
.carousel-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.carousel-btn svg { width: 20px; height: 20px; }

.carousel-dots { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.carousel-dot {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%;
  background: var(--color-border); cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base);
}

.carousel-dot:hover { background: var(--color-text-muted); }
.carousel-dot:focus { outline: none; box-shadow: 0 0 0 2px var(--color-accent); }
.carousel-dot[aria-selected="true"] { background: var(--color-accent); transform: scale(1.2); }

/* --- About page --- */
.about-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 280px 1fr; gap: 3rem; } }

.about-image {
  width: 100%; max-width: 280px; aspect-ratio: 1; border-radius: 8px;
  background: var(--color-bg-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted); font-size: 0.875rem;
}

img.about-image { display: block; object-fit: cover; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { color: var(--color-text-muted); margin-bottom: 1rem; }
.about-content .about-list { margin: 0 0 1rem 1.25rem; padding: 0; color: var(--color-text-muted); }
.about-content .about-list li { margin-bottom: 0.5rem; }

.about-hero { padding: 4rem 0 4.5rem; text-align: center; }
@media (min-width: 768px) { .about-hero { padding: 5rem 0 6rem; } }
.about-hero-headline { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 600; letter-spacing: -0.02em; max-width: 20ch; margin-left: auto; margin-right: auto; margin-bottom: 1.25rem; }
.about-hero-sub { font-size: 1.125rem; color: var(--color-text-muted); max-width: 42ch; margin: 0 auto; line-height: 1.6; }

.about-story-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 768px) { .about-story-grid { grid-template-columns: 280px 1fr; gap: 3rem; } }
.about-story-image-wrap .about-image { max-width: 100%; }

.about-section-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); margin: 0 0 0.5rem; }
.about-story-heading { margin-bottom: 1.5rem; }
.about-story-content p { color: var(--color-text-body); margin-bottom: 1.25rem; line-height: 1.65; }
.about-story-content p:last-child { margin-bottom: 0; }

.about-block-heading { text-align: center; margin-bottom: 2rem; }
.about-why-section .container { max-width: 38em; margin-left: auto; margin-right: auto; }
.about-why-section p { color: var(--color-text-body); margin-bottom: 1rem; line-height: 1.65; }
.about-why-section p:last-of-type { margin-bottom: 0; }
.about-why-tagline { font-weight: 600; color: var(--color-text); font-size: 1.125rem; margin-top: 1.5rem; margin-bottom: 1rem; }

.about-believe-grid { display: grid; gap: 2rem; margin-top: 2rem; }
@media (min-width: 768px) { .about-believe-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.about-believe-card { padding: 0; margin: 0; }
.about-believe-title { font-weight: 600; color: var(--color-text); margin: 0 0 0.5rem; font-size: 1rem; }
.about-believe-desc { font-size: 0.9375rem; color: var(--color-text-body); margin: 0; line-height: 1.6; }

.about-experience-intro { color: var(--color-text-body); margin-bottom: 1.5rem; max-width: 50ch; line-height: 1.6; }
.about-experience-list { list-style: none; padding: 0; margin: 0; }
.about-experience-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: var(--color-text-body); line-height: 1.5; }
.about-experience-list li::before { content: "•"; position: absolute; left: 0; color: var(--color-accent); font-weight: 600; }

.about-cta-section { text-align: center; }
.about-cta-headline { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 600; max-width: 22ch; margin-left: auto; margin-right: auto; margin-bottom: 0.75rem; }
.about-cta-sub { color: var(--color-text-muted); margin-bottom: 1.5rem; font-size: 1rem; }
.about-cta-section .btn { margin-top: 0.5rem; }

/* --- Reviews page --- */
.reviews-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card { background: var(--color-white); padding: 1.75rem; border-radius: 8px; box-shadow: var(--shadow-card); border: 1px solid var(--color-border-light); }
.review-card .review-stars { font-size: 0.875rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: #eab308; }
.review-card .review-meta { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 0.75rem; }
.review-card .review-meta strong { color: var(--color-text); }
.review-card p { margin: 0; font-size: 0.9375rem; line-height: 1.6; }

/* --- Contact --- */
.contact-section { padding: 4rem 0; background: var(--color-bg-light); }
.contact-card { max-width: 560px; margin: 0 auto; background: var(--color-white); padding: 2.5rem; border-radius: 8px; box-shadow: var(--shadow-card); border: 1px solid var(--color-border-light); }
@media (min-width: 768px) { .contact-card { padding: 3rem; } }
.contact-card h2 { margin-bottom: 0.5rem; }
.contact-card .form-intro { color: var(--color-text-muted); margin-bottom: 1.5rem; font-size: 0.9375rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.375rem; color: var(--color-text); }
.form-group input,
.form-group textarea {
  width: 100%; min-height: 48px; padding: 0.75rem 1rem;
  font-family: var(--font-sans); font-size: 1rem; color: var(--color-text);
  background: var(--color-white); border: 1px solid var(--color-border); border-radius: 6px;
  -webkit-appearance: none; appearance: none;
}

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-reassurance { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 1rem; margin-bottom: 1.5rem; }
.form-success { display: none; padding: 1rem; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 6px; color: #065f46; font-size: 0.9375rem; margin-bottom: 1rem; }
.form-success.is-visible { display: block; }
.form-error { display: none; padding: 1rem; background: #fef2f2; border: 1px solid #fecaca; border-radius: 6px; color: #991b1b; font-size: 0.9375rem; margin-bottom: 1rem; }
.form-error.is-visible { display: block; }
.form-group-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- Footer --- */
.site-footer { background: var(--color-text); color: var(--color-white); padding: 3rem 0 2rem; margin-top: 4rem; }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr auto; gap: 3rem; } }
.footer-brand .logo { color: var(--color-white); }
.footer-brand .logo:hover { color: var(--color-white); opacity: 0.9; }
.footer-brand p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255, 255, 255, 0.7); }
.footer-links a { color: rgba(255, 255, 255, 0.85); font-size: 0.9375rem; }
.footer-links a:hover { color: var(--color-white); text-decoration: none; }
.footer-contact { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.85); }
.footer-contact a { color: rgba(255, 255, 255, 0.85); }
.footer-contact a:hover { color: var(--color-white); }
.footer-legal { padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.15); font-size: 0.8125rem; color: rgba(255, 255, 255, 0.6); }
.footer-legal p { margin: 0 0 0.5rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.7); }
.footer-legal a:hover { color: var(--color-white); }

/* --- Mobile call sticky --- */
/* Mobile "Call Sky Key" button — slide up on load, hide on scroll down, show on scroll up */
.mobile-call-btn { display: none; }
@media (max-width: 768px) {
  .mobile-call-btn {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    background: linear-gradient(135deg, #3b6df6, #2f5be3);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform: translateY(100px);
    opacity: 0;
  }

  /* Visible state */
  .mobile-call-btn.show {
    transform: translateY(0);
    opacity: 1;
  }

  /* Hidden when scrolling down */
  .mobile-call-btn.hide {
    transform: translateY(100px);
    opacity: 0;
  }

  main { padding-bottom: 80px; }
}

/* --- Animations --- */
.animate-on-scroll { opacity: 0; transform: translateY(var(--animate-offset)); transition: opacity var(--animate-duration) ease, transform var(--animate-duration) ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* --- Page hero (inner pages) --- */
.page-hero { padding: 2.5rem 0 2rem; background: var(--color-bg-light); }
.page-hero h1 { margin-bottom: 0.25rem; }
.page-hero p { color: var(--color-text-muted); margin: 0; font-size: 1rem; }
