/* ═══════════════════════════════════════════════════════════
   CMJ Installations — Modern Slate & Copper Design System
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --slate:      #1E293B;
  --slate-dark: #0F172A;
  --slate-mid:  #334155;
  --copper:     #B87333;
  --copper-lt:  #D4956A;
  --copper-dk:  #8B5A2B;
  --warm-white: #FAF9F7;
  --cream:      #F1EDE8;
  --sand:       #E8E2DA;
  --text:       #1A1A2E;
  --text-light: #64748B;
  --text-muted: #94A3B8;
  --white:      #FFFFFF;
  --border:     #E2E8F0;
  --success:    #059669;
  --error:      #DC2626;

  /* Sizing */
  --nav-h: 80px;
  --max-w: 1320px;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t-fast: .2s var(--ease);
  --t-med: .35s var(--ease);
  --t-slow: .6s var(--ease);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; font-weight: 600; }
a { text-decoration: none; color: inherit; transition: color var(--t-fast); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

/* ── Typography Utilities ───────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--copper);
}
.eyebrow::before {
  content: ''; width: 28px; height: 1.5px;
  background: var(--copper);
}
.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--slate-dark); margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 560px; line-height: 1.8;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; font-size: .82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: var(--radius-sm); border: none;
  cursor: pointer; transition: all var(--t-med);
  font-family: 'Outfit', sans-serif;
}
.btn svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--copper); color: var(--white);
  box-shadow: 0 4px 14px rgba(184,115,51,.25);
}
.btn-primary:hover {
  background: var(--copper-dk);
  box-shadow: 0 6px 20px rgba(184,115,51,.35);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--slate); color: var(--white);
  box-shadow: 0 4px 14px rgba(30,41,59,.2);
}
.btn-secondary:hover {
  background: var(--slate-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--slate);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--copper); color: var(--copper);
}
.btn-white {
  background: var(--white); color: var(--slate);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--slate);
}

/* ── Navigation ─────────────────────────────────────────── */
.topbar {
  background: var(--slate-dark); color: rgba(255,255,255,.8);
  font-size: .78rem; padding: 8px 0;
  letter-spacing: .3px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-left a { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.7); }
.topbar-left a:hover { color: var(--copper-lt); }
.topbar-left svg { width: 14px; height: 14px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right span { color: var(--copper-lt); font-weight: 600; }

@media (max-width: 768px) {
  .topbar { display: none; }
}

.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow var(--t-med);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--slate-dark);
}
.nav-brand .brand-icon {
  width: 42px; height: 42px; background: var(--copper);
  border-radius: var(--radius-sm); display: grid; place-items: center;
  color: white; font-size: 1.1rem; font-weight: 800;
  font-family: 'Outfit', sans-serif; letter-spacing: 1px;
}
.nav-brand small {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: .65rem; font-weight: 500; color: var(--text-muted);
  letter-spacing: 2px; text-transform: uppercase; margin-top: -2px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: .85rem; font-weight: 500; color: var(--text-light);
  position: relative; letter-spacing: .3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--copper);
  transition: width var(--t-med);
}
.nav-links a:hover, .nav-links a.active { color: var(--slate-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--copper); color: white !important;
  padding: 10px 24px; border-radius: var(--radius-sm);
  font-weight: 600 !important; font-size: .8rem !important;
  letter-spacing: 1px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--copper-dk) !important;
  transform: translateY(-1px);
}

/* Mobile menu */
.menu-toggle {
  display: none; background: none; border: none;
  width: 36px; height: 36px; position: relative;
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--slate); transition: all var(--t-fast);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 24px; z-index: 999;
  box-shadow: 0 20px 40px rgba(0,0,0,.1);
  transform: translateY(-10px); opacity: 0;
  transition: all var(--t-med);
}
.mobile-menu.open { transform: none; opacity: 1; }
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 1rem;
  color: var(--text); border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-menu a:last-child { border: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: block; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background: var(--slate-dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.4) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 680px;
  padding: 60px 0;
}
.hero-content .eyebrow { color: var(--copper-lt); margin-bottom: 24px; }
.hero-content .eyebrow::before { background: var(--copper-lt); }
.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--white); margin-bottom: 24px;
  line-height: 1.08;
}
.hero-title em {
  font-style: italic; color: var(--copper-lt);
}
.hero-text {
  font-size: 1.12rem; color: rgba(255,255,255,.7);
  max-width: 500px; line-height: 1.8; margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats bar */
.stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.1);
  z-index: 2;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w); margin: 0 auto;
}
.stat-item {
  padding: 28px 40px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--copper-lt);
  line-height: 1;
}
.stat-label {
  font-size: .75rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: 2px;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px; }
  .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .hero { min-height: 80vh; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--t-med);
}
.card:hover {
  border-color: var(--copper);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.card-img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform var(--t-slow);
}
.card:hover .card-img { transform: scale(1.03); }
.card-img-wrap { overflow: hidden; }
.card-body { padding: 28px; }
.card-tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--copper); margin-bottom: 10px;
}
.card-title {
  font-size: 1.4rem; margin-bottom: 10px; color: var(--slate-dark);
}
.card-text {
  font-size: .92rem; color: var(--text-light); line-height: 1.7;
}
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--copper);
  margin-top: 16px; letter-spacing: .5px; text-transform: uppercase;
}
.card-link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.card-link:hover svg { transform: translateX(4px); }

/* ── Service Grid ───────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Gallery Grid ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.6), transparent 50%);
  opacity: 0; transition: opacity var(--t-med);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  color: white; font-size: .85rem; font-weight: 500;
  z-index: 2; opacity: 0; transform: translateY(8px);
  transition: all var(--t-med);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: none; }

/* Gallery filter buttons */
.gallery-filters {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; font-size: .8rem; font-weight: 500;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--white); color: var(--text-light);
  cursor: pointer; transition: all var(--t-fast);
  font-family: 'Outfit', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--slate); color: var(--white); border-color: var(--slate);
}

