/* =====================================================
   Apex Engage Digital — Main Stylesheet
   Dark editorial aesthetic. Fraunces display + Inter body.
   ===================================================== */

:root {
  /* Color */
  --bg-0: #0A0E14;
  --bg-1: #0F141C;
  --bg-2: #161D27;
  --bg-3: #1E2632;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --text: #F2F0EB;
  --text-muted: #9AA3B2;
  --text-dim: #6B7280;
  --accent: #FF5B3A;        /* electric coral */
  --accent-2: #D4FF3D;      /* lime */
  --accent-deep: #C9461F;
  --success: #5BD68B;
  --danger: #FF4D4F;

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Layout */
  --container: 1240px;
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow:    0 8px 32px rgba(0,0,0,0.32);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.5);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--accent); color: var(--bg-0); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--bg-0);
  padding: 12px 20px; z-index: 9999; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* Subtle grain overlay across the body */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.018) 1px, transparent 0);
  background-size: 3px 3px;
  z-index: 1;
}

main { position: relative; z-index: 2; }

/* =================== TYPE =================== */

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); font-variation-settings: "opsz" 144, "SOFT" 50; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-variation-settings: "opsz" 100; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); }

p { margin: 0 0 1em; color: var(--text); }
p.lead { font-size: 1.2rem; color: var(--text-muted); line-height: 1.55; max-width: 60ch; }
em { font-style: italic; font-family: var(--font-display); font-variation-settings: "opsz" 144; color: var(--accent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

/* =================== LAYOUT =================== */

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section   { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

/* =================== BUTTONS =================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  cursor: pointer; white-space: nowrap;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
}
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

.btn-primary {
  background: var(--accent);
  color: var(--bg-0);
}
.btn-primary:hover {
  background: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,91,58,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--bg-2);
  border-color: var(--text);
}

.btn-dark {
  background: var(--bg-2); color: var(--text);
}
.btn-dark:hover { background: var(--bg-3); }

.btn-arrow::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* =================== HEADER =================== */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 14, 20, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container); margin: 0 auto;
  gap: 32px;
}

.logo {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 500;
  letter-spacing: -0.03em;
}
.logo-mark { color: var(--accent); font-size: 1rem; transform: translateY(-2px); }
.logo-text { color: var(--text); }
.logo-text em { color: var(--accent); }

.primary-nav { display: flex; gap: 4px; }
.primary-nav a {
  padding: 8px 14px; font-size: 0.95rem; font-weight: 500;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.primary-nav a:hover { color: var(--text); }
.primary-nav a.active { color: var(--text); background: var(--bg-2); }

.hamburger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px; align-items: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); transition: 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column; gap: 8px;
  padding: 24px;
  border-top: 1px solid var(--line);
  background: var(--bg-1);
}
.mobile-nav a {
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 1.05rem; font-weight: 500;
  color: var(--text-muted);
}
.mobile-nav a:hover, .mobile-nav a.btn { color: var(--text); }
.mobile-nav .btn { color: var(--bg-0); margin-top: 8px; }

@media (max-width: 880px) {
  .primary-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }
}

/* =================== HERO =================== */

.hero {
  position: relative;
  padding: clamp(72px, 12vw, 160px) 0 clamp(48px, 8vw, 120px);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255,91,58,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(212,255,61,0.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 80%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-inner { position: relative; z-index: 2; }

.hero h1 {
  max-width: 18ch;
  margin-bottom: 32px;
  animation: fadeUp 1s var(--ease-out) both;
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  margin-bottom: 40px; max-width: 56ch;
  animation: fadeUp 1s var(--ease-out) 0.15s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}
.hero-eyebrow { animation: fadeUp 1s var(--ease-out) -0.1s both; margin-bottom: 28px; }

.hero-meta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  animation: fadeUp 1s var(--ease-out) 0.5s both;
}
.hero-meta-item .num {
  font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  font-variation-settings: "opsz" 144;
  color: var(--accent); display: block; margin-bottom: 6px;
}
.hero-meta-item .label {
  font-size: 0.84rem; color: var(--text-muted); letter-spacing: 0.02em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =================== SERVICES GRID =================== */

.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; margin-bottom: 64px; flex-wrap: wrap;
}
.section-head h2 { max-width: 16ch; }
.section-head p { color: var(--text-muted); max-width: 36ch; margin: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-1);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.3s var(--ease);
  position: relative;
  min-height: 320px;
}
.service-card:hover { background: var(--bg-2); }
.service-card .num {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--text-dim); letter-spacing: 0.1em;
}
.service-card h3 {
  margin-top: auto;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}
.service-card .arrow {
  position: absolute; top: 36px; right: 36px;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.1rem;
  transition: 0.25s var(--ease);
}
.service-card:hover .arrow {
  background: var(--accent); color: var(--bg-0); border-color: var(--accent);
  transform: rotate(-45deg);
}

/* =================== APPROACH STEPS =================== */

.approach { background: var(--bg-1); position: relative; }
.approach-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step {
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.step .num {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 1;
  color: var(--bg-3);
  font-variation-settings: "opsz" 144;
  position: absolute; top: 20px; right: 24px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* =================== TESTIMONIALS =================== */

.testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial-quote {
  font-family: var(--font-display); font-size: 1.3rem;
  line-height: 1.4; color: var(--text);
  font-variation-settings: "opsz" 100;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-author img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
}
.testimonial-author .name { font-weight: 600; font-size: 0.95rem; }
.testimonial-author .role { font-size: 0.85rem; color: var(--text-muted); }

/* =================== CTA STRIP =================== */

.cta-strip {
  background: var(--accent);
  color: var(--bg-0);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip h2 {
  color: var(--bg-0); max-width: 16ch;
  margin-bottom: 24px;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.cta-strip p { font-size: 1.1rem; max-width: 50ch; margin-bottom: 32px; opacity: 0.85; }
.cta-strip .btn-dark { background: var(--bg-0); color: var(--text); }
.cta-strip .btn-dark:hover { background: var(--bg-2); }

/* =================== SERVICES PAGE =================== */

.services-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.services-list-item {
  display: grid;
  grid-template-columns: 80px 1fr 240px 120px;
  gap: 32px; align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: 0.3s var(--ease);
}
.services-list-item:hover { background: var(--bg-1); padding-left: 16px; padding-right: 16px; border-radius: 4px; }
.services-list-item .idx {
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-dim);
}
.services-list-item h3 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}
.services-list-item p {
  font-size: 0.95rem; color: var(--text-muted); margin: 6px 0 0;
}
.services-list-item .from {
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-dim);
}
.services-list-item .from strong {
  font-family: var(--font-display); color: var(--accent); font-size: 1.4rem; font-weight: 500;
  display: block; margin-top: 2px;
}

@media (max-width: 880px) {
  .services-list-item { grid-template-columns: 1fr; gap: 8px; }
  .services-list-item .idx, .services-list-item .from { display: none; }
}

/* =================== SERVICE DETAIL =================== */

.service-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
  padding: 80px 0 64px;
}
.service-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  background: var(--bg-2);
}
.service-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,14,20,0.6));
}
.service-hero h1 { margin-bottom: 24px; }
.service-tagline {
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem;
  color: var(--accent); font-variation-settings: "opsz" 100;
  margin-bottom: 20px;
}

.service-body {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 80px; padding: 64px 0;
}
.service-body p { font-size: 1.05rem; line-height: 1.7; }
.service-body .features {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky; top: 100px;
}
.service-body .features h4 { color: var(--text); margin-bottom: 20px; font-size: 0.85rem; }
.service-body .features li {
  padding: 12px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.service-body .features li:last-child { border: 0; }
.service-body .features li::before {
  content: '✓'; color: var(--accent); font-weight: 700;
}

@media (max-width: 880px) {
  .service-hero, .service-body { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .service-hero-img { aspect-ratio: 4/3; }
  .service-body .features { position: static; }
}

/* =================== PACKAGES =================== */

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.package {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: 0.3s var(--ease);
  position: relative;
}
.package.featured {
  background: var(--bg-2);
  border-color: var(--accent);
}
.package.featured::before {
  content: 'Most popular';
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--accent); color: var(--bg-0);
  font-size: 0.75rem; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.package:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.package-name {
  font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
}
.package-price {
  font-family: var(--font-display); font-size: 3.2rem; line-height: 1;
  color: var(--text);
  font-variation-settings: "opsz" 144;
}
.package-price small {
  font-size: 1rem; color: var(--text-muted); margin-left: 4px;
  font-family: var(--font-body); font-weight: 400;
}
.package-desc { color: var(--text-muted); font-size: 0.95rem; }
.package ul { display: flex; flex-direction: column; gap: 10px; margin: 8px 0 16px; }
.package li {
  font-size: 0.92rem; color: var(--text);
  padding-left: 24px; position: relative;
}
.package li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 14px; height: 1px; background: var(--accent);
}
.package .btn { width: 100%; margin-top: auto; }

/* =================== FORMS =================== */

.form-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block; font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted); margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-0);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none; border-color: var(--accent);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row .help { font-size: 0.8rem; color: var(--text-dim); margin-top: 6px; }