/* ── Lightbox ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--t-med);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,.1); border: none;
  color: white; width: 48px; height: 48px;
  border-radius: 50%; font-size: 1.4rem;
  cursor: pointer; display: grid; place-items: center;
  transition: background var(--t-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none;
  color: white; width: 48px; height: 48px;
  border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; display: grid; place-items: center;
  transition: background var(--t-fast);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.2); }

/* ── About / Split sections ─────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse { direction: ltr; }
}
.split-img {
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
}
.split-img img {
  width: 100%; height: 480px; object-fit: cover;
}
.split-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--copper); color: white;
  padding: 12px 20px; border-radius: var(--radius-sm);
  font-size: .78rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Process / Timeline ─────────────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 60px;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}
.process-step { text-align: center; position: relative; }
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700; color: var(--sand);
  line-height: 1; margin-bottom: 16px;
}
.process-step h4 {
  font-size: 1.2rem; color: var(--slate-dark); margin-bottom: 8px;
}
.process-step p {
  font-size: .88rem; color: var(--text-light); line-height: 1.7;
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-section { background: var(--cream); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--border);
}
.testimonial-stars { color: var(--copper); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; line-height: 1.6;
  color: var(--slate-dark); margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { font-size: .85rem; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: .78rem; color: var(--text-muted); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 0;
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 24px 0; font-size: 1.05rem; font-weight: 600;
  color: var(--slate-dark); text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--copper); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream); display: grid; place-items: center;
  font-size: .9rem; color: var(--slate);
  transition: all var(--t-fast); flex-shrink: 0;
}
.faq-item.open .faq-icon {
  background: var(--copper); color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t-med), padding var(--t-med);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 24px; font-size: .92rem;
  color: var(--text-light); line-height: 1.8;
}

/* ── Contact / Forms ────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: .8rem; font-weight: 600;
  color: var(--slate-dark); margin-bottom: 8px;
  letter-spacing: .5px; text-transform: uppercase;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .95rem; font-family: 'Outfit', sans-serif;
  color: var(--text); background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184,115,51,.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── Partners / Logos ───────────────────────────────────── */
.partners-section { background: var(--cream); }
.partners-grid {
  display: flex; flex-wrap: wrap; gap: 40px;
  align-items: center; justify-content: center;
  opacity: .5;
}
.partners-grid a {
  display: flex; align-items: center;
  transition: all var(--t-fast);
}
.partners-grid a:hover { opacity: 1; transform: scale(1.05); }
.partners-grid img, .partners-grid a img {
  height: 40px; width: auto;
  filter: grayscale(1); transition: all var(--t-fast);
}
.partners-grid a:hover img {
  filter: none; opacity: 1;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--slate-dark);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,115,51,.15), transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  text-align: center; position: relative; z-index: 2;
  padding: 20px 0;
}
.cta-inner .section-title { color: var(--white); }
.cta-inner .section-subtitle {
  color: rgba(255,255,255,.6); margin: 0 auto 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--slate-dark); color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--white);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: .9rem; line-height: 1.8; margin-bottom: 24px;
  max-width: 320px;
}
.footer h4 {
  font-family: 'Outfit', sans-serif; font-size: .78rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-size: .88rem; color: rgba(255,255,255,.5);
  transition: color var(--t-fast);
}
.footer ul a:hover { color: var(--copper-lt); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; font-size: .8rem; color: rgba(255,255,255,.35);
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.06); display: grid; place-items: center;
  color: rgba(255,255,255,.5); font-size: .9rem;
  transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--copper); color: white; }

/* ── Animations ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Page Header ────────────────────────────────────────── */
.page-header {
  background: var(--slate-dark);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(184,115,51,.1), transparent 60%);
}
.page-header .eyebrow { color: var(--copper-lt); margin-bottom: 16px; }
.page-header .eyebrow::before { background: var(--copper-lt); }
.page-header h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white); margin-bottom: 16px;
}
.page-header p {
  font-size: 1.05rem; color: rgba(255,255,255,.6);
  max-width: 560px; margin: 0 auto; line-height: 1.8;
}

/* ── Payment ────────────────────────────────────────────── */
.payment-options {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.payment-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  text-align: center; transition: all var(--t-med);
}
.payment-card:hover {
  border-color: var(--copper);
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.payment-card-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--cream); display: grid; place-items: center;
  margin: 0 auto 24px; color: var(--copper); font-size: 1.5rem;
}
.payment-card h3 {
  font-size: 1.4rem; margin-bottom: 10px; color: var(--slate-dark);
}
.payment-card p {
  font-size: .9rem; color: var(--text-light); line-height: 1.7;
  margin-bottom: 24px;
}
.payment-amount {
  width: 100%; padding: 14px 18px; margin-bottom: 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1.2rem; font-family: 'Outfit', sans-serif;
  text-align: center; outline: none;
  transition: border-color var(--t-fast);
}
.payment-amount:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184,115,51,.12);
}

/* ── Floating CTA ───────────────────────────────────────── */
.floating-cta {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  background: var(--copper); color: white;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; border: none;
  box-shadow: 0 4px 20px rgba(184,115,51,.4);
  cursor: pointer; transition: all var(--t-fast);
  font-size: 1.2rem;
}
.floating-cta:hover {
  background: var(--copper-dk);
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .floating-cta { bottom: 16px; left: 16px; }
}

/* ── Misc ───────────────────────────────────────────────── */
.text-copper { color: var(--copper); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-60 { margin-bottom: 60px; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