.alert {
  padding: 14px 18px; border-radius: var(--radius-sm);
  margin-bottom: 20px; font-size: 0.95rem;
}
.alert-success { background: rgba(91,214,139,0.1); border: 1px solid var(--success); color: var(--success); }
.alert-error   { background: rgba(255,77,79,0.1);  border: 1px solid var(--danger);  color: var(--danger);  }
.alert-info    { background: rgba(255,91,58,0.08); border: 1px solid var(--accent);  color: var(--accent); }

/* =================== CHECKOUT PAGE =================== */

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .checkout-grid { grid-template-columns: 1fr; } }

.summary-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky; top: 100px;
}
.summary-card h3 { margin-bottom: 24px; font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.95rem; }
.summary-row.total {
  border-top: 1px solid var(--line);
  padding-top: 18px; margin-top: 8px;
  font-size: 1.3rem; font-weight: 600; color: var(--text);
  font-family: var(--font-display);
}
.trust-list { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.trust-list li {
  font-size: 0.85rem; color: var(--text-muted);
  padding: 6px 0 6px 22px; position: relative;
}
.trust-list li::before { content: '🔒'; position: absolute; left: 0; }

/* =================== SUCCESS PAGE =================== */

.success-card {
  text-align: center;
  max-width: 580px; margin: 0 auto;
  padding: 60px 40px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(91,214,139,0.12);
  display: grid; place-items: center;
  font-size: 2rem; color: var(--success);
}
.success-card h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.order-num {
  font-family: var(--font-mono); font-size: 0.9rem;
  background: var(--bg-0); padding: 8px 14px; border-radius: var(--radius-sm);
  display: inline-block; margin: 16px 0; color: var(--accent);
  border: 1px solid var(--line);
}

/* =================== LEGAL / CONTENT PAGES =================== */

.content-page {
  padding: 64px 0 96px;
}
.content-page .container { max-width: 820px; }
.content-page h1 { margin-bottom: 16px; }
.content-page .updated {
  color: var(--text-dim); font-family: var(--font-mono);
  font-size: 0.85rem; margin-bottom: 48px;
}
.content-page h2 {
  font-size: 1.6rem; margin-top: 48px; margin-bottom: 12px;
  font-family: var(--font-display);
}
.content-page h3 { font-size: 1.2rem; margin-top: 24px; margin-bottom: 8px; font-family: var(--font-body); }
.content-page p, .content-page li { color: var(--text-muted); line-height: 1.7; }
.content-page p strong, .content-page li strong { color: var(--text); }
.content-page ul { margin: 12px 0 16px 18px; list-style: disc; }
.content-page li { margin-bottom: 8px; }
.content-page a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* =================== ABOUT PAGE =================== */

.about-hero {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  padding: 80px 0;
  align-items: center;
}
.about-hero img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5; object-fit: cover;
  width: 100%;
}
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.value-card { background: var(--bg-1); padding: 36px; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.value-card p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }
.value-card .num {
  font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--accent); letter-spacing: 0.16em;
  margin-bottom: 24px; display: block;
}

@media (max-width: 880px) { .about-hero { grid-template-columns: 1fr; } }

/* =================== CONTACT PAGE =================== */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 1.1rem; margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; }
.contact-info p { color: var(--text-muted); }
.contact-info a { color: var(--accent); }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* =================== FOOTER =================== */

.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.logo-footer { margin-bottom: 16px; }
.footer-tag { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; }
.footer-contact a { color: var(--text); font-size: 0.92rem; line-height: 1.8; transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent); }
.footer-col h4 { font-size: 0.78rem; margin-bottom: 16px; color: var(--text); }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; flex-wrap: wrap; gap: 16px;
  font-size: 0.82rem; color: var(--text-dim);
}
.payments-note { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.stripe-badge {
  font-family: var(--font-display); font-style: italic; font-size: 1rem;
  color: var(--accent); font-weight: 500;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
}

/* =================== UTILITIES =================== */

.center-text { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.divider {
  height: 1px; background: var(--line); margin: 64px 0;
}
